From bb8bb8ad58179f4a624c8f13f814c6cdd87328cb Mon Sep 17 00:00:00 2001 From: Martin Jambon Date: Sat, 9 Oct 2021 02:45:27 -0700 Subject: [PATCH] Regenerate files --- src/grammar.json | 13 +- src/node-types.json | 4 + src/parser.c | 210279 +++++++++++++++++++++-------------------- 3 files changed, 105280 insertions(+), 105016 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index 7e5c0d6..8da6fc6 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -265,8 +265,17 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "for" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "select" + } + ] }, { "type": "FIELD", diff --git a/src/node-types.json b/src/node-types.json index dea1f49..1a967a5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1611,6 +1611,10 @@ "type": "regex", "named": true }, + { + "type": "select", + "named": false + }, { "type": "special_variable_name", "named": true diff --git a/src/parser.c b/src/parser.c index a1bae66..2c3db3e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 3478 +#define STATE_COUNT 3481 #define LARGE_STATE_COUNT 158 -#define SYMBOL_COUNT 162 +#define SYMBOL_COUNT 163 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 101 +#define TOKEN_COUNT 102 #define EXTERNAL_TOKEN_COUNT 15 #define FIELD_COUNT 19 #define MAX_ALIAS_SEQUENCE_LENGTH 10 @@ -28,164 +28,165 @@ enum { sym_word = 1, anon_sym_LF = 2, anon_sym_for = 3, - anon_sym_in = 4, - anon_sym_LPAREN_LPAREN = 5, - anon_sym_RPAREN_RPAREN = 6, - anon_sym_SEMI = 7, - anon_sym_while = 8, - anon_sym_do = 9, - anon_sym_done = 10, - anon_sym_if = 11, - anon_sym_then = 12, - anon_sym_fi = 13, - anon_sym_elif = 14, - anon_sym_else = 15, - anon_sym_case = 16, - anon_sym_esac = 17, - anon_sym_PIPE = 18, - anon_sym_RPAREN = 19, - anon_sym_SEMI_SEMI = 20, - anon_sym_SEMI_AMP = 21, - anon_sym_SEMI_SEMI_AMP = 22, - anon_sym_function = 23, - anon_sym_LPAREN = 24, - anon_sym_LBRACE = 25, - anon_sym_RBRACE = 26, - anon_sym_PIPE_AMP = 27, - anon_sym_AMP_AMP = 28, - anon_sym_PIPE_PIPE = 29, - anon_sym_BANG = 30, - anon_sym_LBRACK = 31, - anon_sym_RBRACK = 32, - anon_sym_LBRACK_LBRACK = 33, - anon_sym_RBRACK_RBRACK = 34, - anon_sym_declare = 35, - anon_sym_typeset = 36, - anon_sym_export = 37, - anon_sym_readonly = 38, - anon_sym_local = 39, - anon_sym_unset = 40, - anon_sym_unsetenv = 41, - anon_sym_EQ_TILDE = 42, - anon_sym_EQ_EQ = 43, - anon_sym_EQ = 44, - anon_sym_PLUS_EQ = 45, - anon_sym_LT = 46, - anon_sym_GT = 47, - anon_sym_GT_GT = 48, - anon_sym_AMP_GT = 49, - anon_sym_AMP_GT_GT = 50, - anon_sym_LT_AMP = 51, - anon_sym_GT_AMP = 52, - anon_sym_GT_PIPE = 53, - anon_sym_LT_LT = 54, - anon_sym_LT_LT_DASH = 55, - anon_sym_LT_LT_LT = 56, - anon_sym_BANG_EQ = 57, - anon_sym_PLUS = 58, - anon_sym_DASH = 59, - anon_sym_DASH_EQ = 60, - anon_sym_LT_EQ = 61, - anon_sym_GT_EQ = 62, - anon_sym_QMARK = 63, - anon_sym_COLON = 64, - anon_sym_PLUS_PLUS = 65, - anon_sym_DASH_DASH = 66, - anon_sym_DOLLAR = 67, - sym__special_character = 68, - anon_sym_DQUOTE = 69, - sym__string_content = 70, - sym_raw_string = 71, - sym_ansii_c_string = 72, - anon_sym_POUND = 73, - anon_sym_DOLLAR_LBRACE = 74, - anon_sym_SLASH = 75, - anon_sym_COLON_QMARK = 76, - anon_sym_COLON_DASH = 77, - anon_sym_PERCENT = 78, - anon_sym_DOLLAR_LPAREN = 79, - anon_sym_BQUOTE = 80, - anon_sym_LT_LPAREN = 81, - anon_sym_GT_LPAREN = 82, - sym_comment = 83, - aux_sym__simple_variable_name_token1 = 84, - anon_sym_STAR = 85, - anon_sym_AT = 86, - anon_sym_0 = 87, - anon_sym__ = 88, - sym_test_operator = 89, - anon_sym_AMP = 90, - sym_heredoc_start = 91, - sym__simple_heredoc_body = 92, - sym__heredoc_body_beginning = 93, - sym__heredoc_body_middle = 94, - sym__heredoc_body_end = 95, - sym_file_descriptor = 96, - sym__empty_value = 97, - sym__concat = 98, - sym_variable_name = 99, - sym_regex = 100, - sym_program = 101, - sym__statements = 102, - aux_sym__statements2 = 103, - sym__terminated_statement = 104, - sym_redirected_statement = 105, - sym_for_statement = 106, - sym_c_style_for_statement = 107, - sym_while_statement = 108, - sym_do_group = 109, - sym_if_statement = 110, - sym_elif_clause = 111, - sym_else_clause = 112, - sym_case_statement = 113, - sym_case_item = 114, - sym_last_case_item = 115, - sym_function_definition = 116, - sym_compound_statement = 117, - sym_subshell = 118, - sym_pipeline = 119, - sym_list = 120, - sym_negated_command = 121, - sym_test_command = 122, - sym_declaration_command = 123, - sym_unset_command = 124, - sym_command = 125, - sym_command_name = 126, - sym_variable_assignment = 127, - sym_subscript = 128, - sym_file_redirect = 129, - sym_heredoc_redirect = 130, - sym_heredoc_body = 131, - sym_herestring_redirect = 132, - sym__expression = 133, - sym_binary_expression = 134, - sym_ternary_expression = 135, - sym_unary_expression = 136, - sym_postfix_expression = 137, - sym_parenthesized_expression = 138, - sym_concatenation = 139, - sym_string = 140, - sym_array = 141, - sym_simple_expansion = 142, - sym_string_expansion = 143, - sym_expansion = 144, - sym_command_substitution = 145, - sym_process_substitution = 146, - aux_sym__statements_repeat1 = 147, - aux_sym_redirected_statement_repeat1 = 148, - aux_sym_for_statement_repeat1 = 149, - aux_sym_if_statement_repeat1 = 150, - aux_sym_case_statement_repeat1 = 151, - aux_sym_case_item_repeat1 = 152, - aux_sym_declaration_command_repeat1 = 153, - aux_sym_unset_command_repeat1 = 154, - aux_sym_command_repeat1 = 155, - aux_sym_command_repeat2 = 156, - aux_sym_heredoc_body_repeat1 = 157, - aux_sym__literal_repeat1 = 158, - aux_sym_concatenation_repeat1 = 159, - aux_sym_string_repeat1 = 160, - aux_sym_expansion_repeat1 = 161, + anon_sym_select = 4, + anon_sym_in = 5, + anon_sym_LPAREN_LPAREN = 6, + anon_sym_RPAREN_RPAREN = 7, + anon_sym_SEMI = 8, + anon_sym_while = 9, + anon_sym_do = 10, + anon_sym_done = 11, + anon_sym_if = 12, + anon_sym_then = 13, + anon_sym_fi = 14, + anon_sym_elif = 15, + anon_sym_else = 16, + anon_sym_case = 17, + anon_sym_esac = 18, + anon_sym_PIPE = 19, + anon_sym_RPAREN = 20, + anon_sym_SEMI_SEMI = 21, + anon_sym_SEMI_AMP = 22, + anon_sym_SEMI_SEMI_AMP = 23, + anon_sym_function = 24, + anon_sym_LPAREN = 25, + anon_sym_LBRACE = 26, + anon_sym_RBRACE = 27, + anon_sym_PIPE_AMP = 28, + anon_sym_AMP_AMP = 29, + anon_sym_PIPE_PIPE = 30, + anon_sym_BANG = 31, + anon_sym_LBRACK = 32, + anon_sym_RBRACK = 33, + anon_sym_LBRACK_LBRACK = 34, + anon_sym_RBRACK_RBRACK = 35, + anon_sym_declare = 36, + anon_sym_typeset = 37, + anon_sym_export = 38, + anon_sym_readonly = 39, + anon_sym_local = 40, + anon_sym_unset = 41, + anon_sym_unsetenv = 42, + anon_sym_EQ_TILDE = 43, + anon_sym_EQ_EQ = 44, + anon_sym_EQ = 45, + anon_sym_PLUS_EQ = 46, + anon_sym_LT = 47, + anon_sym_GT = 48, + anon_sym_GT_GT = 49, + anon_sym_AMP_GT = 50, + anon_sym_AMP_GT_GT = 51, + anon_sym_LT_AMP = 52, + anon_sym_GT_AMP = 53, + anon_sym_GT_PIPE = 54, + anon_sym_LT_LT = 55, + anon_sym_LT_LT_DASH = 56, + anon_sym_LT_LT_LT = 57, + anon_sym_BANG_EQ = 58, + anon_sym_PLUS = 59, + anon_sym_DASH = 60, + anon_sym_DASH_EQ = 61, + anon_sym_LT_EQ = 62, + anon_sym_GT_EQ = 63, + anon_sym_QMARK = 64, + anon_sym_COLON = 65, + anon_sym_PLUS_PLUS = 66, + anon_sym_DASH_DASH = 67, + anon_sym_DOLLAR = 68, + sym__special_character = 69, + anon_sym_DQUOTE = 70, + sym__string_content = 71, + sym_raw_string = 72, + sym_ansii_c_string = 73, + anon_sym_POUND = 74, + anon_sym_DOLLAR_LBRACE = 75, + anon_sym_SLASH = 76, + anon_sym_COLON_QMARK = 77, + anon_sym_COLON_DASH = 78, + anon_sym_PERCENT = 79, + anon_sym_DOLLAR_LPAREN = 80, + anon_sym_BQUOTE = 81, + anon_sym_LT_LPAREN = 82, + anon_sym_GT_LPAREN = 83, + sym_comment = 84, + aux_sym__simple_variable_name_token1 = 85, + anon_sym_STAR = 86, + anon_sym_AT = 87, + anon_sym_0 = 88, + anon_sym__ = 89, + sym_test_operator = 90, + anon_sym_AMP = 91, + sym_heredoc_start = 92, + sym__simple_heredoc_body = 93, + sym__heredoc_body_beginning = 94, + sym__heredoc_body_middle = 95, + sym__heredoc_body_end = 96, + sym_file_descriptor = 97, + sym__empty_value = 98, + sym__concat = 99, + sym_variable_name = 100, + sym_regex = 101, + sym_program = 102, + sym__statements = 103, + aux_sym__statements2 = 104, + sym__terminated_statement = 105, + sym_redirected_statement = 106, + sym_for_statement = 107, + sym_c_style_for_statement = 108, + sym_while_statement = 109, + sym_do_group = 110, + sym_if_statement = 111, + sym_elif_clause = 112, + sym_else_clause = 113, + sym_case_statement = 114, + sym_case_item = 115, + sym_last_case_item = 116, + sym_function_definition = 117, + sym_compound_statement = 118, + sym_subshell = 119, + sym_pipeline = 120, + sym_list = 121, + sym_negated_command = 122, + sym_test_command = 123, + sym_declaration_command = 124, + sym_unset_command = 125, + sym_command = 126, + sym_command_name = 127, + sym_variable_assignment = 128, + sym_subscript = 129, + sym_file_redirect = 130, + sym_heredoc_redirect = 131, + sym_heredoc_body = 132, + sym_herestring_redirect = 133, + sym__expression = 134, + sym_binary_expression = 135, + sym_ternary_expression = 136, + sym_unary_expression = 137, + sym_postfix_expression = 138, + sym_parenthesized_expression = 139, + sym_concatenation = 140, + sym_string = 141, + sym_array = 142, + sym_simple_expansion = 143, + sym_string_expansion = 144, + sym_expansion = 145, + sym_command_substitution = 146, + sym_process_substitution = 147, + aux_sym__statements_repeat1 = 148, + aux_sym_redirected_statement_repeat1 = 149, + aux_sym_for_statement_repeat1 = 150, + aux_sym_if_statement_repeat1 = 151, + aux_sym_case_statement_repeat1 = 152, + aux_sym_case_item_repeat1 = 153, + aux_sym_declaration_command_repeat1 = 154, + aux_sym_unset_command_repeat1 = 155, + aux_sym_command_repeat1 = 156, + aux_sym_command_repeat2 = 157, + aux_sym_heredoc_body_repeat1 = 158, + aux_sym__literal_repeat1 = 159, + aux_sym_concatenation_repeat1 = 160, + aux_sym_string_repeat1 = 161, + aux_sym_expansion_repeat1 = 162, }; static const char * const ts_symbol_names[] = { @@ -193,6 +194,7 @@ static const char * const ts_symbol_names[] = { [sym_word] = "word", [anon_sym_LF] = "\n", [anon_sym_for] = "for", + [anon_sym_select] = "select", [anon_sym_in] = "in", [anon_sym_LPAREN_LPAREN] = "((", [anon_sym_RPAREN_RPAREN] = "))", @@ -358,6 +360,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_word] = sym_word, [anon_sym_LF] = anon_sym_LF, [anon_sym_for] = anon_sym_for, + [anon_sym_select] = anon_sym_select, [anon_sym_in] = anon_sym_in, [anon_sym_LPAREN_LPAREN] = anon_sym_LPAREN_LPAREN, [anon_sym_RPAREN_RPAREN] = anon_sym_RPAREN_RPAREN, @@ -535,6 +538,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_select] = { + .visible = true, + .named = false, + }, [anon_sym_in] = { .visible = true, .named = false, @@ -2032,10 +2039,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(84) END_STATE(); case 41: - if (lookahead == '\n') SKIP(94) + if (lookahead == '\n') SKIP(93) END_STATE(); case 42: - if (lookahead == '\n') SKIP(93) + if (lookahead == '\n') SKIP(94) END_STATE(); case 43: if (lookahead == '\n') SKIP(77) @@ -3037,7 +3044,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == ']' || lookahead == '{') ADVANCE(323); - if (lookahead == '\\') ADVANCE(158); + if (lookahead == '\\') ADVANCE(157); if (lookahead == '`') ADVANCE(345); if (lookahead == '}') ADVANCE(258); if (lookahead == '\t' || @@ -3063,7 +3070,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[' || lookahead == ']' || lookahead == '{') ADVANCE(323); - if (lookahead == '\\') ADVANCE(157); + if (lookahead == '\\') ADVANCE(158); if (lookahead == '`') ADVANCE(345); if (lookahead == '}') ADVANCE(258); if (lookahead == '\t' || @@ -3581,18 +3588,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 157: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(94) + lookahead == ' ') SKIP(93) if (lookahead == 11 || - lookahead == '\f') ADVANCE(397); + lookahead == '\f') ADVANCE(396); if (lookahead == '\r') SKIP(41) if (lookahead != 0) ADVANCE(414); END_STATE(); case 158: if (lookahead == '\t' || lookahead == '\n' || - lookahead == ' ') SKIP(93) + lookahead == ' ') SKIP(94) if (lookahead == 11 || - lookahead == '\f') ADVANCE(396); + lookahead == '\f') ADVANCE(397); if (lookahead == '\r') SKIP(42) if (lookahead != 0) ADVANCE(414); END_STATE(); @@ -5291,7 +5298,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '/') ADVANCE(340); if (lookahead == ':') ADVANCE(315); if (lookahead == '=') ADVANCE(278); - if (lookahead == '\\') ADVANCE(158); + if (lookahead == '\\') ADVANCE(157); if (!sym_word_character_set_10(lookahead)) ADVANCE(414); END_STATE(); case 397: @@ -5300,7 +5307,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(307); if (lookahead == ':') ADVANCE(315); if (lookahead == '=') ADVANCE(278); - if (lookahead == '\\') ADVANCE(157); + if (lookahead == '\\') ADVANCE(158); if (!sym_word_character_set_10(lookahead)) ADVANCE(414); END_STATE(); case 398: @@ -5469,9 +5476,10 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(6); if (lookahead == 'l') ADVANCE(7); if (lookahead == 'r') ADVANCE(8); - if (lookahead == 't') ADVANCE(9); - if (lookahead == 'u') ADVANCE(10); - if (lookahead == 'w') ADVANCE(11); + if (lookahead == 's') ADVANCE(9); + if (lookahead == 't') ADVANCE(10); + if (lookahead == 'u') ADVANCE(11); + if (lookahead == 'w') ADVANCE(12); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5480,207 +5488,225 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { case 1: if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(0) - if (lookahead == '\r') SKIP(12) + if (lookahead == '\r') SKIP(13) END_STATE(); case 2: - if (lookahead == 'a') ADVANCE(13); + if (lookahead == 'a') ADVANCE(14); END_STATE(); case 3: - if (lookahead == 'e') ADVANCE(14); - if (lookahead == 'o') ADVANCE(15); + if (lookahead == 'e') ADVANCE(15); + if (lookahead == 'o') ADVANCE(16); END_STATE(); case 4: - if (lookahead == 'x') ADVANCE(16); + if (lookahead == 'x') ADVANCE(17); END_STATE(); case 5: - if (lookahead == 'o') ADVANCE(17); - if (lookahead == 'u') ADVANCE(18); + if (lookahead == 'o') ADVANCE(18); + if (lookahead == 'u') ADVANCE(19); END_STATE(); case 6: - if (lookahead == 'f') ADVANCE(19); + if (lookahead == 'f') ADVANCE(20); END_STATE(); case 7: - if (lookahead == 'o') ADVANCE(20); + if (lookahead == 'o') ADVANCE(21); END_STATE(); case 8: - if (lookahead == 'e') ADVANCE(21); + if (lookahead == 'e') ADVANCE(22); END_STATE(); case 9: - if (lookahead == 'y') ADVANCE(22); + if (lookahead == 'e') ADVANCE(23); END_STATE(); case 10: - if (lookahead == 'n') ADVANCE(23); + if (lookahead == 'y') ADVANCE(24); END_STATE(); case 11: - if (lookahead == 'h') ADVANCE(24); + if (lookahead == 'n') ADVANCE(25); END_STATE(); case 12: - if (lookahead == '\n') SKIP(0) + if (lookahead == 'h') ADVANCE(26); END_STATE(); case 13: - if (lookahead == 's') ADVANCE(25); + if (lookahead == '\n') SKIP(0) END_STATE(); case 14: - if (lookahead == 'c') ADVANCE(26); + if (lookahead == 's') ADVANCE(27); END_STATE(); case 15: - if (lookahead == 'n') ADVANCE(27); + if (lookahead == 'c') ADVANCE(28); END_STATE(); case 16: - if (lookahead == 'p') ADVANCE(28); + if (lookahead == 'n') ADVANCE(29); END_STATE(); case 17: - if (lookahead == 'r') ADVANCE(29); + if (lookahead == 'p') ADVANCE(30); END_STATE(); case 18: - if (lookahead == 'n') ADVANCE(30); + if (lookahead == 'r') ADVANCE(31); END_STATE(); case 19: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'n') ADVANCE(32); END_STATE(); case 20: - if (lookahead == 'c') ADVANCE(31); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 21: - if (lookahead == 'a') ADVANCE(32); + if (lookahead == 'c') ADVANCE(33); END_STATE(); case 22: - if (lookahead == 'p') ADVANCE(33); + if (lookahead == 'a') ADVANCE(34); END_STATE(); case 23: - if (lookahead == 's') ADVANCE(34); + if (lookahead == 'l') ADVANCE(35); END_STATE(); case 24: - if (lookahead == 'i') ADVANCE(35); + if (lookahead == 'p') ADVANCE(36); END_STATE(); case 25: - if (lookahead == 'e') ADVANCE(36); + if (lookahead == 's') ADVANCE(37); END_STATE(); case 26: - if (lookahead == 'l') ADVANCE(37); + if (lookahead == 'i') ADVANCE(38); END_STATE(); case 27: - if (lookahead == 'e') ADVANCE(38); + if (lookahead == 'e') ADVANCE(39); END_STATE(); case 28: - if (lookahead == 'o') ADVANCE(39); + if (lookahead == 'l') ADVANCE(40); END_STATE(); case 29: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 'e') ADVANCE(41); END_STATE(); case 30: - if (lookahead == 'c') ADVANCE(40); + if (lookahead == 'o') ADVANCE(42); END_STATE(); case 31: - if (lookahead == 'a') ADVANCE(41); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 32: - if (lookahead == 'd') ADVANCE(42); + if (lookahead == 'c') ADVANCE(43); END_STATE(); case 33: - if (lookahead == 'e') ADVANCE(43); + if (lookahead == 'a') ADVANCE(44); END_STATE(); case 34: - if (lookahead == 'e') ADVANCE(44); + if (lookahead == 'd') ADVANCE(45); END_STATE(); case 35: - if (lookahead == 'l') ADVANCE(45); + if (lookahead == 'e') ADVANCE(46); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'e') ADVANCE(47); END_STATE(); case 37: - if (lookahead == 'a') ADVANCE(46); + if (lookahead == 'e') ADVANCE(48); END_STATE(); case 38: - ACCEPT_TOKEN(anon_sym_done); - END_STATE(); - case 39: - if (lookahead == 'r') ADVANCE(47); - END_STATE(); - case 40: - if (lookahead == 't') ADVANCE(48); - END_STATE(); - case 41: if (lookahead == 'l') ADVANCE(49); END_STATE(); + case 39: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 40: + if (lookahead == 'a') ADVANCE(50); + END_STATE(); + case 41: + ACCEPT_TOKEN(anon_sym_done); + END_STATE(); case 42: - if (lookahead == 'o') ADVANCE(50); + if (lookahead == 'r') ADVANCE(51); END_STATE(); case 43: - if (lookahead == 's') ADVANCE(51); - END_STATE(); - case 44: if (lookahead == 't') ADVANCE(52); END_STATE(); + case 44: + if (lookahead == 'l') ADVANCE(53); + END_STATE(); case 45: - if (lookahead == 'e') ADVANCE(53); + if (lookahead == 'o') ADVANCE(54); END_STATE(); case 46: - if (lookahead == 'r') ADVANCE(54); + if (lookahead == 'c') ADVANCE(55); END_STATE(); case 47: - if (lookahead == 't') ADVANCE(55); + if (lookahead == 's') ADVANCE(56); END_STATE(); case 48: - if (lookahead == 'i') ADVANCE(56); + if (lookahead == 't') ADVANCE(57); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_local); - END_STATE(); - case 50: - if (lookahead == 'n') ADVANCE(57); - END_STATE(); - case 51: if (lookahead == 'e') ADVANCE(58); END_STATE(); + case 50: + if (lookahead == 'r') ADVANCE(59); + END_STATE(); + case 51: + if (lookahead == 't') ADVANCE(60); + END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_unset); - if (lookahead == 'e') ADVANCE(59); + if (lookahead == 'i') ADVANCE(61); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_while); + ACCEPT_TOKEN(anon_sym_local); END_STATE(); case 54: - if (lookahead == 'e') ADVANCE(60); + if (lookahead == 'n') ADVANCE(62); END_STATE(); case 55: - ACCEPT_TOKEN(anon_sym_export); - END_STATE(); - case 56: - if (lookahead == 'o') ADVANCE(61); - END_STATE(); - case 57: - if (lookahead == 'l') ADVANCE(62); - END_STATE(); - case 58: if (lookahead == 't') ADVANCE(63); END_STATE(); + case 56: + if (lookahead == 'e') ADVANCE(64); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_unset); + if (lookahead == 'e') ADVANCE(65); + END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); case 59: - if (lookahead == 'n') ADVANCE(64); + if (lookahead == 'e') ADVANCE(66); END_STATE(); case 60: - ACCEPT_TOKEN(anon_sym_declare); + ACCEPT_TOKEN(anon_sym_export); END_STATE(); case 61: - if (lookahead == 'n') ADVANCE(65); + if (lookahead == 'o') ADVANCE(67); END_STATE(); case 62: - if (lookahead == 'y') ADVANCE(66); + if (lookahead == 'l') ADVANCE(68); END_STATE(); case 63: - ACCEPT_TOKEN(anon_sym_typeset); + ACCEPT_TOKEN(anon_sym_select); END_STATE(); case 64: - if (lookahead == 'v') ADVANCE(67); + if (lookahead == 't') ADVANCE(69); END_STATE(); case 65: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'n') ADVANCE(70); END_STATE(); case 66: - ACCEPT_TOKEN(anon_sym_readonly); + ACCEPT_TOKEN(anon_sym_declare); END_STATE(); case 67: + if (lookahead == 'n') ADVANCE(71); + END_STATE(); + case 68: + if (lookahead == 'y') ADVANCE(72); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_typeset); + END_STATE(); + case 70: + if (lookahead == 'v') ADVANCE(73); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_function); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_readonly); + END_STATE(); + case 73: ACCEPT_TOKEN(anon_sym_unsetenv); END_STATE(); default: @@ -5713,18 +5739,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 198, .external_lex_state = 2}, [22] = {.lex_state = 198, .external_lex_state = 2}, [23] = {.lex_state = 198, .external_lex_state = 2}, - [24] = {.lex_state = 82, .external_lex_state = 2}, + [24] = {.lex_state = 198, .external_lex_state = 2}, [25] = {.lex_state = 198, .external_lex_state = 2}, [26] = {.lex_state = 198, .external_lex_state = 2}, [27] = {.lex_state = 198, .external_lex_state = 2}, [28] = {.lex_state = 198, .external_lex_state = 2}, [29] = {.lex_state = 198, .external_lex_state = 2}, - [30] = {.lex_state = 82, .external_lex_state = 2}, + [30] = {.lex_state = 198, .external_lex_state = 2}, [31] = {.lex_state = 82, .external_lex_state = 2}, [32] = {.lex_state = 198, .external_lex_state = 2}, [33] = {.lex_state = 198, .external_lex_state = 2}, [34] = {.lex_state = 198, .external_lex_state = 2}, - [35] = {.lex_state = 198, .external_lex_state = 2}, + [35] = {.lex_state = 82, .external_lex_state = 2}, [36] = {.lex_state = 198, .external_lex_state = 2}, [37] = {.lex_state = 198, .external_lex_state = 2}, [38] = {.lex_state = 198, .external_lex_state = 2}, @@ -5747,8 +5773,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [55] = {.lex_state = 198, .external_lex_state = 2}, [56] = {.lex_state = 198, .external_lex_state = 2}, [57] = {.lex_state = 198, .external_lex_state = 2}, - [58] = {.lex_state = 83, .external_lex_state = 3}, - [59] = {.lex_state = 198, .external_lex_state = 2}, + [58] = {.lex_state = 198, .external_lex_state = 2}, + [59] = {.lex_state = 83, .external_lex_state = 3}, [60] = {.lex_state = 198, .external_lex_state = 2}, [61] = {.lex_state = 198, .external_lex_state = 2}, [62] = {.lex_state = 198, .external_lex_state = 2}, @@ -5766,8 +5792,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [74] = {.lex_state = 198, .external_lex_state = 2}, [75] = {.lex_state = 198, .external_lex_state = 2}, [76] = {.lex_state = 198, .external_lex_state = 2}, - [77] = {.lex_state = 83, .external_lex_state = 3}, - [78] = {.lex_state = 198, .external_lex_state = 2}, + [77] = {.lex_state = 198, .external_lex_state = 2}, + [78] = {.lex_state = 83, .external_lex_state = 3}, [79] = {.lex_state = 198, .external_lex_state = 2}, [80] = {.lex_state = 198, .external_lex_state = 2}, [81] = {.lex_state = 198, .external_lex_state = 2}, @@ -5784,8 +5810,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [92] = {.lex_state = 198, .external_lex_state = 2}, [93] = {.lex_state = 198, .external_lex_state = 2}, [94] = {.lex_state = 83, .external_lex_state = 3}, - [95] = {.lex_state = 83, .external_lex_state = 3}, - [96] = {.lex_state = 198, .external_lex_state = 2}, + [95] = {.lex_state = 198, .external_lex_state = 2}, + [96] = {.lex_state = 83, .external_lex_state = 3}, [97] = {.lex_state = 198, .external_lex_state = 2}, [98] = {.lex_state = 198, .external_lex_state = 2}, [99] = {.lex_state = 198, .external_lex_state = 2}, @@ -5795,9 +5821,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [103] = {.lex_state = 198, .external_lex_state = 2}, [104] = {.lex_state = 198, .external_lex_state = 2}, [105] = {.lex_state = 198, .external_lex_state = 2}, - [106] = {.lex_state = 198, .external_lex_state = 2}, + [106] = {.lex_state = 83, .external_lex_state = 3}, [107] = {.lex_state = 198, .external_lex_state = 2}, - [108] = {.lex_state = 198, .external_lex_state = 2}, + [108] = {.lex_state = 83, .external_lex_state = 3}, [109] = {.lex_state = 198, .external_lex_state = 2}, [110] = {.lex_state = 198, .external_lex_state = 2}, [111] = {.lex_state = 198, .external_lex_state = 2}, @@ -5816,13 +5842,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [124] = {.lex_state = 198, .external_lex_state = 2}, [125] = {.lex_state = 198, .external_lex_state = 2}, [126] = {.lex_state = 198, .external_lex_state = 2}, - [127] = {.lex_state = 198, .external_lex_state = 2}, - [128] = {.lex_state = 198, .external_lex_state = 2}, - [129] = {.lex_state = 83, .external_lex_state = 3}, + [127] = {.lex_state = 83, .external_lex_state = 3}, + [128] = {.lex_state = 82, .external_lex_state = 2}, + [129] = {.lex_state = 198, .external_lex_state = 2}, [130] = {.lex_state = 198, .external_lex_state = 2}, [131] = {.lex_state = 198, .external_lex_state = 2}, - [132] = {.lex_state = 83, .external_lex_state = 3}, - [133] = {.lex_state = 83, .external_lex_state = 3}, + [132] = {.lex_state = 198, .external_lex_state = 2}, + [133] = {.lex_state = 198, .external_lex_state = 2}, [134] = {.lex_state = 198, .external_lex_state = 2}, [135] = {.lex_state = 198, .external_lex_state = 2}, [136] = {.lex_state = 198, .external_lex_state = 2}, @@ -5853,142 +5879,142 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [161] = {.lex_state = 80, .external_lex_state = 5}, [162] = {.lex_state = 80, .external_lex_state = 5}, [163] = {.lex_state = 60, .external_lex_state = 4}, - [164] = {.lex_state = 61, .external_lex_state = 6}, - [165] = {.lex_state = 60, .external_lex_state = 4}, - [166] = {.lex_state = 60, .external_lex_state = 4}, - [167] = {.lex_state = 193, .external_lex_state = 4}, - [168] = {.lex_state = 81, .external_lex_state = 5}, - [169] = {.lex_state = 63, .external_lex_state = 6}, - [170] = {.lex_state = 63, .external_lex_state = 6}, - [171] = {.lex_state = 193, .external_lex_state = 4}, + [164] = {.lex_state = 60, .external_lex_state = 4}, + [165] = {.lex_state = 81, .external_lex_state = 5}, + [166] = {.lex_state = 61, .external_lex_state = 6}, + [167] = {.lex_state = 198, .external_lex_state = 5}, + [168] = {.lex_state = 60, .external_lex_state = 4}, + [169] = {.lex_state = 198, .external_lex_state = 5}, + [170] = {.lex_state = 193, .external_lex_state = 4}, + [171] = {.lex_state = 63, .external_lex_state = 6}, [172] = {.lex_state = 193, .external_lex_state = 4}, - [173] = {.lex_state = 198, .external_lex_state = 5}, - [174] = {.lex_state = 193, .external_lex_state = 4}, + [173] = {.lex_state = 63, .external_lex_state = 6}, + [174] = {.lex_state = 63, .external_lex_state = 6}, [175] = {.lex_state = 63, .external_lex_state = 6}, - [176] = {.lex_state = 63, .external_lex_state = 6}, + [176] = {.lex_state = 193, .external_lex_state = 4}, [177] = {.lex_state = 64, .external_lex_state = 4}, - [178] = {.lex_state = 198, .external_lex_state = 5}, - [179] = {.lex_state = 63, .external_lex_state = 6}, + [178] = {.lex_state = 63, .external_lex_state = 6}, + [179] = {.lex_state = 64, .external_lex_state = 4}, [180] = {.lex_state = 65, .external_lex_state = 6}, [181] = {.lex_state = 193, .external_lex_state = 4}, [182] = {.lex_state = 193, .external_lex_state = 4}, - [183] = {.lex_state = 64, .external_lex_state = 4}, + [183] = {.lex_state = 193, .external_lex_state = 4}, [184] = {.lex_state = 66, .external_lex_state = 6}, - [185] = {.lex_state = 193, .external_lex_state = 4}, - [186] = {.lex_state = 67, .external_lex_state = 4}, - [187] = {.lex_state = 8, .external_lex_state = 6}, - [188] = {.lex_state = 66, .external_lex_state = 6}, + [185] = {.lex_state = 67, .external_lex_state = 4}, + [186] = {.lex_state = 66, .external_lex_state = 6}, + [187] = {.lex_state = 82, .external_lex_state = 5}, + [188] = {.lex_state = 80, .external_lex_state = 2}, [189] = {.lex_state = 64, .external_lex_state = 6}, [190] = {.lex_state = 193, .external_lex_state = 4}, [191] = {.lex_state = 8, .external_lex_state = 6}, - [192] = {.lex_state = 194, .external_lex_state = 6}, - [193] = {.lex_state = 194, .external_lex_state = 6}, - [194] = {.lex_state = 66, .external_lex_state = 6}, - [195] = {.lex_state = 8, .external_lex_state = 6}, - [196] = {.lex_state = 67, .external_lex_state = 4}, - [197] = {.lex_state = 66, .external_lex_state = 6}, - [198] = {.lex_state = 66, .external_lex_state = 6}, - [199] = {.lex_state = 198, .external_lex_state = 2}, - [200] = {.lex_state = 80, .external_lex_state = 2}, - [201] = {.lex_state = 83, .external_lex_state = 7}, - [202] = {.lex_state = 195, .external_lex_state = 6}, - [203] = {.lex_state = 195, .external_lex_state = 6}, - [204] = {.lex_state = 196, .external_lex_state = 4}, - [205] = {.lex_state = 195, .external_lex_state = 6}, - [206] = {.lex_state = 80, .external_lex_state = 2}, - [207] = {.lex_state = 198, .external_lex_state = 2}, - [208] = {.lex_state = 196, .external_lex_state = 4}, - [209] = {.lex_state = 195, .external_lex_state = 6}, - [210] = {.lex_state = 195, .external_lex_state = 6}, - [211] = {.lex_state = 198, .external_lex_state = 2}, - [212] = {.lex_state = 198, .external_lex_state = 5}, - [213] = {.lex_state = 195, .external_lex_state = 6}, - [214] = {.lex_state = 60, .external_lex_state = 6}, - [215] = {.lex_state = 82, .external_lex_state = 5}, - [216] = {.lex_state = 67, .external_lex_state = 6}, - [217] = {.lex_state = 60, .external_lex_state = 6}, - [218] = {.lex_state = 195, .external_lex_state = 6}, - [219] = {.lex_state = 198, .external_lex_state = 5}, - [220] = {.lex_state = 198, .external_lex_state = 2}, + [192] = {.lex_state = 66, .external_lex_state = 6}, + [193] = {.lex_state = 66, .external_lex_state = 6}, + [194] = {.lex_state = 198, .external_lex_state = 5}, + [195] = {.lex_state = 198, .external_lex_state = 2}, + [196] = {.lex_state = 198, .external_lex_state = 5}, + [197] = {.lex_state = 198, .external_lex_state = 5}, + [198] = {.lex_state = 80, .external_lex_state = 2}, + [199] = {.lex_state = 80, .external_lex_state = 2}, + [200] = {.lex_state = 8, .external_lex_state = 6}, + [201] = {.lex_state = 194, .external_lex_state = 6}, + [202] = {.lex_state = 80, .external_lex_state = 2}, + [203] = {.lex_state = 193, .external_lex_state = 4}, + [204] = {.lex_state = 198, .external_lex_state = 2}, + [205] = {.lex_state = 66, .external_lex_state = 6}, + [206] = {.lex_state = 198, .external_lex_state = 2}, + [207] = {.lex_state = 8, .external_lex_state = 6}, + [208] = {.lex_state = 198, .external_lex_state = 2}, + [209] = {.lex_state = 198, .external_lex_state = 5}, + [210] = {.lex_state = 198, .external_lex_state = 5}, + [211] = {.lex_state = 67, .external_lex_state = 4}, + [212] = {.lex_state = 194, .external_lex_state = 6}, + [213] = {.lex_state = 83, .external_lex_state = 7}, + [214] = {.lex_state = 195, .external_lex_state = 6}, + [215] = {.lex_state = 198, .external_lex_state = 5}, + [216] = {.lex_state = 195, .external_lex_state = 6}, + [217] = {.lex_state = 196, .external_lex_state = 4}, + [218] = {.lex_state = 198, .external_lex_state = 5}, + [219] = {.lex_state = 195, .external_lex_state = 6}, + [220] = {.lex_state = 60, .external_lex_state = 6}, [221] = {.lex_state = 198, .external_lex_state = 5}, - [222] = {.lex_state = 195, .external_lex_state = 6}, - [223] = {.lex_state = 198, .external_lex_state = 5}, - [224] = {.lex_state = 196, .external_lex_state = 4}, - [225] = {.lex_state = 198, .external_lex_state = 5}, - [226] = {.lex_state = 60, .external_lex_state = 6}, + [222] = {.lex_state = 196, .external_lex_state = 4}, + [223] = {.lex_state = 67, .external_lex_state = 6}, + [224] = {.lex_state = 195, .external_lex_state = 6}, + [225] = {.lex_state = 81, .external_lex_state = 2}, + [226] = {.lex_state = 195, .external_lex_state = 6}, [227] = {.lex_state = 195, .external_lex_state = 6}, - [228] = {.lex_state = 195, .external_lex_state = 6}, - [229] = {.lex_state = 196, .external_lex_state = 4}, - [230] = {.lex_state = 80, .external_lex_state = 2}, - [231] = {.lex_state = 80, .external_lex_state = 2}, + [228] = {.lex_state = 60, .external_lex_state = 6}, + [229] = {.lex_state = 195, .external_lex_state = 6}, + [230] = {.lex_state = 60, .external_lex_state = 6}, + [231] = {.lex_state = 195, .external_lex_state = 6}, [232] = {.lex_state = 195, .external_lex_state = 6}, - [233] = {.lex_state = 193, .external_lex_state = 6}, - [234] = {.lex_state = 195, .external_lex_state = 6}, - [235] = {.lex_state = 196, .external_lex_state = 6}, - [236] = {.lex_state = 81, .external_lex_state = 2}, - [237] = {.lex_state = 195, .external_lex_state = 6}, + [233] = {.lex_state = 195, .external_lex_state = 6}, + [234] = {.lex_state = 196, .external_lex_state = 4}, + [235] = {.lex_state = 81, .external_lex_state = 2}, + [236] = {.lex_state = 196, .external_lex_state = 4}, + [237] = {.lex_state = 196, .external_lex_state = 6}, [238] = {.lex_state = 193, .external_lex_state = 6}, [239] = {.lex_state = 195, .external_lex_state = 6}, - [240] = {.lex_state = 198, .external_lex_state = 5}, - [241] = {.lex_state = 198, .external_lex_state = 5}, - [242] = {.lex_state = 196, .external_lex_state = 6}, - [243] = {.lex_state = 81, .external_lex_state = 2}, - [244] = {.lex_state = 198, .external_lex_state = 5}, + [240] = {.lex_state = 193, .external_lex_state = 6}, + [241] = {.lex_state = 193, .external_lex_state = 6}, + [242] = {.lex_state = 193, .external_lex_state = 6}, + [243] = {.lex_state = 195, .external_lex_state = 6}, + [244] = {.lex_state = 193, .external_lex_state = 6}, [245] = {.lex_state = 193, .external_lex_state = 6}, - [246] = {.lex_state = 193, .external_lex_state = 6}, - [247] = {.lex_state = 193, .external_lex_state = 6}, - [248] = {.lex_state = 193, .external_lex_state = 6}, - [249] = {.lex_state = 193, .external_lex_state = 6}, - [250] = {.lex_state = 95, .external_lex_state = 2}, - [251] = {.lex_state = 95, .external_lex_state = 2}, - [252] = {.lex_state = 95, .external_lex_state = 2}, - [253] = {.lex_state = 95, .external_lex_state = 2}, - [254] = {.lex_state = 193, .external_lex_state = 6}, - [255] = {.lex_state = 95, .external_lex_state = 2}, - [256] = {.lex_state = 198, .external_lex_state = 2}, - [257] = {.lex_state = 198, .external_lex_state = 2}, - [258] = {.lex_state = 198, .external_lex_state = 2}, - [259] = {.lex_state = 198, .external_lex_state = 2}, + [246] = {.lex_state = 195, .external_lex_state = 6}, + [247] = {.lex_state = 195, .external_lex_state = 6}, + [248] = {.lex_state = 196, .external_lex_state = 6}, + [249] = {.lex_state = 198, .external_lex_state = 2}, + [250] = {.lex_state = 193, .external_lex_state = 6}, + [251] = {.lex_state = 198, .external_lex_state = 2}, + [252] = {.lex_state = 83, .external_lex_state = 3}, + [253] = {.lex_state = 198, .external_lex_state = 2}, + [254] = {.lex_state = 95, .external_lex_state = 2}, + [255] = {.lex_state = 198, .external_lex_state = 2}, + [256] = {.lex_state = 83, .external_lex_state = 3}, + [257] = {.lex_state = 193, .external_lex_state = 6}, + [258] = {.lex_state = 82, .external_lex_state = 2}, + [259] = {.lex_state = 95, .external_lex_state = 2}, [260] = {.lex_state = 82, .external_lex_state = 2}, - [261] = {.lex_state = 82, .external_lex_state = 2}, - [262] = {.lex_state = 198, .external_lex_state = 2}, - [263] = {.lex_state = 198, .external_lex_state = 2}, - [264] = {.lex_state = 83, .external_lex_state = 3}, - [265] = {.lex_state = 83, .external_lex_state = 3}, + [261] = {.lex_state = 198, .external_lex_state = 2}, + [262] = {.lex_state = 95, .external_lex_state = 2}, + [263] = {.lex_state = 95, .external_lex_state = 2}, + [264] = {.lex_state = 95, .external_lex_state = 2}, + [265] = {.lex_state = 198, .external_lex_state = 2}, [266] = {.lex_state = 198, .external_lex_state = 2}, [267] = {.lex_state = 198, .external_lex_state = 2}, [268] = {.lex_state = 198, .external_lex_state = 2}, [269] = {.lex_state = 198, .external_lex_state = 2}, [270] = {.lex_state = 198, .external_lex_state = 2}, - [271] = {.lex_state = 71, .external_lex_state = 4}, - [272] = {.lex_state = 198, .external_lex_state = 2}, + [271] = {.lex_state = 198, .external_lex_state = 2}, + [272] = {.lex_state = 71, .external_lex_state = 4}, [273] = {.lex_state = 71, .external_lex_state = 4}, [274] = {.lex_state = 63, .external_lex_state = 8}, [275] = {.lex_state = 71, .external_lex_state = 4}, [276] = {.lex_state = 71, .external_lex_state = 4}, - [277] = {.lex_state = 8, .external_lex_state = 9}, - [278] = {.lex_state = 8, .external_lex_state = 9}, - [279] = {.lex_state = 72, .external_lex_state = 4}, - [280] = {.lex_state = 63, .external_lex_state = 8}, + [277] = {.lex_state = 63, .external_lex_state = 8}, + [278] = {.lex_state = 63, .external_lex_state = 8}, + [279] = {.lex_state = 8, .external_lex_state = 9}, + [280] = {.lex_state = 8, .external_lex_state = 9}, [281] = {.lex_state = 63, .external_lex_state = 8}, - [282] = {.lex_state = 8, .external_lex_state = 9}, - [283] = {.lex_state = 66, .external_lex_state = 8}, - [284] = {.lex_state = 72, .external_lex_state = 4}, + [282] = {.lex_state = 72, .external_lex_state = 4}, + [283] = {.lex_state = 72, .external_lex_state = 4}, + [284] = {.lex_state = 8, .external_lex_state = 9}, [285] = {.lex_state = 72, .external_lex_state = 4}, - [286] = {.lex_state = 63, .external_lex_state = 8}, - [287] = {.lex_state = 8, .external_lex_state = 9}, - [288] = {.lex_state = 63, .external_lex_state = 8}, - [289] = {.lex_state = 63, .external_lex_state = 8}, - [290] = {.lex_state = 8, .external_lex_state = 9}, + [286] = {.lex_state = 8, .external_lex_state = 9}, + [287] = {.lex_state = 63, .external_lex_state = 8}, + [288] = {.lex_state = 8, .external_lex_state = 9}, + [289] = {.lex_state = 66, .external_lex_state = 8}, + [290] = {.lex_state = 63, .external_lex_state = 8}, [291] = {.lex_state = 72, .external_lex_state = 4}, [292] = {.lex_state = 63, .external_lex_state = 8}, [293] = {.lex_state = 8, .external_lex_state = 9}, - [294] = {.lex_state = 60, .external_lex_state = 9}, + [294] = {.lex_state = 63, .external_lex_state = 8}, [295] = {.lex_state = 60, .external_lex_state = 9}, [296] = {.lex_state = 60, .external_lex_state = 9}, [297] = {.lex_state = 63, .external_lex_state = 6}, - [298] = {.lex_state = 66, .external_lex_state = 8}, - [299] = {.lex_state = 8, .external_lex_state = 8}, + [298] = {.lex_state = 8, .external_lex_state = 8}, + [299] = {.lex_state = 8, .external_lex_state = 9}, [300] = {.lex_state = 8, .external_lex_state = 9}, [301] = {.lex_state = 8, .external_lex_state = 9}, [302] = {.lex_state = 8, .external_lex_state = 9}, @@ -6001,23 +6027,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [309] = {.lex_state = 8, .external_lex_state = 9}, [310] = {.lex_state = 8, .external_lex_state = 9}, [311] = {.lex_state = 8, .external_lex_state = 9}, - [312] = {.lex_state = 197, .external_lex_state = 4}, - [313] = {.lex_state = 195, .external_lex_state = 8}, - [314] = {.lex_state = 63, .external_lex_state = 6}, + [312] = {.lex_state = 66, .external_lex_state = 8}, + [313] = {.lex_state = 197, .external_lex_state = 4}, + [314] = {.lex_state = 8, .external_lex_state = 9}, [315] = {.lex_state = 8, .external_lex_state = 9}, [316] = {.lex_state = 8, .external_lex_state = 9}, - [317] = {.lex_state = 197, .external_lex_state = 4}, + [317] = {.lex_state = 195, .external_lex_state = 8}, [318] = {.lex_state = 8, .external_lex_state = 9}, - [319] = {.lex_state = 8, .external_lex_state = 9}, + [319] = {.lex_state = 63, .external_lex_state = 6}, [320] = {.lex_state = 71, .external_lex_state = 9}, [321] = {.lex_state = 8, .external_lex_state = 4}, - [322] = {.lex_state = 197, .external_lex_state = 4}, + [322] = {.lex_state = 63, .external_lex_state = 8}, [323] = {.lex_state = 8, .external_lex_state = 9}, [324] = {.lex_state = 197, .external_lex_state = 4}, - [325] = {.lex_state = 197, .external_lex_state = 4}, - [326] = {.lex_state = 71, .external_lex_state = 9}, - [327] = {.lex_state = 8, .external_lex_state = 9}, - [328] = {.lex_state = 66, .external_lex_state = 8}, + [325] = {.lex_state = 71, .external_lex_state = 9}, + [326] = {.lex_state = 197, .external_lex_state = 4}, + [327] = {.lex_state = 197, .external_lex_state = 4}, + [328] = {.lex_state = 8, .external_lex_state = 4}, [329] = {.lex_state = 8, .external_lex_state = 9}, [330] = {.lex_state = 66, .external_lex_state = 8}, [331] = {.lex_state = 63, .external_lex_state = 8}, @@ -6026,7 +6052,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [334] = {.lex_state = 63, .external_lex_state = 8}, [335] = {.lex_state = 63, .external_lex_state = 8}, [336] = {.lex_state = 197, .external_lex_state = 4}, - [337] = {.lex_state = 63, .external_lex_state = 8}, + [337] = {.lex_state = 60, .external_lex_state = 9}, [338] = {.lex_state = 63, .external_lex_state = 8}, [339] = {.lex_state = 63, .external_lex_state = 8}, [340] = {.lex_state = 63, .external_lex_state = 8}, @@ -6034,91 +6060,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [342] = {.lex_state = 63, .external_lex_state = 8}, [343] = {.lex_state = 63, .external_lex_state = 8}, [344] = {.lex_state = 63, .external_lex_state = 8}, - [345] = {.lex_state = 71, .external_lex_state = 9}, - [346] = {.lex_state = 60, .external_lex_state = 9}, - [347] = {.lex_state = 195, .external_lex_state = 8}, - [348] = {.lex_state = 8, .external_lex_state = 4}, - [349] = {.lex_state = 63, .external_lex_state = 8}, + [345] = {.lex_state = 60, .external_lex_state = 9}, + [346] = {.lex_state = 197, .external_lex_state = 4}, + [347] = {.lex_state = 66, .external_lex_state = 8}, + [348] = {.lex_state = 63, .external_lex_state = 8}, + [349] = {.lex_state = 63, .external_lex_state = 6}, [350] = {.lex_state = 63, .external_lex_state = 8}, [351] = {.lex_state = 63, .external_lex_state = 8}, [352] = {.lex_state = 63, .external_lex_state = 8}, - [353] = {.lex_state = 8, .external_lex_state = 8}, + [353] = {.lex_state = 66, .external_lex_state = 8}, [354] = {.lex_state = 8, .external_lex_state = 8}, [355] = {.lex_state = 60, .external_lex_state = 9}, [356] = {.lex_state = 63, .external_lex_state = 6}, - [357] = {.lex_state = 197, .external_lex_state = 4}, - [358] = {.lex_state = 63, .external_lex_state = 6}, - [359] = {.lex_state = 63, .external_lex_state = 8}, - [360] = {.lex_state = 197, .external_lex_state = 4}, + [357] = {.lex_state = 63, .external_lex_state = 8}, + [358] = {.lex_state = 63, .external_lex_state = 8}, + [359] = {.lex_state = 66, .external_lex_state = 8}, + [360] = {.lex_state = 66, .external_lex_state = 8}, [361] = {.lex_state = 8, .external_lex_state = 4}, [362] = {.lex_state = 8, .external_lex_state = 8}, [363] = {.lex_state = 63, .external_lex_state = 8}, - [364] = {.lex_state = 63, .external_lex_state = 8}, + [364] = {.lex_state = 71, .external_lex_state = 9}, [365] = {.lex_state = 63, .external_lex_state = 8}, - [366] = {.lex_state = 71, .external_lex_state = 9}, + [366] = {.lex_state = 197, .external_lex_state = 4}, [367] = {.lex_state = 8, .external_lex_state = 9}, - [368] = {.lex_state = 8, .external_lex_state = 9}, + [368] = {.lex_state = 8, .external_lex_state = 8}, [369] = {.lex_state = 8, .external_lex_state = 9}, - [370] = {.lex_state = 66, .external_lex_state = 8}, - [371] = {.lex_state = 8, .external_lex_state = 9}, + [370] = {.lex_state = 8, .external_lex_state = 9}, + [371] = {.lex_state = 195, .external_lex_state = 8}, [372] = {.lex_state = 8, .external_lex_state = 9}, - [373] = {.lex_state = 66, .external_lex_state = 8}, - [374] = {.lex_state = 8, .external_lex_state = 9}, - [375] = {.lex_state = 63, .external_lex_state = 8}, + [373] = {.lex_state = 8, .external_lex_state = 9}, + [374] = {.lex_state = 197, .external_lex_state = 4}, + [375] = {.lex_state = 8, .external_lex_state = 9}, [376] = {.lex_state = 63, .external_lex_state = 8}, [377] = {.lex_state = 63, .external_lex_state = 8}, - [378] = {.lex_state = 66, .external_lex_state = 8}, - [379] = {.lex_state = 63, .external_lex_state = 8}, + [378] = {.lex_state = 63, .external_lex_state = 8}, + [379] = {.lex_state = 71, .external_lex_state = 9}, [380] = {.lex_state = 63, .external_lex_state = 8}, [381] = {.lex_state = 8, .external_lex_state = 8}, - [382] = {.lex_state = 60, .external_lex_state = 9}, - [383] = {.lex_state = 71, .external_lex_state = 9}, - [384] = {.lex_state = 8, .external_lex_state = 8}, - [385] = {.lex_state = 8, .external_lex_state = 8}, - [386] = {.lex_state = 193, .external_lex_state = 9}, - [387] = {.lex_state = 60, .external_lex_state = 9}, - [388] = {.lex_state = 193, .external_lex_state = 9}, - [389] = {.lex_state = 193, .external_lex_state = 9}, + [382] = {.lex_state = 8, .external_lex_state = 4}, + [383] = {.lex_state = 60, .external_lex_state = 9}, + [384] = {.lex_state = 71, .external_lex_state = 9}, + [385] = {.lex_state = 60, .external_lex_state = 9}, + [386] = {.lex_state = 71, .external_lex_state = 9}, + [387] = {.lex_state = 8, .external_lex_state = 8}, + [388] = {.lex_state = 60, .external_lex_state = 9}, + [389] = {.lex_state = 8, .external_lex_state = 8}, [390] = {.lex_state = 60, .external_lex_state = 9}, - [391] = {.lex_state = 60, .external_lex_state = 4}, - [392] = {.lex_state = 63, .external_lex_state = 6}, - [393] = {.lex_state = 60, .external_lex_state = 9}, - [394] = {.lex_state = 72, .external_lex_state = 9}, - [395] = {.lex_state = 8, .external_lex_state = 4}, + [391] = {.lex_state = 8, .external_lex_state = 8}, + [392] = {.lex_state = 8, .external_lex_state = 8}, + [393] = {.lex_state = 63, .external_lex_state = 6}, + [394] = {.lex_state = 60, .external_lex_state = 9}, + [395] = {.lex_state = 8, .external_lex_state = 8}, [396] = {.lex_state = 60, .external_lex_state = 9}, [397] = {.lex_state = 8, .external_lex_state = 8}, - [398] = {.lex_state = 8, .external_lex_state = 4}, - [399] = {.lex_state = 8, .external_lex_state = 8}, - [400] = {.lex_state = 60, .external_lex_state = 9}, - [401] = {.lex_state = 8, .external_lex_state = 4}, - [402] = {.lex_state = 193, .external_lex_state = 9}, - [403] = {.lex_state = 8, .external_lex_state = 8}, - [404] = {.lex_state = 193, .external_lex_state = 9}, - [405] = {.lex_state = 71, .external_lex_state = 4}, + [398] = {.lex_state = 60, .external_lex_state = 9}, + [399] = {.lex_state = 193, .external_lex_state = 9}, + [400] = {.lex_state = 193, .external_lex_state = 9}, + [401] = {.lex_state = 193, .external_lex_state = 9}, + [402] = {.lex_state = 60, .external_lex_state = 4}, + [403] = {.lex_state = 72, .external_lex_state = 9}, + [404] = {.lex_state = 60, .external_lex_state = 9}, + [405] = {.lex_state = 8, .external_lex_state = 4}, [406] = {.lex_state = 60, .external_lex_state = 9}, - [407] = {.lex_state = 193, .external_lex_state = 9}, - [408] = {.lex_state = 8, .external_lex_state = 8}, - [409] = {.lex_state = 71, .external_lex_state = 9}, - [410] = {.lex_state = 60, .external_lex_state = 9}, - [411] = {.lex_state = 71, .external_lex_state = 9}, + [407] = {.lex_state = 8, .external_lex_state = 4}, + [408] = {.lex_state = 8, .external_lex_state = 4}, + [409] = {.lex_state = 193, .external_lex_state = 9}, + [410] = {.lex_state = 193, .external_lex_state = 9}, + [411] = {.lex_state = 71, .external_lex_state = 4}, [412] = {.lex_state = 193, .external_lex_state = 9}, - [413] = {.lex_state = 8, .external_lex_state = 4}, + [413] = {.lex_state = 195, .external_lex_state = 8}, [414] = {.lex_state = 60, .external_lex_state = 9}, - [415] = {.lex_state = 71, .external_lex_state = 9}, - [416] = {.lex_state = 60, .external_lex_state = 9}, + [415] = {.lex_state = 193, .external_lex_state = 9}, + [416] = {.lex_state = 71, .external_lex_state = 9}, [417] = {.lex_state = 60, .external_lex_state = 9}, - [418] = {.lex_state = 60, .external_lex_state = 9}, - [419] = {.lex_state = 60, .external_lex_state = 8}, - [420] = {.lex_state = 60, .external_lex_state = 9}, - [421] = {.lex_state = 71, .external_lex_state = 9}, + [418] = {.lex_state = 71, .external_lex_state = 9}, + [419] = {.lex_state = 60, .external_lex_state = 9}, + [420] = {.lex_state = 60, .external_lex_state = 8}, + [421] = {.lex_state = 60, .external_lex_state = 9}, [422] = {.lex_state = 72, .external_lex_state = 9}, - [423] = {.lex_state = 60, .external_lex_state = 9}, - [424] = {.lex_state = 71, .external_lex_state = 9}, - [425] = {.lex_state = 8, .external_lex_state = 8}, + [423] = {.lex_state = 71, .external_lex_state = 9}, + [424] = {.lex_state = 60, .external_lex_state = 9}, + [425] = {.lex_state = 71, .external_lex_state = 9}, [426] = {.lex_state = 8, .external_lex_state = 8}, [427] = {.lex_state = 8, .external_lex_state = 8}, - [428] = {.lex_state = 8, .external_lex_state = 6}, - [429] = {.lex_state = 8, .external_lex_state = 8}, + [428] = {.lex_state = 8, .external_lex_state = 8}, + [429] = {.lex_state = 8, .external_lex_state = 6}, [430] = {.lex_state = 8, .external_lex_state = 8}, [431] = {.lex_state = 197, .external_lex_state = 4}, [432] = {.lex_state = 8, .external_lex_state = 8}, @@ -6130,39 +6156,39 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [438] = {.lex_state = 8, .external_lex_state = 8}, [439] = {.lex_state = 8, .external_lex_state = 8}, [440] = {.lex_state = 8, .external_lex_state = 8}, - [441] = {.lex_state = 195, .external_lex_state = 8}, - [442] = {.lex_state = 8, .external_lex_state = 8}, + [441] = {.lex_state = 8, .external_lex_state = 8}, + [442] = {.lex_state = 195, .external_lex_state = 8}, [443] = {.lex_state = 8, .external_lex_state = 8}, [444] = {.lex_state = 8, .external_lex_state = 8}, [445] = {.lex_state = 8, .external_lex_state = 8}, - [446] = {.lex_state = 8, .external_lex_state = 8}, + [446] = {.lex_state = 60, .external_lex_state = 9}, [447] = {.lex_state = 8, .external_lex_state = 8}, [448] = {.lex_state = 8, .external_lex_state = 8}, - [449] = {.lex_state = 71, .external_lex_state = 9}, - [450] = {.lex_state = 66, .external_lex_state = 8}, + [449] = {.lex_state = 8, .external_lex_state = 8}, + [450] = {.lex_state = 8, .external_lex_state = 8}, [451] = {.lex_state = 193, .external_lex_state = 9}, [452] = {.lex_state = 197, .external_lex_state = 4}, [453] = {.lex_state = 71, .external_lex_state = 9}, [454] = {.lex_state = 66, .external_lex_state = 6}, - [455] = {.lex_state = 193, .external_lex_state = 9}, - [456] = {.lex_state = 66, .external_lex_state = 8}, + [455] = {.lex_state = 66, .external_lex_state = 8}, + [456] = {.lex_state = 193, .external_lex_state = 9}, [457] = {.lex_state = 197, .external_lex_state = 4}, [458] = {.lex_state = 71, .external_lex_state = 9}, - [459] = {.lex_state = 71, .external_lex_state = 4}, - [460] = {.lex_state = 66, .external_lex_state = 8}, - [461] = {.lex_state = 66, .external_lex_state = 8}, - [462] = {.lex_state = 71, .external_lex_state = 9}, - [463] = {.lex_state = 71, .external_lex_state = 9}, + [459] = {.lex_state = 66, .external_lex_state = 8}, + [460] = {.lex_state = 71, .external_lex_state = 9}, + [461] = {.lex_state = 71, .external_lex_state = 4}, + [462] = {.lex_state = 66, .external_lex_state = 8}, + [463] = {.lex_state = 66, .external_lex_state = 8}, [464] = {.lex_state = 71, .external_lex_state = 9}, [465] = {.lex_state = 60, .external_lex_state = 8}, [466] = {.lex_state = 60, .external_lex_state = 4}, [467] = {.lex_state = 71, .external_lex_state = 9}, - [468] = {.lex_state = 66, .external_lex_state = 8}, + [468] = {.lex_state = 71, .external_lex_state = 9}, [469] = {.lex_state = 66, .external_lex_state = 6}, - [470] = {.lex_state = 66, .external_lex_state = 8}, + [470] = {.lex_state = 195, .external_lex_state = 8}, [471] = {.lex_state = 71, .external_lex_state = 9}, - [472] = {.lex_state = 195, .external_lex_state = 8}, - [473] = {.lex_state = 71, .external_lex_state = 9}, + [472] = {.lex_state = 66, .external_lex_state = 8}, + [473] = {.lex_state = 66, .external_lex_state = 8}, [474] = {.lex_state = 71, .external_lex_state = 9}, [475] = {.lex_state = 71, .external_lex_state = 9}, [476] = {.lex_state = 195, .external_lex_state = 8}, @@ -6176,28 +6202,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [484] = {.lex_state = 71, .external_lex_state = 9}, [485] = {.lex_state = 71, .external_lex_state = 9}, [486] = {.lex_state = 71, .external_lex_state = 9}, - [487] = {.lex_state = 60, .external_lex_state = 9}, - [488] = {.lex_state = 60, .external_lex_state = 9}, + [487] = {.lex_state = 71, .external_lex_state = 9}, + [488] = {.lex_state = 71, .external_lex_state = 9}, [489] = {.lex_state = 60, .external_lex_state = 9}, [490] = {.lex_state = 60, .external_lex_state = 9}, [491] = {.lex_state = 60, .external_lex_state = 9}, [492] = {.lex_state = 193, .external_lex_state = 9}, - [493] = {.lex_state = 25, .external_lex_state = 6}, + [493] = {.lex_state = 60, .external_lex_state = 9}, [494] = {.lex_state = 60, .external_lex_state = 9}, [495] = {.lex_state = 63, .external_lex_state = 6}, [496] = {.lex_state = 197, .external_lex_state = 4}, [497] = {.lex_state = 197, .external_lex_state = 4}, [498] = {.lex_state = 195, .external_lex_state = 8}, - [499] = {.lex_state = 66, .external_lex_state = 8}, + [499] = {.lex_state = 25, .external_lex_state = 6}, [500] = {.lex_state = 197, .external_lex_state = 4}, - [501] = {.lex_state = 66, .external_lex_state = 8}, - [502] = {.lex_state = 60, .external_lex_state = 8}, - [503] = {.lex_state = 197, .external_lex_state = 4}, + [501] = {.lex_state = 197, .external_lex_state = 4}, + [502] = {.lex_state = 60, .external_lex_state = 9}, + [503] = {.lex_state = 66, .external_lex_state = 8}, [504] = {.lex_state = 66, .external_lex_state = 8}, - [505] = {.lex_state = 66, .external_lex_state = 6}, - [506] = {.lex_state = 60, .external_lex_state = 8}, - [507] = {.lex_state = 66, .external_lex_state = 8}, - [508] = {.lex_state = 66, .external_lex_state = 8}, + [505] = {.lex_state = 60, .external_lex_state = 8}, + [506] = {.lex_state = 66, .external_lex_state = 8}, + [507] = {.lex_state = 66, .external_lex_state = 6}, + [508] = {.lex_state = 60, .external_lex_state = 8}, [509] = {.lex_state = 66, .external_lex_state = 8}, [510] = {.lex_state = 197, .external_lex_state = 4}, [511] = {.lex_state = 66, .external_lex_state = 8}, @@ -6208,9 +6234,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [516] = {.lex_state = 195, .external_lex_state = 8}, [517] = {.lex_state = 66, .external_lex_state = 8}, [518] = {.lex_state = 66, .external_lex_state = 8}, - [519] = {.lex_state = 195, .external_lex_state = 8}, + [519] = {.lex_state = 66, .external_lex_state = 8}, [520] = {.lex_state = 66, .external_lex_state = 8}, - [521] = {.lex_state = 66, .external_lex_state = 8}, + [521] = {.lex_state = 195, .external_lex_state = 8}, [522] = {.lex_state = 66, .external_lex_state = 8}, [523] = {.lex_state = 66, .external_lex_state = 8}, [524] = {.lex_state = 66, .external_lex_state = 8}, @@ -6218,29 +6244,29 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [526] = {.lex_state = 66, .external_lex_state = 8}, [527] = {.lex_state = 66, .external_lex_state = 8}, [528] = {.lex_state = 66, .external_lex_state = 8}, - [529] = {.lex_state = 195, .external_lex_state = 8}, - [530] = {.lex_state = 60, .external_lex_state = 9}, - [531] = {.lex_state = 60, .external_lex_state = 9}, - [532] = {.lex_state = 197, .external_lex_state = 4}, + [529] = {.lex_state = 66, .external_lex_state = 8}, + [530] = {.lex_state = 66, .external_lex_state = 8}, + [531] = {.lex_state = 195, .external_lex_state = 8}, + [532] = {.lex_state = 60, .external_lex_state = 9}, [533] = {.lex_state = 197, .external_lex_state = 4}, - [534] = {.lex_state = 63, .external_lex_state = 6}, - [535] = {.lex_state = 72, .external_lex_state = 9}, - [536] = {.lex_state = 60, .external_lex_state = 9}, - [537] = {.lex_state = 195, .external_lex_state = 8}, - [538] = {.lex_state = 60, .external_lex_state = 4}, - [539] = {.lex_state = 72, .external_lex_state = 9}, - [540] = {.lex_state = 60, .external_lex_state = 9}, - [541] = {.lex_state = 60, .external_lex_state = 9}, - [542] = {.lex_state = 8, .external_lex_state = 6}, - [543] = {.lex_state = 195, .external_lex_state = 8}, - [544] = {.lex_state = 60, .external_lex_state = 9}, + [534] = {.lex_state = 60, .external_lex_state = 9}, + [535] = {.lex_state = 197, .external_lex_state = 4}, + [536] = {.lex_state = 63, .external_lex_state = 6}, + [537] = {.lex_state = 72, .external_lex_state = 9}, + [538] = {.lex_state = 195, .external_lex_state = 8}, + [539] = {.lex_state = 60, .external_lex_state = 9}, + [540] = {.lex_state = 60, .external_lex_state = 4}, + [541] = {.lex_state = 72, .external_lex_state = 9}, + [542] = {.lex_state = 60, .external_lex_state = 9}, + [543] = {.lex_state = 60, .external_lex_state = 9}, + [544] = {.lex_state = 8, .external_lex_state = 6}, [545] = {.lex_state = 60, .external_lex_state = 8}, [546] = {.lex_state = 72, .external_lex_state = 9}, [547] = {.lex_state = 193, .external_lex_state = 8}, [548] = {.lex_state = 193, .external_lex_state = 9}, [549] = {.lex_state = 193, .external_lex_state = 9}, - [550] = {.lex_state = 193, .external_lex_state = 8}, - [551] = {.lex_state = 193, .external_lex_state = 9}, + [550] = {.lex_state = 193, .external_lex_state = 9}, + [551] = {.lex_state = 193, .external_lex_state = 8}, [552] = {.lex_state = 193, .external_lex_state = 9}, [553] = {.lex_state = 193, .external_lex_state = 9}, [554] = {.lex_state = 193, .external_lex_state = 9}, @@ -6260,28 +6286,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [568] = {.lex_state = 193, .external_lex_state = 9}, [569] = {.lex_state = 193, .external_lex_state = 9}, [570] = {.lex_state = 193, .external_lex_state = 9}, - [571] = {.lex_state = 193, .external_lex_state = 9}, + [571] = {.lex_state = 195, .external_lex_state = 6}, [572] = {.lex_state = 193, .external_lex_state = 9}, [573] = {.lex_state = 193, .external_lex_state = 9}, - [574] = {.lex_state = 193, .external_lex_state = 4}, - [575] = {.lex_state = 193, .external_lex_state = 8}, - [576] = {.lex_state = 197, .external_lex_state = 9}, - [577] = {.lex_state = 60, .external_lex_state = 4}, - [578] = {.lex_state = 60, .external_lex_state = 4}, - [579] = {.lex_state = 197, .external_lex_state = 9}, + [574] = {.lex_state = 193, .external_lex_state = 9}, + [575] = {.lex_state = 193, .external_lex_state = 9}, + [576] = {.lex_state = 193, .external_lex_state = 4}, + [577] = {.lex_state = 193, .external_lex_state = 8}, + [578] = {.lex_state = 197, .external_lex_state = 9}, + [579] = {.lex_state = 60, .external_lex_state = 4}, [580] = {.lex_state = 197, .external_lex_state = 9}, [581] = {.lex_state = 60, .external_lex_state = 4}, [582] = {.lex_state = 197, .external_lex_state = 9}, - [583] = {.lex_state = 197, .external_lex_state = 9}, - [584] = {.lex_state = 193, .external_lex_state = 9}, - [585] = {.lex_state = 72, .external_lex_state = 4}, - [586] = {.lex_state = 197, .external_lex_state = 9}, - [587] = {.lex_state = 193, .external_lex_state = 8}, + [583] = {.lex_state = 60, .external_lex_state = 4}, + [584] = {.lex_state = 197, .external_lex_state = 9}, + [585] = {.lex_state = 197, .external_lex_state = 9}, + [586] = {.lex_state = 72, .external_lex_state = 4}, + [587] = {.lex_state = 197, .external_lex_state = 9}, [588] = {.lex_state = 193, .external_lex_state = 8}, - [589] = {.lex_state = 186, .external_lex_state = 6}, - [590] = {.lex_state = 193, .external_lex_state = 4}, - [591] = {.lex_state = 193, .external_lex_state = 8}, - [592] = {.lex_state = 193, .external_lex_state = 9}, + [589] = {.lex_state = 193, .external_lex_state = 8}, + [590] = {.lex_state = 186, .external_lex_state = 6}, + [591] = {.lex_state = 193, .external_lex_state = 4}, + [592] = {.lex_state = 193, .external_lex_state = 8}, [593] = {.lex_state = 193, .external_lex_state = 9}, [594] = {.lex_state = 193, .external_lex_state = 9}, [595] = {.lex_state = 193, .external_lex_state = 9}, @@ -6291,10 +6317,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [599] = {.lex_state = 193, .external_lex_state = 9}, [600] = {.lex_state = 193, .external_lex_state = 9}, [601] = {.lex_state = 193, .external_lex_state = 9}, - [602] = {.lex_state = 71, .external_lex_state = 4}, - [603] = {.lex_state = 193, .external_lex_state = 9}, + [602] = {.lex_state = 193, .external_lex_state = 9}, + [603] = {.lex_state = 71, .external_lex_state = 4}, [604] = {.lex_state = 193, .external_lex_state = 9}, - [605] = {.lex_state = 195, .external_lex_state = 6}, + [605] = {.lex_state = 193, .external_lex_state = 9}, [606] = {.lex_state = 193, .external_lex_state = 9}, [607] = {.lex_state = 193, .external_lex_state = 9}, [608] = {.lex_state = 71, .external_lex_state = 4}, @@ -6320,253 +6346,253 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [628] = {.lex_state = 195, .external_lex_state = 8}, [629] = {.lex_state = 195, .external_lex_state = 8}, [630] = {.lex_state = 195, .external_lex_state = 8}, - [631] = {.lex_state = 195, .external_lex_state = 8}, + [631] = {.lex_state = 8, .external_lex_state = 6}, [632] = {.lex_state = 195, .external_lex_state = 8}, [633] = {.lex_state = 195, .external_lex_state = 8}, - [634] = {.lex_state = 8, .external_lex_state = 6}, + [634] = {.lex_state = 195, .external_lex_state = 8}, [635] = {.lex_state = 195, .external_lex_state = 8}, [636] = {.lex_state = 195, .external_lex_state = 8}, [637] = {.lex_state = 195, .external_lex_state = 8}, [638] = {.lex_state = 195, .external_lex_state = 8}, - [639] = {.lex_state = 71, .external_lex_state = 4}, - [640] = {.lex_state = 197, .external_lex_state = 9}, + [639] = {.lex_state = 197, .external_lex_state = 9}, + [640] = {.lex_state = 71, .external_lex_state = 4}, [641] = {.lex_state = 195, .external_lex_state = 8}, [642] = {.lex_state = 195, .external_lex_state = 8}, [643] = {.lex_state = 195, .external_lex_state = 6}, [644] = {.lex_state = 195, .external_lex_state = 8}, - [645] = {.lex_state = 195, .external_lex_state = 8}, - [646] = {.lex_state = 195, .external_lex_state = 6}, + [645] = {.lex_state = 195, .external_lex_state = 6}, + [646] = {.lex_state = 195, .external_lex_state = 8}, [647] = {.lex_state = 60, .external_lex_state = 8}, - [648] = {.lex_state = 60, .external_lex_state = 8}, - [649] = {.lex_state = 66, .external_lex_state = 6}, - [650] = {.lex_state = 195, .external_lex_state = 6}, - [651] = {.lex_state = 66, .external_lex_state = 6}, - [652] = {.lex_state = 60, .external_lex_state = 8}, - [653] = {.lex_state = 60, .external_lex_state = 8}, + [648] = {.lex_state = 66, .external_lex_state = 6}, + [649] = {.lex_state = 60, .external_lex_state = 8}, + [650] = {.lex_state = 66, .external_lex_state = 6}, + [651] = {.lex_state = 195, .external_lex_state = 6}, + [652] = {.lex_state = 195, .external_lex_state = 8}, + [653] = {.lex_state = 195, .external_lex_state = 8}, [654] = {.lex_state = 195, .external_lex_state = 8}, [655] = {.lex_state = 195, .external_lex_state = 8}, [656] = {.lex_state = 195, .external_lex_state = 8}, - [657] = {.lex_state = 195, .external_lex_state = 8}, - [658] = {.lex_state = 195, .external_lex_state = 8}, - [659] = {.lex_state = 60, .external_lex_state = 8}, + [657] = {.lex_state = 60, .external_lex_state = 8}, + [658] = {.lex_state = 60, .external_lex_state = 8}, + [659] = {.lex_state = 193, .external_lex_state = 8}, [660] = {.lex_state = 60, .external_lex_state = 8}, - [661] = {.lex_state = 195, .external_lex_state = 8}, - [662] = {.lex_state = 195, .external_lex_state = 6}, - [663] = {.lex_state = 193, .external_lex_state = 8}, + [661] = {.lex_state = 195, .external_lex_state = 6}, + [662] = {.lex_state = 60, .external_lex_state = 8}, + [663] = {.lex_state = 193, .external_lex_state = 4}, [664] = {.lex_state = 193, .external_lex_state = 4}, - [665] = {.lex_state = 193, .external_lex_state = 4}, + [665] = {.lex_state = 72, .external_lex_state = 9}, [666] = {.lex_state = 72, .external_lex_state = 9}, - [667] = {.lex_state = 72, .external_lex_state = 9}, + [667] = {.lex_state = 195, .external_lex_state = 6}, [668] = {.lex_state = 60, .external_lex_state = 4}, - [669] = {.lex_state = 195, .external_lex_state = 6}, - [670] = {.lex_state = 193, .external_lex_state = 4}, - [671] = {.lex_state = 195, .external_lex_state = 8}, - [672] = {.lex_state = 193, .external_lex_state = 8}, - [673] = {.lex_state = 66, .external_lex_state = 6}, - [674] = {.lex_state = 195, .external_lex_state = 8}, + [669] = {.lex_state = 193, .external_lex_state = 4}, + [670] = {.lex_state = 66, .external_lex_state = 6}, + [671] = {.lex_state = 193, .external_lex_state = 8}, + [672] = {.lex_state = 195, .external_lex_state = 8}, + [673] = {.lex_state = 72, .external_lex_state = 9}, + [674] = {.lex_state = 72, .external_lex_state = 9}, [675] = {.lex_state = 195, .external_lex_state = 8}, [676] = {.lex_state = 195, .external_lex_state = 8}, [677] = {.lex_state = 195, .external_lex_state = 8}, [678] = {.lex_state = 195, .external_lex_state = 8}, [679] = {.lex_state = 195, .external_lex_state = 8}, - [680] = {.lex_state = 72, .external_lex_state = 9}, - [681] = {.lex_state = 72, .external_lex_state = 9}, - [682] = {.lex_state = 60, .external_lex_state = 8}, - [683] = {.lex_state = 60, .external_lex_state = 8}, - [684] = {.lex_state = 60, .external_lex_state = 8}, - [685] = {.lex_state = 60, .external_lex_state = 8}, + [680] = {.lex_state = 195, .external_lex_state = 8}, + [681] = {.lex_state = 195, .external_lex_state = 8}, + [682] = {.lex_state = 195, .external_lex_state = 8}, + [683] = {.lex_state = 197, .external_lex_state = 9}, + [684] = {.lex_state = 195, .external_lex_state = 8}, + [685] = {.lex_state = 195, .external_lex_state = 8}, [686] = {.lex_state = 195, .external_lex_state = 8}, - [687] = {.lex_state = 60, .external_lex_state = 8}, - [688] = {.lex_state = 60, .external_lex_state = 8}, - [689] = {.lex_state = 60, .external_lex_state = 8}, - [690] = {.lex_state = 60, .external_lex_state = 8}, - [691] = {.lex_state = 60, .external_lex_state = 8}, - [692] = {.lex_state = 60, .external_lex_state = 8}, + [687] = {.lex_state = 195, .external_lex_state = 8}, + [688] = {.lex_state = 26, .external_lex_state = 6}, + [689] = {.lex_state = 72, .external_lex_state = 9}, + [690] = {.lex_state = 72, .external_lex_state = 9}, + [691] = {.lex_state = 72, .external_lex_state = 9}, + [692] = {.lex_state = 72, .external_lex_state = 9}, [693] = {.lex_state = 72, .external_lex_state = 9}, - [694] = {.lex_state = 60, .external_lex_state = 8}, - [695] = {.lex_state = 60, .external_lex_state = 8}, - [696] = {.lex_state = 60, .external_lex_state = 8}, - [697] = {.lex_state = 195, .external_lex_state = 6}, + [694] = {.lex_state = 72, .external_lex_state = 9}, + [695] = {.lex_state = 72, .external_lex_state = 9}, + [696] = {.lex_state = 195, .external_lex_state = 8}, + [697] = {.lex_state = 195, .external_lex_state = 8}, [698] = {.lex_state = 195, .external_lex_state = 8}, - [699] = {.lex_state = 66, .external_lex_state = 6}, - [700] = {.lex_state = 195, .external_lex_state = 6}, - [701] = {.lex_state = 195, .external_lex_state = 8}, - [702] = {.lex_state = 195, .external_lex_state = 8}, - [703] = {.lex_state = 60, .external_lex_state = 8}, - [704] = {.lex_state = 60, .external_lex_state = 8}, - [705] = {.lex_state = 197, .external_lex_state = 9}, + [699] = {.lex_state = 195, .external_lex_state = 8}, + [700] = {.lex_state = 72, .external_lex_state = 9}, + [701] = {.lex_state = 72, .external_lex_state = 9}, + [702] = {.lex_state = 72, .external_lex_state = 9}, + [703] = {.lex_state = 72, .external_lex_state = 9}, + [704] = {.lex_state = 72, .external_lex_state = 9}, + [705] = {.lex_state = 72, .external_lex_state = 9}, [706] = {.lex_state = 195, .external_lex_state = 8}, [707] = {.lex_state = 195, .external_lex_state = 8}, [708] = {.lex_state = 195, .external_lex_state = 8}, [709] = {.lex_state = 195, .external_lex_state = 8}, - [710] = {.lex_state = 60, .external_lex_state = 8}, - [711] = {.lex_state = 195, .external_lex_state = 8}, - [712] = {.lex_state = 60, .external_lex_state = 6}, + [710] = {.lex_state = 195, .external_lex_state = 8}, + [711] = {.lex_state = 72, .external_lex_state = 9}, + [712] = {.lex_state = 72, .external_lex_state = 9}, [713] = {.lex_state = 72, .external_lex_state = 9}, - [714] = {.lex_state = 60, .external_lex_state = 8}, - [715] = {.lex_state = 195, .external_lex_state = 8}, - [716] = {.lex_state = 26, .external_lex_state = 6}, - [717] = {.lex_state = 72, .external_lex_state = 9}, - [718] = {.lex_state = 72, .external_lex_state = 9}, + [714] = {.lex_state = 72, .external_lex_state = 9}, + [715] = {.lex_state = 72, .external_lex_state = 4}, + [716] = {.lex_state = 72, .external_lex_state = 9}, + [717] = {.lex_state = 195, .external_lex_state = 8}, + [718] = {.lex_state = 195, .external_lex_state = 8}, [719] = {.lex_state = 72, .external_lex_state = 9}, [720] = {.lex_state = 72, .external_lex_state = 9}, - [721] = {.lex_state = 72, .external_lex_state = 9}, - [722] = {.lex_state = 195, .external_lex_state = 8}, - [723] = {.lex_state = 195, .external_lex_state = 8}, - [724] = {.lex_state = 195, .external_lex_state = 8}, - [725] = {.lex_state = 195, .external_lex_state = 8}, + [721] = {.lex_state = 60, .external_lex_state = 8}, + [722] = {.lex_state = 60, .external_lex_state = 8}, + [723] = {.lex_state = 60, .external_lex_state = 8}, + [724] = {.lex_state = 60, .external_lex_state = 8}, + [725] = {.lex_state = 60, .external_lex_state = 8}, [726] = {.lex_state = 60, .external_lex_state = 8}, - [727] = {.lex_state = 72, .external_lex_state = 9}, - [728] = {.lex_state = 72, .external_lex_state = 9}, - [729] = {.lex_state = 72, .external_lex_state = 9}, - [730] = {.lex_state = 72, .external_lex_state = 9}, - [731] = {.lex_state = 72, .external_lex_state = 9}, - [732] = {.lex_state = 72, .external_lex_state = 9}, - [733] = {.lex_state = 72, .external_lex_state = 9}, - [734] = {.lex_state = 195, .external_lex_state = 8}, - [735] = {.lex_state = 195, .external_lex_state = 8}, - [736] = {.lex_state = 195, .external_lex_state = 8}, - [737] = {.lex_state = 195, .external_lex_state = 8}, - [738] = {.lex_state = 72, .external_lex_state = 9}, - [739] = {.lex_state = 60, .external_lex_state = 6}, - [740] = {.lex_state = 72, .external_lex_state = 9}, - [741] = {.lex_state = 72, .external_lex_state = 9}, - [742] = {.lex_state = 72, .external_lex_state = 9}, - [743] = {.lex_state = 72, .external_lex_state = 9}, - [744] = {.lex_state = 72, .external_lex_state = 4}, - [745] = {.lex_state = 195, .external_lex_state = 8}, + [727] = {.lex_state = 60, .external_lex_state = 8}, + [728] = {.lex_state = 60, .external_lex_state = 8}, + [729] = {.lex_state = 60, .external_lex_state = 8}, + [730] = {.lex_state = 60, .external_lex_state = 8}, + [731] = {.lex_state = 60, .external_lex_state = 8}, + [732] = {.lex_state = 60, .external_lex_state = 8}, + [733] = {.lex_state = 60, .external_lex_state = 8}, + [734] = {.lex_state = 195, .external_lex_state = 6}, + [735] = {.lex_state = 195, .external_lex_state = 6}, + [736] = {.lex_state = 66, .external_lex_state = 6}, + [737] = {.lex_state = 60, .external_lex_state = 8}, + [738] = {.lex_state = 60, .external_lex_state = 8}, + [739] = {.lex_state = 60, .external_lex_state = 8}, + [740] = {.lex_state = 195, .external_lex_state = 8}, + [741] = {.lex_state = 60, .external_lex_state = 6}, + [742] = {.lex_state = 60, .external_lex_state = 8}, + [743] = {.lex_state = 60, .external_lex_state = 8}, + [744] = {.lex_state = 60, .external_lex_state = 8}, + [745] = {.lex_state = 60, .external_lex_state = 6}, [746] = {.lex_state = 195, .external_lex_state = 8}, - [747] = {.lex_state = 60, .external_lex_state = 8}, - [748] = {.lex_state = 72, .external_lex_state = 9}, + [747] = {.lex_state = 195, .external_lex_state = 8}, + [748] = {.lex_state = 195, .external_lex_state = 8}, [749] = {.lex_state = 72, .external_lex_state = 9}, [750] = {.lex_state = 197, .external_lex_state = 9}, [751] = {.lex_state = 197, .external_lex_state = 9}, [752] = {.lex_state = 193, .external_lex_state = 8}, - [753] = {.lex_state = 193, .external_lex_state = 8}, - [754] = {.lex_state = 193, .external_lex_state = 8}, - [755] = {.lex_state = 193, .external_lex_state = 8}, + [753] = {.lex_state = 193, .external_lex_state = 4}, + [754] = {.lex_state = 197, .external_lex_state = 4}, + [755] = {.lex_state = 195, .external_lex_state = 6}, [756] = {.lex_state = 193, .external_lex_state = 8}, - [757] = {.lex_state = 193, .external_lex_state = 8}, - [758] = {.lex_state = 195, .external_lex_state = 6}, + [757] = {.lex_state = 195, .external_lex_state = 6}, + [758] = {.lex_state = 193, .external_lex_state = 8}, [759] = {.lex_state = 193, .external_lex_state = 8}, [760] = {.lex_state = 193, .external_lex_state = 8}, - [761] = {.lex_state = 193, .external_lex_state = 4}, + [761] = {.lex_state = 193, .external_lex_state = 8}, [762] = {.lex_state = 193, .external_lex_state = 8}, - [763] = {.lex_state = 193, .external_lex_state = 8}, - [764] = {.lex_state = 197, .external_lex_state = 4}, + [763] = {.lex_state = 96, .external_lex_state = 2}, + [764] = {.lex_state = 193, .external_lex_state = 8}, [765] = {.lex_state = 193, .external_lex_state = 8}, [766] = {.lex_state = 193, .external_lex_state = 4}, - [767] = {.lex_state = 193, .external_lex_state = 8}, + [767] = {.lex_state = 195, .external_lex_state = 6}, [768] = {.lex_state = 193, .external_lex_state = 8}, - [769] = {.lex_state = 193, .external_lex_state = 8}, + [769] = {.lex_state = 193, .external_lex_state = 4}, [770] = {.lex_state = 193, .external_lex_state = 8}, - [771] = {.lex_state = 193, .external_lex_state = 8}, + [771] = {.lex_state = 96, .external_lex_state = 2}, [772] = {.lex_state = 193, .external_lex_state = 8}, [773] = {.lex_state = 193, .external_lex_state = 8}, - [774] = {.lex_state = 193, .external_lex_state = 8}, + [774] = {.lex_state = 193, .external_lex_state = 4}, [775] = {.lex_state = 193, .external_lex_state = 8}, - [776] = {.lex_state = 193, .external_lex_state = 8}, + [776] = {.lex_state = 60, .external_lex_state = 6}, [777] = {.lex_state = 193, .external_lex_state = 8}, - [778] = {.lex_state = 195, .external_lex_state = 6}, - [779] = {.lex_state = 193, .external_lex_state = 8}, - [780] = {.lex_state = 72, .external_lex_state = 4}, + [778] = {.lex_state = 193, .external_lex_state = 8}, + [779] = {.lex_state = 72, .external_lex_state = 4}, + [780] = {.lex_state = 193, .external_lex_state = 8}, [781] = {.lex_state = 193, .external_lex_state = 8}, - [782] = {.lex_state = 96, .external_lex_state = 2}, - [783] = {.lex_state = 195, .external_lex_state = 6}, - [784] = {.lex_state = 96, .external_lex_state = 2}, - [785] = {.lex_state = 193, .external_lex_state = 4}, - [786] = {.lex_state = 60, .external_lex_state = 6}, - [787] = {.lex_state = 193, .external_lex_state = 4}, + [782] = {.lex_state = 193, .external_lex_state = 8}, + [783] = {.lex_state = 193, .external_lex_state = 8}, + [784] = {.lex_state = 193, .external_lex_state = 8}, + [785] = {.lex_state = 193, .external_lex_state = 8}, + [786] = {.lex_state = 193, .external_lex_state = 8}, + [787] = {.lex_state = 193, .external_lex_state = 8}, [788] = {.lex_state = 193, .external_lex_state = 8}, [789] = {.lex_state = 193, .external_lex_state = 8}, [790] = {.lex_state = 193, .external_lex_state = 8}, - [791] = {.lex_state = 195, .external_lex_state = 6}, + [791] = {.lex_state = 193, .external_lex_state = 8}, [792] = {.lex_state = 193, .external_lex_state = 8}, - [793] = {.lex_state = 193, .external_lex_state = 6}, - [794] = {.lex_state = 193, .external_lex_state = 8}, + [793] = {.lex_state = 195, .external_lex_state = 6}, + [794] = {.lex_state = 193, .external_lex_state = 6}, [795] = {.lex_state = 193, .external_lex_state = 8}, [796] = {.lex_state = 193, .external_lex_state = 8}, - [797] = {.lex_state = 197, .external_lex_state = 4}, + [797] = {.lex_state = 193, .external_lex_state = 8}, [798] = {.lex_state = 193, .external_lex_state = 8}, - [799] = {.lex_state = 193, .external_lex_state = 8}, + [799] = {.lex_state = 197, .external_lex_state = 4}, [800] = {.lex_state = 193, .external_lex_state = 8}, - [801] = {.lex_state = 193, .external_lex_state = 6}, - [802] = {.lex_state = 197, .external_lex_state = 9}, + [801] = {.lex_state = 193, .external_lex_state = 8}, + [802] = {.lex_state = 193, .external_lex_state = 6}, [803] = {.lex_state = 197, .external_lex_state = 9}, [804] = {.lex_state = 197, .external_lex_state = 9}, - [805] = {.lex_state = 193, .external_lex_state = 4}, + [805] = {.lex_state = 197, .external_lex_state = 9}, [806] = {.lex_state = 193, .external_lex_state = 8}, - [807] = {.lex_state = 197, .external_lex_state = 9}, + [807] = {.lex_state = 193, .external_lex_state = 4}, [808] = {.lex_state = 197, .external_lex_state = 9}, [809] = {.lex_state = 197, .external_lex_state = 9}, [810] = {.lex_state = 197, .external_lex_state = 9}, - [811] = {.lex_state = 197, .external_lex_state = 9}, + [811] = {.lex_state = 193, .external_lex_state = 8}, [812] = {.lex_state = 197, .external_lex_state = 9}, - [813] = {.lex_state = 193, .external_lex_state = 8}, + [813] = {.lex_state = 197, .external_lex_state = 9}, [814] = {.lex_state = 197, .external_lex_state = 9}, - [815] = {.lex_state = 96, .external_lex_state = 2}, - [816] = {.lex_state = 195, .external_lex_state = 6}, - [817] = {.lex_state = 193, .external_lex_state = 6}, - [818] = {.lex_state = 96, .external_lex_state = 2}, - [819] = {.lex_state = 197, .external_lex_state = 9}, - [820] = {.lex_state = 197, .external_lex_state = 9}, + [815] = {.lex_state = 197, .external_lex_state = 9}, + [816] = {.lex_state = 96, .external_lex_state = 2}, + [817] = {.lex_state = 195, .external_lex_state = 6}, + [818] = {.lex_state = 197, .external_lex_state = 9}, + [819] = {.lex_state = 96, .external_lex_state = 2}, + [820] = {.lex_state = 193, .external_lex_state = 6}, [821] = {.lex_state = 197, .external_lex_state = 9}, [822] = {.lex_state = 197, .external_lex_state = 9}, [823] = {.lex_state = 197, .external_lex_state = 9}, [824] = {.lex_state = 197, .external_lex_state = 9}, [825] = {.lex_state = 197, .external_lex_state = 9}, [826] = {.lex_state = 197, .external_lex_state = 9}, - [827] = {.lex_state = 186, .external_lex_state = 6}, - [828] = {.lex_state = 197, .external_lex_state = 9}, + [827] = {.lex_state = 197, .external_lex_state = 9}, + [828] = {.lex_state = 186, .external_lex_state = 6}, [829] = {.lex_state = 197, .external_lex_state = 9}, - [830] = {.lex_state = 197, .external_lex_state = 9}, + [830] = {.lex_state = 195, .external_lex_state = 6}, [831] = {.lex_state = 96, .external_lex_state = 2}, - [832] = {.lex_state = 195, .external_lex_state = 6}, + [832] = {.lex_state = 197, .external_lex_state = 9}, [833] = {.lex_state = 197, .external_lex_state = 9}, - [834] = {.lex_state = 195, .external_lex_state = 6}, + [834] = {.lex_state = 197, .external_lex_state = 9}, [835] = {.lex_state = 197, .external_lex_state = 9}, - [836] = {.lex_state = 197, .external_lex_state = 9}, - [837] = {.lex_state = 193, .external_lex_state = 4}, + [836] = {.lex_state = 195, .external_lex_state = 6}, + [837] = {.lex_state = 197, .external_lex_state = 9}, [838] = {.lex_state = 197, .external_lex_state = 9}, - [839] = {.lex_state = 195, .external_lex_state = 6}, + [839] = {.lex_state = 193, .external_lex_state = 4}, [840] = {.lex_state = 197, .external_lex_state = 9}, - [841] = {.lex_state = 197, .external_lex_state = 9}, + [841] = {.lex_state = 195, .external_lex_state = 6}, [842] = {.lex_state = 197, .external_lex_state = 9}, [843] = {.lex_state = 197, .external_lex_state = 9}, [844] = {.lex_state = 197, .external_lex_state = 9}, [845] = {.lex_state = 197, .external_lex_state = 9}, - [846] = {.lex_state = 193, .external_lex_state = 8}, + [846] = {.lex_state = 197, .external_lex_state = 9}, [847] = {.lex_state = 197, .external_lex_state = 9}, - [848] = {.lex_state = 193, .external_lex_state = 4}, + [848] = {.lex_state = 197, .external_lex_state = 4}, [849] = {.lex_state = 197, .external_lex_state = 9}, - [850] = {.lex_state = 72, .external_lex_state = 4}, - [851] = {.lex_state = 197, .external_lex_state = 9}, + [850] = {.lex_state = 193, .external_lex_state = 4}, + [851] = {.lex_state = 72, .external_lex_state = 4}, [852] = {.lex_state = 197, .external_lex_state = 9}, [853] = {.lex_state = 197, .external_lex_state = 9}, - [854] = {.lex_state = 193, .external_lex_state = 8}, + [854] = {.lex_state = 197, .external_lex_state = 9}, [855] = {.lex_state = 193, .external_lex_state = 8}, - [856] = {.lex_state = 72, .external_lex_state = 4}, - [857] = {.lex_state = 193, .external_lex_state = 8}, + [856] = {.lex_state = 193, .external_lex_state = 8}, + [857] = {.lex_state = 72, .external_lex_state = 4}, [858] = {.lex_state = 197, .external_lex_state = 9}, [859] = {.lex_state = 197, .external_lex_state = 9}, [860] = {.lex_state = 197, .external_lex_state = 9}, [861] = {.lex_state = 197, .external_lex_state = 9}, - [862] = {.lex_state = 197, .external_lex_state = 4}, - [863] = {.lex_state = 193, .external_lex_state = 8}, - [864] = {.lex_state = 197, .external_lex_state = 9}, + [862] = {.lex_state = 197, .external_lex_state = 9}, + [863] = {.lex_state = 197, .external_lex_state = 9}, + [864] = {.lex_state = 197, .external_lex_state = 4}, [865] = {.lex_state = 197, .external_lex_state = 9}, [866] = {.lex_state = 197, .external_lex_state = 9}, [867] = {.lex_state = 197, .external_lex_state = 9}, - [868] = {.lex_state = 197, .external_lex_state = 9}, - [869] = {.lex_state = 197, .external_lex_state = 9}, - [870] = {.lex_state = 72, .external_lex_state = 4}, - [871] = {.lex_state = 193, .external_lex_state = 6}, - [872] = {.lex_state = 193, .external_lex_state = 8}, - [873] = {.lex_state = 197, .external_lex_state = 4}, + [868] = {.lex_state = 72, .external_lex_state = 4}, + [869] = {.lex_state = 193, .external_lex_state = 8}, + [870] = {.lex_state = 193, .external_lex_state = 6}, + [871] = {.lex_state = 193, .external_lex_state = 8}, + [872] = {.lex_state = 197, .external_lex_state = 9}, + [873] = {.lex_state = 197, .external_lex_state = 9}, [874] = {.lex_state = 197, .external_lex_state = 9}, [875] = {.lex_state = 197, .external_lex_state = 9}, [876] = {.lex_state = 197, .external_lex_state = 9}, - [877] = {.lex_state = 197, .external_lex_state = 9}, + [877] = {.lex_state = 193, .external_lex_state = 8}, [878] = {.lex_state = 193, .external_lex_state = 8}, [879] = {.lex_state = 193, .external_lex_state = 8}, [880] = {.lex_state = 193, .external_lex_state = 8}, @@ -6575,1518 +6601,1518 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [883] = {.lex_state = 193, .external_lex_state = 8}, [884] = {.lex_state = 193, .external_lex_state = 8}, [885] = {.lex_state = 193, .external_lex_state = 8}, - [886] = {.lex_state = 193, .external_lex_state = 4}, + [886] = {.lex_state = 193, .external_lex_state = 8}, [887] = {.lex_state = 193, .external_lex_state = 8}, - [888] = {.lex_state = 193, .external_lex_state = 8}, - [889] = {.lex_state = 197, .external_lex_state = 4}, - [890] = {.lex_state = 197, .external_lex_state = 4}, - [891] = {.lex_state = 193, .external_lex_state = 6}, - [892] = {.lex_state = 197, .external_lex_state = 4}, + [888] = {.lex_state = 193, .external_lex_state = 4}, + [889] = {.lex_state = 33, .external_lex_state = 10}, + [890] = {.lex_state = 193, .external_lex_state = 6}, + [891] = {.lex_state = 197, .external_lex_state = 4}, + [892] = {.lex_state = 193, .external_lex_state = 6}, [893] = {.lex_state = 197, .external_lex_state = 4}, [894] = {.lex_state = 197, .external_lex_state = 4}, - [895] = {.lex_state = 33, .external_lex_state = 10}, + [895] = {.lex_state = 197, .external_lex_state = 4}, [896] = {.lex_state = 197, .external_lex_state = 4}, [897] = {.lex_state = 197, .external_lex_state = 4}, [898] = {.lex_state = 197, .external_lex_state = 4}, - [899] = {.lex_state = 193, .external_lex_state = 6}, + [899] = {.lex_state = 197, .external_lex_state = 4}, [900] = {.lex_state = 36, .external_lex_state = 10}, - [901] = {.lex_state = 89}, + [901] = {.lex_state = 36, .external_lex_state = 10}, [902] = {.lex_state = 36, .external_lex_state = 10}, [903] = {.lex_state = 36, .external_lex_state = 10}, - [904] = {.lex_state = 78, .external_lex_state = 2}, + [904] = {.lex_state = 89}, [905] = {.lex_state = 36, .external_lex_state = 10}, [906] = {.lex_state = 36, .external_lex_state = 10}, [907] = {.lex_state = 36, .external_lex_state = 10}, - [908] = {.lex_state = 36, .external_lex_state = 10}, + [908] = {.lex_state = 78, .external_lex_state = 2}, [909] = {.lex_state = 36, .external_lex_state = 10}, [910] = {.lex_state = 36, .external_lex_state = 10}, - [911] = {.lex_state = 88}, - [912] = {.lex_state = 88, .external_lex_state = 11}, + [911] = {.lex_state = 88, .external_lex_state = 11}, + [912] = {.lex_state = 88}, [913] = {.lex_state = 84}, - [914] = {.lex_state = 94, .external_lex_state = 12}, - [915] = {.lex_state = 94, .external_lex_state = 12}, - [916] = {.lex_state = 93, .external_lex_state = 13}, - [917] = {.lex_state = 94, .external_lex_state = 12}, - [918] = {.lex_state = 93, .external_lex_state = 13}, - [919] = {.lex_state = 93, .external_lex_state = 13}, - [920] = {.lex_state = 93, .external_lex_state = 13}, - [921] = {.lex_state = 93, .external_lex_state = 13}, - [922] = {.lex_state = 94, .external_lex_state = 12}, - [923] = {.lex_state = 93, .external_lex_state = 13}, - [924] = {.lex_state = 94, .external_lex_state = 12}, - [925] = {.lex_state = 93, .external_lex_state = 13}, - [926] = {.lex_state = 94, .external_lex_state = 12}, - [927] = {.lex_state = 94, .external_lex_state = 12}, - [928] = {.lex_state = 93, .external_lex_state = 13}, - [929] = {.lex_state = 94, .external_lex_state = 12}, - [930] = {.lex_state = 94, .external_lex_state = 12}, - [931] = {.lex_state = 94, .external_lex_state = 12}, - [932] = {.lex_state = 94, .external_lex_state = 12}, - [933] = {.lex_state = 93, .external_lex_state = 13}, - [934] = {.lex_state = 94, .external_lex_state = 12}, - [935] = {.lex_state = 93, .external_lex_state = 13}, - [936] = {.lex_state = 84}, - [937] = {.lex_state = 93, .external_lex_state = 13}, - [938] = {.lex_state = 94, .external_lex_state = 12}, - [939] = {.lex_state = 93, .external_lex_state = 13}, - [940] = {.lex_state = 93, .external_lex_state = 13}, - [941] = {.lex_state = 84, .external_lex_state = 14}, - [942] = {.lex_state = 93, .external_lex_state = 13}, - [943] = {.lex_state = 93, .external_lex_state = 13}, - [944] = {.lex_state = 93, .external_lex_state = 13}, - [945] = {.lex_state = 93, .external_lex_state = 13}, - [946] = {.lex_state = 93, .external_lex_state = 13}, - [947] = {.lex_state = 94, .external_lex_state = 12}, - [948] = {.lex_state = 94, .external_lex_state = 12}, - [949] = {.lex_state = 94, .external_lex_state = 12}, - [950] = {.lex_state = 94, .external_lex_state = 12}, - [951] = {.lex_state = 94, .external_lex_state = 12}, - [952] = {.lex_state = 94, .external_lex_state = 12}, - [953] = {.lex_state = 94, .external_lex_state = 12}, - [954] = {.lex_state = 94, .external_lex_state = 12}, - [955] = {.lex_state = 93, .external_lex_state = 13}, - [956] = {.lex_state = 93, .external_lex_state = 13}, - [957] = {.lex_state = 93, .external_lex_state = 13}, - [958] = {.lex_state = 93, .external_lex_state = 13}, - [959] = {.lex_state = 93, .external_lex_state = 13}, - [960] = {.lex_state = 93, .external_lex_state = 13}, - [961] = {.lex_state = 94, .external_lex_state = 12}, - [962] = {.lex_state = 93, .external_lex_state = 13}, - [963] = {.lex_state = 93, .external_lex_state = 13}, - [964] = {.lex_state = 94, .external_lex_state = 12}, - [965] = {.lex_state = 94, .external_lex_state = 12}, - [966] = {.lex_state = 94, .external_lex_state = 12}, - [967] = {.lex_state = 93, .external_lex_state = 13}, - [968] = {.lex_state = 93, .external_lex_state = 13}, - [969] = {.lex_state = 94, .external_lex_state = 12}, - [970] = {.lex_state = 94, .external_lex_state = 12}, - [971] = {.lex_state = 94, .external_lex_state = 12}, - [972] = {.lex_state = 93, .external_lex_state = 13}, - [973] = {.lex_state = 93, .external_lex_state = 13}, - [974] = {.lex_state = 93, .external_lex_state = 13}, - [975] = {.lex_state = 93, .external_lex_state = 13}, - [976] = {.lex_state = 93, .external_lex_state = 13}, - [977] = {.lex_state = 93, .external_lex_state = 13}, - [978] = {.lex_state = 94, .external_lex_state = 12}, - [979] = {.lex_state = 94, .external_lex_state = 12}, - [980] = {.lex_state = 94, .external_lex_state = 12}, - [981] = {.lex_state = 94, .external_lex_state = 12}, - [982] = {.lex_state = 94, .external_lex_state = 12}, - [983] = {.lex_state = 94, .external_lex_state = 12}, - [984] = {.lex_state = 93, .external_lex_state = 13}, - [985] = {.lex_state = 93, .external_lex_state = 13}, - [986] = {.lex_state = 93, .external_lex_state = 13}, - [987] = {.lex_state = 93, .external_lex_state = 13}, - [988] = {.lex_state = 94, .external_lex_state = 12}, - [989] = {.lex_state = 94, .external_lex_state = 12}, - [990] = {.lex_state = 94, .external_lex_state = 12}, - [991] = {.lex_state = 94, .external_lex_state = 12}, - [992] = {.lex_state = 94, .external_lex_state = 12}, + [914] = {.lex_state = 93, .external_lex_state = 12}, + [915] = {.lex_state = 94, .external_lex_state = 13}, + [916] = {.lex_state = 93, .external_lex_state = 12}, + [917] = {.lex_state = 94, .external_lex_state = 13}, + [918] = {.lex_state = 93, .external_lex_state = 12}, + [919] = {.lex_state = 93, .external_lex_state = 12}, + [920] = {.lex_state = 93, .external_lex_state = 12}, + [921] = {.lex_state = 93, .external_lex_state = 12}, + [922] = {.lex_state = 93, .external_lex_state = 12}, + [923] = {.lex_state = 94, .external_lex_state = 13}, + [924] = {.lex_state = 93, .external_lex_state = 12}, + [925] = {.lex_state = 93, .external_lex_state = 12}, + [926] = {.lex_state = 93, .external_lex_state = 12}, + [927] = {.lex_state = 94, .external_lex_state = 13}, + [928] = {.lex_state = 94, .external_lex_state = 13}, + [929] = {.lex_state = 94, .external_lex_state = 13}, + [930] = {.lex_state = 94, .external_lex_state = 13}, + [931] = {.lex_state = 94, .external_lex_state = 13}, + [932] = {.lex_state = 94, .external_lex_state = 13}, + [933] = {.lex_state = 94, .external_lex_state = 13}, + [934] = {.lex_state = 84}, + [935] = {.lex_state = 93, .external_lex_state = 12}, + [936] = {.lex_state = 93, .external_lex_state = 12}, + [937] = {.lex_state = 94, .external_lex_state = 13}, + [938] = {.lex_state = 93, .external_lex_state = 12}, + [939] = {.lex_state = 94, .external_lex_state = 13}, + [940] = {.lex_state = 93, .external_lex_state = 12}, + [941] = {.lex_state = 93, .external_lex_state = 12}, + [942] = {.lex_state = 93, .external_lex_state = 12}, + [943] = {.lex_state = 93, .external_lex_state = 12}, + [944] = {.lex_state = 93, .external_lex_state = 12}, + [945] = {.lex_state = 93, .external_lex_state = 12}, + [946] = {.lex_state = 93, .external_lex_state = 12}, + [947] = {.lex_state = 93, .external_lex_state = 12}, + [948] = {.lex_state = 94, .external_lex_state = 13}, + [949] = {.lex_state = 94, .external_lex_state = 13}, + [950] = {.lex_state = 94, .external_lex_state = 13}, + [951] = {.lex_state = 94, .external_lex_state = 13}, + [952] = {.lex_state = 94, .external_lex_state = 13}, + [953] = {.lex_state = 94, .external_lex_state = 13}, + [954] = {.lex_state = 94, .external_lex_state = 13}, + [955] = {.lex_state = 94, .external_lex_state = 13}, + [956] = {.lex_state = 93, .external_lex_state = 12}, + [957] = {.lex_state = 93, .external_lex_state = 12}, + [958] = {.lex_state = 93, .external_lex_state = 12}, + [959] = {.lex_state = 93, .external_lex_state = 12}, + [960] = {.lex_state = 93, .external_lex_state = 12}, + [961] = {.lex_state = 93, .external_lex_state = 12}, + [962] = {.lex_state = 94, .external_lex_state = 13}, + [963] = {.lex_state = 94, .external_lex_state = 13}, + [964] = {.lex_state = 93, .external_lex_state = 12}, + [965] = {.lex_state = 94, .external_lex_state = 13}, + [966] = {.lex_state = 94, .external_lex_state = 13}, + [967] = {.lex_state = 94, .external_lex_state = 13}, + [968] = {.lex_state = 93, .external_lex_state = 12}, + [969] = {.lex_state = 94, .external_lex_state = 13}, + [970] = {.lex_state = 93, .external_lex_state = 12}, + [971] = {.lex_state = 94, .external_lex_state = 13}, + [972] = {.lex_state = 94, .external_lex_state = 13}, + [973] = {.lex_state = 94, .external_lex_state = 13}, + [974] = {.lex_state = 93, .external_lex_state = 12}, + [975] = {.lex_state = 93, .external_lex_state = 12}, + [976] = {.lex_state = 93, .external_lex_state = 12}, + [977] = {.lex_state = 93, .external_lex_state = 12}, + [978] = {.lex_state = 93, .external_lex_state = 12}, + [979] = {.lex_state = 94, .external_lex_state = 13}, + [980] = {.lex_state = 94, .external_lex_state = 13}, + [981] = {.lex_state = 94, .external_lex_state = 13}, + [982] = {.lex_state = 94, .external_lex_state = 13}, + [983] = {.lex_state = 94, .external_lex_state = 13}, + [984] = {.lex_state = 93, .external_lex_state = 12}, + [985] = {.lex_state = 93, .external_lex_state = 12}, + [986] = {.lex_state = 93, .external_lex_state = 12}, + [987] = {.lex_state = 94, .external_lex_state = 13}, + [988] = {.lex_state = 94, .external_lex_state = 13}, + [989] = {.lex_state = 94, .external_lex_state = 13}, + [990] = {.lex_state = 94, .external_lex_state = 13}, + [991] = {.lex_state = 84}, + [992] = {.lex_state = 93, .external_lex_state = 12}, [993] = {.lex_state = 84}, [994] = {.lex_state = 84}, - [995] = {.lex_state = 94, .external_lex_state = 12}, - [996] = {.lex_state = 84}, - [997] = {.lex_state = 94, .external_lex_state = 12}, - [998] = {.lex_state = 94, .external_lex_state = 12}, - [999] = {.lex_state = 94, .external_lex_state = 12}, - [1000] = {.lex_state = 94, .external_lex_state = 12}, - [1001] = {.lex_state = 94, .external_lex_state = 12}, - [1002] = {.lex_state = 84}, - [1003] = {.lex_state = 94, .external_lex_state = 12}, - [1004] = {.lex_state = 94, .external_lex_state = 12}, - [1005] = {.lex_state = 93, .external_lex_state = 13}, - [1006] = {.lex_state = 93, .external_lex_state = 13}, - [1007] = {.lex_state = 93, .external_lex_state = 13}, - [1008] = {.lex_state = 94, .external_lex_state = 12}, - [1009] = {.lex_state = 93, .external_lex_state = 13}, - [1010] = {.lex_state = 94, .external_lex_state = 12}, - [1011] = {.lex_state = 94, .external_lex_state = 12}, - [1012] = {.lex_state = 93, .external_lex_state = 13}, - [1013] = {.lex_state = 93, .external_lex_state = 13}, - [1014] = {.lex_state = 84}, - [1015] = {.lex_state = 93, .external_lex_state = 13}, + [995] = {.lex_state = 93, .external_lex_state = 12}, + [996] = {.lex_state = 94, .external_lex_state = 13}, + [997] = {.lex_state = 84}, + [998] = {.lex_state = 94, .external_lex_state = 13}, + [999] = {.lex_state = 94, .external_lex_state = 13}, + [1000] = {.lex_state = 94, .external_lex_state = 13}, + [1001] = {.lex_state = 94, .external_lex_state = 13}, + [1002] = {.lex_state = 94, .external_lex_state = 13}, + [1003] = {.lex_state = 94, .external_lex_state = 13}, + [1004] = {.lex_state = 94, .external_lex_state = 13}, + [1005] = {.lex_state = 94, .external_lex_state = 13}, + [1006] = {.lex_state = 93, .external_lex_state = 12}, + [1007] = {.lex_state = 93, .external_lex_state = 12}, + [1008] = {.lex_state = 94, .external_lex_state = 13}, + [1009] = {.lex_state = 94, .external_lex_state = 13}, + [1010] = {.lex_state = 93, .external_lex_state = 12}, + [1011] = {.lex_state = 93, .external_lex_state = 12}, + [1012] = {.lex_state = 93, .external_lex_state = 12}, + [1013] = {.lex_state = 93, .external_lex_state = 12}, + [1014] = {.lex_state = 93, .external_lex_state = 12}, + [1015] = {.lex_state = 93, .external_lex_state = 12}, [1016] = {.lex_state = 84}, - [1017] = {.lex_state = 94, .external_lex_state = 12}, + [1017] = {.lex_state = 84}, [1018] = {.lex_state = 84}, - [1019] = {.lex_state = 84}, - [1020] = {.lex_state = 94, .external_lex_state = 12}, - [1021] = {.lex_state = 94, .external_lex_state = 12}, - [1022] = {.lex_state = 94, .external_lex_state = 12}, - [1023] = {.lex_state = 84}, - [1024] = {.lex_state = 94, .external_lex_state = 12}, - [1025] = {.lex_state = 93, .external_lex_state = 13}, - [1026] = {.lex_state = 93, .external_lex_state = 13}, - [1027] = {.lex_state = 93, .external_lex_state = 13}, - [1028] = {.lex_state = 93, .external_lex_state = 13}, - [1029] = {.lex_state = 93, .external_lex_state = 13}, - [1030] = {.lex_state = 93, .external_lex_state = 13}, - [1031] = {.lex_state = 94, .external_lex_state = 12}, - [1032] = {.lex_state = 94, .external_lex_state = 12}, - [1033] = {.lex_state = 94, .external_lex_state = 12}, - [1034] = {.lex_state = 93, .external_lex_state = 13}, - [1035] = {.lex_state = 94, .external_lex_state = 12}, - [1036] = {.lex_state = 94, .external_lex_state = 12}, - [1037] = {.lex_state = 94, .external_lex_state = 12}, - [1038] = {.lex_state = 94, .external_lex_state = 12}, - [1039] = {.lex_state = 94, .external_lex_state = 12}, - [1040] = {.lex_state = 93, .external_lex_state = 13}, - [1041] = {.lex_state = 94, .external_lex_state = 12}, - [1042] = {.lex_state = 93, .external_lex_state = 13}, - [1043] = {.lex_state = 94, .external_lex_state = 12}, - [1044] = {.lex_state = 94, .external_lex_state = 12}, - [1045] = {.lex_state = 93, .external_lex_state = 13}, - [1046] = {.lex_state = 93, .external_lex_state = 13}, - [1047] = {.lex_state = 93, .external_lex_state = 13}, - [1048] = {.lex_state = 94, .external_lex_state = 12}, - [1049] = {.lex_state = 93, .external_lex_state = 13}, - [1050] = {.lex_state = 94, .external_lex_state = 12}, - [1051] = {.lex_state = 94, .external_lex_state = 12}, - [1052] = {.lex_state = 93, .external_lex_state = 13}, - [1053] = {.lex_state = 93, .external_lex_state = 13}, - [1054] = {.lex_state = 93, .external_lex_state = 13}, - [1055] = {.lex_state = 94, .external_lex_state = 12}, - [1056] = {.lex_state = 93, .external_lex_state = 13}, - [1057] = {.lex_state = 93, .external_lex_state = 13}, - [1058] = {.lex_state = 94, .external_lex_state = 12}, - [1059] = {.lex_state = 93, .external_lex_state = 13}, - [1060] = {.lex_state = 93, .external_lex_state = 13}, - [1061] = {.lex_state = 93, .external_lex_state = 13}, - [1062] = {.lex_state = 93, .external_lex_state = 13}, - [1063] = {.lex_state = 93, .external_lex_state = 13}, - [1064] = {.lex_state = 93, .external_lex_state = 13}, - [1065] = {.lex_state = 93, .external_lex_state = 13}, - [1066] = {.lex_state = 94, .external_lex_state = 12}, - [1067] = {.lex_state = 94, .external_lex_state = 12}, - [1068] = {.lex_state = 94, .external_lex_state = 12}, - [1069] = {.lex_state = 94, .external_lex_state = 12}, - [1070] = {.lex_state = 93, .external_lex_state = 13}, - [1071] = {.lex_state = 93, .external_lex_state = 13}, - [1072] = {.lex_state = 94, .external_lex_state = 12}, - [1073] = {.lex_state = 93, .external_lex_state = 13}, - [1074] = {.lex_state = 93, .external_lex_state = 13}, - [1075] = {.lex_state = 93, .external_lex_state = 13}, - [1076] = {.lex_state = 93, .external_lex_state = 13}, - [1077] = {.lex_state = 94, .external_lex_state = 12}, - [1078] = {.lex_state = 93, .external_lex_state = 13}, - [1079] = {.lex_state = 93, .external_lex_state = 13}, - [1080] = {.lex_state = 94, .external_lex_state = 12}, - [1081] = {.lex_state = 94, .external_lex_state = 12}, - [1082] = {.lex_state = 94, .external_lex_state = 12}, - [1083] = {.lex_state = 94, .external_lex_state = 12}, - [1084] = {.lex_state = 94, .external_lex_state = 12}, - [1085] = {.lex_state = 93, .external_lex_state = 13}, - [1086] = {.lex_state = 93, .external_lex_state = 13}, - [1087] = {.lex_state = 93, .external_lex_state = 13}, - [1088] = {.lex_state = 93, .external_lex_state = 13}, - [1089] = {.lex_state = 94, .external_lex_state = 12}, - [1090] = {.lex_state = 93, .external_lex_state = 13}, - [1091] = {.lex_state = 93, .external_lex_state = 13}, - [1092] = {.lex_state = 93, .external_lex_state = 13}, - [1093] = {.lex_state = 94, .external_lex_state = 12}, - [1094] = {.lex_state = 94, .external_lex_state = 12}, - [1095] = {.lex_state = 94, .external_lex_state = 12}, - [1096] = {.lex_state = 84, .external_lex_state = 14}, - [1097] = {.lex_state = 94, .external_lex_state = 12}, - [1098] = {.lex_state = 93, .external_lex_state = 13}, - [1099] = {.lex_state = 93, .external_lex_state = 13}, - [1100] = {.lex_state = 84, .external_lex_state = 14}, - [1101] = {.lex_state = 84}, - [1102] = {.lex_state = 94, .external_lex_state = 12}, - [1103] = {.lex_state = 93, .external_lex_state = 13}, - [1104] = {.lex_state = 94, .external_lex_state = 12}, - [1105] = {.lex_state = 94, .external_lex_state = 12}, - [1106] = {.lex_state = 93, .external_lex_state = 13}, - [1107] = {.lex_state = 94, .external_lex_state = 12}, - [1108] = {.lex_state = 94, .external_lex_state = 12}, - [1109] = {.lex_state = 94, .external_lex_state = 12}, - [1110] = {.lex_state = 93, .external_lex_state = 13}, - [1111] = {.lex_state = 93, .external_lex_state = 13}, - [1112] = {.lex_state = 94, .external_lex_state = 12}, - [1113] = {.lex_state = 93, .external_lex_state = 13}, - [1114] = {.lex_state = 94, .external_lex_state = 12}, - [1115] = {.lex_state = 93, .external_lex_state = 13}, - [1116] = {.lex_state = 94, .external_lex_state = 12}, - [1117] = {.lex_state = 94, .external_lex_state = 12}, - [1118] = {.lex_state = 94, .external_lex_state = 12}, - [1119] = {.lex_state = 94, .external_lex_state = 12}, - [1120] = {.lex_state = 93, .external_lex_state = 13}, - [1121] = {.lex_state = 94, .external_lex_state = 12}, - [1122] = {.lex_state = 93, .external_lex_state = 13}, - [1123] = {.lex_state = 93, .external_lex_state = 13}, - [1124] = {.lex_state = 94, .external_lex_state = 12}, - [1125] = {.lex_state = 94, .external_lex_state = 12}, - [1126] = {.lex_state = 93, .external_lex_state = 13}, - [1127] = {.lex_state = 93, .external_lex_state = 13}, - [1128] = {.lex_state = 94, .external_lex_state = 12}, - [1129] = {.lex_state = 94, .external_lex_state = 12}, - [1130] = {.lex_state = 94, .external_lex_state = 12}, - [1131] = {.lex_state = 94, .external_lex_state = 12}, - [1132] = {.lex_state = 93, .external_lex_state = 13}, - [1133] = {.lex_state = 93, .external_lex_state = 13}, - [1134] = {.lex_state = 93, .external_lex_state = 13}, - [1135] = {.lex_state = 93, .external_lex_state = 13}, - [1136] = {.lex_state = 93, .external_lex_state = 13}, - [1137] = {.lex_state = 93, .external_lex_state = 13}, - [1138] = {.lex_state = 84, .external_lex_state = 14}, - [1139] = {.lex_state = 94, .external_lex_state = 12}, - [1140] = {.lex_state = 93, .external_lex_state = 13}, - [1141] = {.lex_state = 93, .external_lex_state = 13}, - [1142] = {.lex_state = 93, .external_lex_state = 13}, - [1143] = {.lex_state = 93, .external_lex_state = 13}, - [1144] = {.lex_state = 93, .external_lex_state = 13}, - [1145] = {.lex_state = 94, .external_lex_state = 12}, - [1146] = {.lex_state = 94, .external_lex_state = 12}, - [1147] = {.lex_state = 94, .external_lex_state = 12}, - [1148] = {.lex_state = 94, .external_lex_state = 12}, - [1149] = {.lex_state = 93, .external_lex_state = 13}, - [1150] = {.lex_state = 94, .external_lex_state = 12}, - [1151] = {.lex_state = 94, .external_lex_state = 12}, - [1152] = {.lex_state = 93, .external_lex_state = 13}, - [1153] = {.lex_state = 93, .external_lex_state = 13}, - [1154] = {.lex_state = 93, .external_lex_state = 13}, - [1155] = {.lex_state = 94, .external_lex_state = 12}, - [1156] = {.lex_state = 94, .external_lex_state = 12}, - [1157] = {.lex_state = 84, .external_lex_state = 14}, - [1158] = {.lex_state = 93, .external_lex_state = 13}, - [1159] = {.lex_state = 93, .external_lex_state = 13}, - [1160] = {.lex_state = 93, .external_lex_state = 13}, - [1161] = {.lex_state = 94, .external_lex_state = 12}, - [1162] = {.lex_state = 94, .external_lex_state = 12}, - [1163] = {.lex_state = 93, .external_lex_state = 13}, - [1164] = {.lex_state = 94, .external_lex_state = 12}, - [1165] = {.lex_state = 94, .external_lex_state = 12}, - [1166] = {.lex_state = 94, .external_lex_state = 12}, - [1167] = {.lex_state = 94, .external_lex_state = 12}, - [1168] = {.lex_state = 93, .external_lex_state = 13}, - [1169] = {.lex_state = 94, .external_lex_state = 12}, - [1170] = {.lex_state = 93, .external_lex_state = 13}, - [1171] = {.lex_state = 93, .external_lex_state = 13}, - [1172] = {.lex_state = 93, .external_lex_state = 13}, - [1173] = {.lex_state = 93, .external_lex_state = 13}, - [1174] = {.lex_state = 93, .external_lex_state = 13}, - [1175] = {.lex_state = 94, .external_lex_state = 12}, - [1176] = {.lex_state = 94, .external_lex_state = 12}, - [1177] = {.lex_state = 93, .external_lex_state = 13}, - [1178] = {.lex_state = 94, .external_lex_state = 13}, - [1179] = {.lex_state = 94, .external_lex_state = 13}, - [1180] = {.lex_state = 94, .external_lex_state = 13}, - [1181] = {.lex_state = 94, .external_lex_state = 13}, - [1182] = {.lex_state = 94, .external_lex_state = 13}, - [1183] = {.lex_state = 94, .external_lex_state = 13}, - [1184] = {.lex_state = 94, .external_lex_state = 13}, - [1185] = {.lex_state = 94, .external_lex_state = 13}, - [1186] = {.lex_state = 94, .external_lex_state = 13}, - [1187] = {.lex_state = 94, .external_lex_state = 13}, - [1188] = {.lex_state = 94, .external_lex_state = 13}, - [1189] = {.lex_state = 94, .external_lex_state = 13}, - [1190] = {.lex_state = 94, .external_lex_state = 13}, - [1191] = {.lex_state = 94, .external_lex_state = 13}, - [1192] = {.lex_state = 94, .external_lex_state = 13}, - [1193] = {.lex_state = 94, .external_lex_state = 13}, - [1194] = {.lex_state = 94, .external_lex_state = 13}, - [1195] = {.lex_state = 94, .external_lex_state = 13}, + [1019] = {.lex_state = 94, .external_lex_state = 13}, + [1020] = {.lex_state = 93, .external_lex_state = 12}, + [1021] = {.lex_state = 84}, + [1022] = {.lex_state = 94, .external_lex_state = 13}, + [1023] = {.lex_state = 94, .external_lex_state = 13}, + [1024] = {.lex_state = 84}, + [1025] = {.lex_state = 94, .external_lex_state = 13}, + [1026] = {.lex_state = 93, .external_lex_state = 12}, + [1027] = {.lex_state = 93, .external_lex_state = 12}, + [1028] = {.lex_state = 93, .external_lex_state = 12}, + [1029] = {.lex_state = 93, .external_lex_state = 12}, + [1030] = {.lex_state = 93, .external_lex_state = 12}, + [1031] = {.lex_state = 93, .external_lex_state = 12}, + [1032] = {.lex_state = 94, .external_lex_state = 13}, + [1033] = {.lex_state = 94, .external_lex_state = 13}, + [1034] = {.lex_state = 94, .external_lex_state = 13}, + [1035] = {.lex_state = 93, .external_lex_state = 12}, + [1036] = {.lex_state = 94, .external_lex_state = 13}, + [1037] = {.lex_state = 94, .external_lex_state = 13}, + [1038] = {.lex_state = 94, .external_lex_state = 13}, + [1039] = {.lex_state = 94, .external_lex_state = 13}, + [1040] = {.lex_state = 94, .external_lex_state = 13}, + [1041] = {.lex_state = 84, .external_lex_state = 14}, + [1042] = {.lex_state = 94, .external_lex_state = 13}, + [1043] = {.lex_state = 93, .external_lex_state = 12}, + [1044] = {.lex_state = 94, .external_lex_state = 13}, + [1045] = {.lex_state = 94, .external_lex_state = 13}, + [1046] = {.lex_state = 93, .external_lex_state = 12}, + [1047] = {.lex_state = 94, .external_lex_state = 13}, + [1048] = {.lex_state = 94, .external_lex_state = 13}, + [1049] = {.lex_state = 93, .external_lex_state = 12}, + [1050] = {.lex_state = 94, .external_lex_state = 13}, + [1051] = {.lex_state = 94, .external_lex_state = 13}, + [1052] = {.lex_state = 93, .external_lex_state = 12}, + [1053] = {.lex_state = 94, .external_lex_state = 13}, + [1054] = {.lex_state = 93, .external_lex_state = 12}, + [1055] = {.lex_state = 93, .external_lex_state = 12}, + [1056] = {.lex_state = 94, .external_lex_state = 13}, + [1057] = {.lex_state = 94, .external_lex_state = 13}, + [1058] = {.lex_state = 93, .external_lex_state = 12}, + [1059] = {.lex_state = 93, .external_lex_state = 12}, + [1060] = {.lex_state = 93, .external_lex_state = 12}, + [1061] = {.lex_state = 93, .external_lex_state = 12}, + [1062] = {.lex_state = 93, .external_lex_state = 12}, + [1063] = {.lex_state = 93, .external_lex_state = 12}, + [1064] = {.lex_state = 93, .external_lex_state = 12}, + [1065] = {.lex_state = 93, .external_lex_state = 12}, + [1066] = {.lex_state = 94, .external_lex_state = 13}, + [1067] = {.lex_state = 94, .external_lex_state = 13}, + [1068] = {.lex_state = 94, .external_lex_state = 13}, + [1069] = {.lex_state = 94, .external_lex_state = 13}, + [1070] = {.lex_state = 93, .external_lex_state = 12}, + [1071] = {.lex_state = 94, .external_lex_state = 13}, + [1072] = {.lex_state = 93, .external_lex_state = 12}, + [1073] = {.lex_state = 94, .external_lex_state = 13}, + [1074] = {.lex_state = 93, .external_lex_state = 12}, + [1075] = {.lex_state = 93, .external_lex_state = 12}, + [1076] = {.lex_state = 93, .external_lex_state = 12}, + [1077] = {.lex_state = 93, .external_lex_state = 12}, + [1078] = {.lex_state = 94, .external_lex_state = 13}, + [1079] = {.lex_state = 94, .external_lex_state = 13}, + [1080] = {.lex_state = 93, .external_lex_state = 12}, + [1081] = {.lex_state = 94, .external_lex_state = 13}, + [1082] = {.lex_state = 94, .external_lex_state = 13}, + [1083] = {.lex_state = 94, .external_lex_state = 13}, + [1084] = {.lex_state = 94, .external_lex_state = 13}, + [1085] = {.lex_state = 94, .external_lex_state = 13}, + [1086] = {.lex_state = 93, .external_lex_state = 12}, + [1087] = {.lex_state = 93, .external_lex_state = 12}, + [1088] = {.lex_state = 93, .external_lex_state = 12}, + [1089] = {.lex_state = 93, .external_lex_state = 12}, + [1090] = {.lex_state = 94, .external_lex_state = 13}, + [1091] = {.lex_state = 93, .external_lex_state = 12}, + [1092] = {.lex_state = 93, .external_lex_state = 12}, + [1093] = {.lex_state = 93, .external_lex_state = 12}, + [1094] = {.lex_state = 94, .external_lex_state = 13}, + [1095] = {.lex_state = 94, .external_lex_state = 13}, + [1096] = {.lex_state = 94, .external_lex_state = 13}, + [1097] = {.lex_state = 84, .external_lex_state = 14}, + [1098] = {.lex_state = 94, .external_lex_state = 13}, + [1099] = {.lex_state = 93, .external_lex_state = 12}, + [1100] = {.lex_state = 93, .external_lex_state = 12}, + [1101] = {.lex_state = 84, .external_lex_state = 14}, + [1102] = {.lex_state = 84}, + [1103] = {.lex_state = 93, .external_lex_state = 12}, + [1104] = {.lex_state = 94, .external_lex_state = 13}, + [1105] = {.lex_state = 94, .external_lex_state = 13}, + [1106] = {.lex_state = 94, .external_lex_state = 13}, + [1107] = {.lex_state = 93, .external_lex_state = 12}, + [1108] = {.lex_state = 93, .external_lex_state = 12}, + [1109] = {.lex_state = 94, .external_lex_state = 13}, + [1110] = {.lex_state = 94, .external_lex_state = 13}, + [1111] = {.lex_state = 93, .external_lex_state = 12}, + [1112] = {.lex_state = 93, .external_lex_state = 12}, + [1113] = {.lex_state = 94, .external_lex_state = 13}, + [1114] = {.lex_state = 93, .external_lex_state = 12}, + [1115] = {.lex_state = 94, .external_lex_state = 13}, + [1116] = {.lex_state = 94, .external_lex_state = 13}, + [1117] = {.lex_state = 93, .external_lex_state = 12}, + [1118] = {.lex_state = 93, .external_lex_state = 12}, + [1119] = {.lex_state = 94, .external_lex_state = 13}, + [1120] = {.lex_state = 94, .external_lex_state = 13}, + [1121] = {.lex_state = 94, .external_lex_state = 13}, + [1122] = {.lex_state = 93, .external_lex_state = 12}, + [1123] = {.lex_state = 94, .external_lex_state = 13}, + [1124] = {.lex_state = 94, .external_lex_state = 13}, + [1125] = {.lex_state = 93, .external_lex_state = 12}, + [1126] = {.lex_state = 84, .external_lex_state = 14}, + [1127] = {.lex_state = 93, .external_lex_state = 12}, + [1128] = {.lex_state = 93, .external_lex_state = 12}, + [1129] = {.lex_state = 93, .external_lex_state = 12}, + [1130] = {.lex_state = 94, .external_lex_state = 13}, + [1131] = {.lex_state = 94, .external_lex_state = 13}, + [1132] = {.lex_state = 94, .external_lex_state = 13}, + [1133] = {.lex_state = 94, .external_lex_state = 13}, + [1134] = {.lex_state = 94, .external_lex_state = 13}, + [1135] = {.lex_state = 94, .external_lex_state = 13}, + [1136] = {.lex_state = 94, .external_lex_state = 13}, + [1137] = {.lex_state = 93, .external_lex_state = 12}, + [1138] = {.lex_state = 94, .external_lex_state = 13}, + [1139] = {.lex_state = 94, .external_lex_state = 13}, + [1140] = {.lex_state = 94, .external_lex_state = 13}, + [1141] = {.lex_state = 94, .external_lex_state = 13}, + [1142] = {.lex_state = 93, .external_lex_state = 12}, + [1143] = {.lex_state = 93, .external_lex_state = 12}, + [1144] = {.lex_state = 93, .external_lex_state = 12}, + [1145] = {.lex_state = 93, .external_lex_state = 12}, + [1146] = {.lex_state = 93, .external_lex_state = 12}, + [1147] = {.lex_state = 94, .external_lex_state = 13}, + [1148] = {.lex_state = 94, .external_lex_state = 13}, + [1149] = {.lex_state = 94, .external_lex_state = 13}, + [1150] = {.lex_state = 93, .external_lex_state = 12}, + [1151] = {.lex_state = 93, .external_lex_state = 12}, + [1152] = {.lex_state = 94, .external_lex_state = 13}, + [1153] = {.lex_state = 94, .external_lex_state = 13}, + [1154] = {.lex_state = 94, .external_lex_state = 13}, + [1155] = {.lex_state = 93, .external_lex_state = 12}, + [1156] = {.lex_state = 93, .external_lex_state = 12}, + [1157] = {.lex_state = 94, .external_lex_state = 13}, + [1158] = {.lex_state = 93, .external_lex_state = 12}, + [1159] = {.lex_state = 94, .external_lex_state = 13}, + [1160] = {.lex_state = 93, .external_lex_state = 12}, + [1161] = {.lex_state = 93, .external_lex_state = 12}, + [1162] = {.lex_state = 93, .external_lex_state = 12}, + [1163] = {.lex_state = 93, .external_lex_state = 12}, + [1164] = {.lex_state = 93, .external_lex_state = 12}, + [1165] = {.lex_state = 93, .external_lex_state = 12}, + [1166] = {.lex_state = 93, .external_lex_state = 12}, + [1167] = {.lex_state = 93, .external_lex_state = 12}, + [1168] = {.lex_state = 94, .external_lex_state = 13}, + [1169] = {.lex_state = 94, .external_lex_state = 13}, + [1170] = {.lex_state = 93, .external_lex_state = 12}, + [1171] = {.lex_state = 93, .external_lex_state = 12}, + [1172] = {.lex_state = 93, .external_lex_state = 12}, + [1173] = {.lex_state = 84, .external_lex_state = 14}, + [1174] = {.lex_state = 93, .external_lex_state = 12}, + [1175] = {.lex_state = 93, .external_lex_state = 12}, + [1176] = {.lex_state = 93, .external_lex_state = 12}, + [1177] = {.lex_state = 94, .external_lex_state = 13}, + [1178] = {.lex_state = 94, .external_lex_state = 12}, + [1179] = {.lex_state = 94, .external_lex_state = 12}, + [1180] = {.lex_state = 94, .external_lex_state = 12}, + [1181] = {.lex_state = 94, .external_lex_state = 12}, + [1182] = {.lex_state = 94, .external_lex_state = 12}, + [1183] = {.lex_state = 94, .external_lex_state = 12}, + [1184] = {.lex_state = 94, .external_lex_state = 12}, + [1185] = {.lex_state = 94, .external_lex_state = 12}, + [1186] = {.lex_state = 94, .external_lex_state = 12}, + [1187] = {.lex_state = 94, .external_lex_state = 12}, + [1188] = {.lex_state = 94, .external_lex_state = 12}, + [1189] = {.lex_state = 94, .external_lex_state = 12}, + [1190] = {.lex_state = 94, .external_lex_state = 12}, + [1191] = {.lex_state = 94, .external_lex_state = 12}, + [1192] = {.lex_state = 94, .external_lex_state = 12}, + [1193] = {.lex_state = 94, .external_lex_state = 12}, + [1194] = {.lex_state = 94, .external_lex_state = 12}, + [1195] = {.lex_state = 94, .external_lex_state = 12}, [1196] = {.lex_state = 84}, - [1197] = {.lex_state = 94, .external_lex_state = 13}, - [1198] = {.lex_state = 94, .external_lex_state = 13}, - [1199] = {.lex_state = 94, .external_lex_state = 13}, - [1200] = {.lex_state = 94, .external_lex_state = 13}, - [1201] = {.lex_state = 94, .external_lex_state = 13}, - [1202] = {.lex_state = 94, .external_lex_state = 13}, - [1203] = {.lex_state = 94, .external_lex_state = 13}, - [1204] = {.lex_state = 94, .external_lex_state = 13}, - [1205] = {.lex_state = 94, .external_lex_state = 13}, - [1206] = {.lex_state = 94, .external_lex_state = 13}, - [1207] = {.lex_state = 94, .external_lex_state = 13}, - [1208] = {.lex_state = 94, .external_lex_state = 13}, - [1209] = {.lex_state = 94, .external_lex_state = 13}, - [1210] = {.lex_state = 94, .external_lex_state = 13}, - [1211] = {.lex_state = 94, .external_lex_state = 13}, - [1212] = {.lex_state = 94, .external_lex_state = 13}, - [1213] = {.lex_state = 94, .external_lex_state = 13}, - [1214] = {.lex_state = 94, .external_lex_state = 13}, - [1215] = {.lex_state = 94, .external_lex_state = 13}, - [1216] = {.lex_state = 94, .external_lex_state = 13}, - [1217] = {.lex_state = 94, .external_lex_state = 13}, - [1218] = {.lex_state = 94, .external_lex_state = 13}, - [1219] = {.lex_state = 84}, - [1220] = {.lex_state = 94, .external_lex_state = 13}, - [1221] = {.lex_state = 84}, - [1222] = {.lex_state = 94, .external_lex_state = 13}, - [1223] = {.lex_state = 94, .external_lex_state = 13}, - [1224] = {.lex_state = 94, .external_lex_state = 13}, - [1225] = {.lex_state = 94, .external_lex_state = 13}, - [1226] = {.lex_state = 94, .external_lex_state = 13}, - [1227] = {.lex_state = 94, .external_lex_state = 13}, - [1228] = {.lex_state = 94, .external_lex_state = 13}, - [1229] = {.lex_state = 94, .external_lex_state = 13}, - [1230] = {.lex_state = 94, .external_lex_state = 13}, - [1231] = {.lex_state = 94, .external_lex_state = 13}, - [1232] = {.lex_state = 94, .external_lex_state = 13}, - [1233] = {.lex_state = 94, .external_lex_state = 13}, - [1234] = {.lex_state = 94, .external_lex_state = 13}, - [1235] = {.lex_state = 94, .external_lex_state = 13}, - [1236] = {.lex_state = 94, .external_lex_state = 13}, - [1237] = {.lex_state = 94, .external_lex_state = 13}, - [1238] = {.lex_state = 94, .external_lex_state = 13}, - [1239] = {.lex_state = 94, .external_lex_state = 13}, - [1240] = {.lex_state = 94, .external_lex_state = 13}, - [1241] = {.lex_state = 94, .external_lex_state = 13}, - [1242] = {.lex_state = 94, .external_lex_state = 13}, - [1243] = {.lex_state = 94, .external_lex_state = 13}, - [1244] = {.lex_state = 94, .external_lex_state = 13}, - [1245] = {.lex_state = 94, .external_lex_state = 13}, - [1246] = {.lex_state = 94, .external_lex_state = 13}, - [1247] = {.lex_state = 94, .external_lex_state = 13}, - [1248] = {.lex_state = 94, .external_lex_state = 13}, - [1249] = {.lex_state = 94, .external_lex_state = 13}, - [1250] = {.lex_state = 94, .external_lex_state = 13}, - [1251] = {.lex_state = 94, .external_lex_state = 13}, - [1252] = {.lex_state = 94, .external_lex_state = 13}, - [1253] = {.lex_state = 94, .external_lex_state = 13}, - [1254] = {.lex_state = 94, .external_lex_state = 13}, - [1255] = {.lex_state = 94, .external_lex_state = 13}, - [1256] = {.lex_state = 94, .external_lex_state = 13}, - [1257] = {.lex_state = 94, .external_lex_state = 13}, - [1258] = {.lex_state = 94, .external_lex_state = 13}, - [1259] = {.lex_state = 94, .external_lex_state = 13}, - [1260] = {.lex_state = 94, .external_lex_state = 13}, - [1261] = {.lex_state = 94, .external_lex_state = 13}, - [1262] = {.lex_state = 94, .external_lex_state = 13}, - [1263] = {.lex_state = 94, .external_lex_state = 13}, - [1264] = {.lex_state = 94, .external_lex_state = 13}, - [1265] = {.lex_state = 94, .external_lex_state = 13}, - [1266] = {.lex_state = 94, .external_lex_state = 13}, - [1267] = {.lex_state = 94, .external_lex_state = 13}, - [1268] = {.lex_state = 94, .external_lex_state = 13}, - [1269] = {.lex_state = 94, .external_lex_state = 13}, - [1270] = {.lex_state = 94, .external_lex_state = 13}, - [1271] = {.lex_state = 94, .external_lex_state = 13}, - [1272] = {.lex_state = 94, .external_lex_state = 13}, - [1273] = {.lex_state = 94, .external_lex_state = 13}, - [1274] = {.lex_state = 94, .external_lex_state = 13}, - [1275] = {.lex_state = 94, .external_lex_state = 13}, - [1276] = {.lex_state = 94, .external_lex_state = 13}, - [1277] = {.lex_state = 94, .external_lex_state = 13}, - [1278] = {.lex_state = 94, .external_lex_state = 13}, - [1279] = {.lex_state = 94, .external_lex_state = 13}, - [1280] = {.lex_state = 94, .external_lex_state = 13}, - [1281] = {.lex_state = 94, .external_lex_state = 13}, - [1282] = {.lex_state = 94, .external_lex_state = 13}, - [1283] = {.lex_state = 94, .external_lex_state = 13}, - [1284] = {.lex_state = 94, .external_lex_state = 13}, - [1285] = {.lex_state = 94, .external_lex_state = 13}, - [1286] = {.lex_state = 94, .external_lex_state = 13}, - [1287] = {.lex_state = 94, .external_lex_state = 13}, - [1288] = {.lex_state = 94, .external_lex_state = 13}, - [1289] = {.lex_state = 94, .external_lex_state = 13}, - [1290] = {.lex_state = 94, .external_lex_state = 13}, - [1291] = {.lex_state = 94, .external_lex_state = 13}, - [1292] = {.lex_state = 94, .external_lex_state = 13}, - [1293] = {.lex_state = 94, .external_lex_state = 13}, - [1294] = {.lex_state = 94, .external_lex_state = 13}, - [1295] = {.lex_state = 94, .external_lex_state = 13}, - [1296] = {.lex_state = 94, .external_lex_state = 13}, - [1297] = {.lex_state = 94, .external_lex_state = 13}, - [1298] = {.lex_state = 94, .external_lex_state = 13}, - [1299] = {.lex_state = 94, .external_lex_state = 13}, - [1300] = {.lex_state = 94, .external_lex_state = 13}, - [1301] = {.lex_state = 94, .external_lex_state = 13}, - [1302] = {.lex_state = 94, .external_lex_state = 13}, - [1303] = {.lex_state = 94, .external_lex_state = 13}, - [1304] = {.lex_state = 94, .external_lex_state = 13}, - [1305] = {.lex_state = 94, .external_lex_state = 13}, - [1306] = {.lex_state = 94, .external_lex_state = 13}, - [1307] = {.lex_state = 94, .external_lex_state = 13}, - [1308] = {.lex_state = 94, .external_lex_state = 13}, - [1309] = {.lex_state = 94, .external_lex_state = 13}, - [1310] = {.lex_state = 94, .external_lex_state = 13}, - [1311] = {.lex_state = 94, .external_lex_state = 13}, - [1312] = {.lex_state = 94, .external_lex_state = 13}, - [1313] = {.lex_state = 94, .external_lex_state = 13}, - [1314] = {.lex_state = 94, .external_lex_state = 13}, - [1315] = {.lex_state = 94, .external_lex_state = 13}, - [1316] = {.lex_state = 94, .external_lex_state = 13}, - [1317] = {.lex_state = 94, .external_lex_state = 13}, - [1318] = {.lex_state = 94, .external_lex_state = 13}, - [1319] = {.lex_state = 94, .external_lex_state = 13}, - [1320] = {.lex_state = 94, .external_lex_state = 13}, - [1321] = {.lex_state = 94, .external_lex_state = 13}, - [1322] = {.lex_state = 94, .external_lex_state = 13}, - [1323] = {.lex_state = 94, .external_lex_state = 13}, - [1324] = {.lex_state = 94, .external_lex_state = 13}, - [1325] = {.lex_state = 94, .external_lex_state = 13}, - [1326] = {.lex_state = 94, .external_lex_state = 13}, - [1327] = {.lex_state = 94, .external_lex_state = 13}, - [1328] = {.lex_state = 94, .external_lex_state = 13}, - [1329] = {.lex_state = 94, .external_lex_state = 13}, - [1330] = {.lex_state = 94, .external_lex_state = 13}, - [1331] = {.lex_state = 94, .external_lex_state = 13}, - [1332] = {.lex_state = 94, .external_lex_state = 13}, - [1333] = {.lex_state = 94, .external_lex_state = 13}, - [1334] = {.lex_state = 94, .external_lex_state = 13}, - [1335] = {.lex_state = 94, .external_lex_state = 13}, - [1336] = {.lex_state = 94, .external_lex_state = 13}, - [1337] = {.lex_state = 94, .external_lex_state = 13}, - [1338] = {.lex_state = 94, .external_lex_state = 13}, - [1339] = {.lex_state = 94, .external_lex_state = 13}, - [1340] = {.lex_state = 94, .external_lex_state = 13}, - [1341] = {.lex_state = 94, .external_lex_state = 13}, - [1342] = {.lex_state = 94, .external_lex_state = 13}, - [1343] = {.lex_state = 94, .external_lex_state = 13}, - [1344] = {.lex_state = 94, .external_lex_state = 13}, - [1345] = {.lex_state = 94, .external_lex_state = 13}, - [1346] = {.lex_state = 94, .external_lex_state = 13}, - [1347] = {.lex_state = 94, .external_lex_state = 13}, - [1348] = {.lex_state = 94, .external_lex_state = 13}, - [1349] = {.lex_state = 84}, - [1350] = {.lex_state = 94, .external_lex_state = 13}, - [1351] = {.lex_state = 94, .external_lex_state = 13}, - [1352] = {.lex_state = 94, .external_lex_state = 13}, - [1353] = {.lex_state = 94, .external_lex_state = 13}, - [1354] = {.lex_state = 94, .external_lex_state = 13}, - [1355] = {.lex_state = 94, .external_lex_state = 13}, - [1356] = {.lex_state = 94, .external_lex_state = 13}, - [1357] = {.lex_state = 94, .external_lex_state = 13}, - [1358] = {.lex_state = 94, .external_lex_state = 13}, - [1359] = {.lex_state = 94, .external_lex_state = 13}, - [1360] = {.lex_state = 94, .external_lex_state = 13}, - [1361] = {.lex_state = 94, .external_lex_state = 13}, - [1362] = {.lex_state = 94, .external_lex_state = 13}, - [1363] = {.lex_state = 94, .external_lex_state = 13}, - [1364] = {.lex_state = 94, .external_lex_state = 13}, - [1365] = {.lex_state = 94, .external_lex_state = 13}, - [1366] = {.lex_state = 94, .external_lex_state = 13}, - [1367] = {.lex_state = 94, .external_lex_state = 13}, - [1368] = {.lex_state = 94, .external_lex_state = 13}, - [1369] = {.lex_state = 94, .external_lex_state = 13}, - [1370] = {.lex_state = 94, .external_lex_state = 13}, - [1371] = {.lex_state = 94, .external_lex_state = 13}, - [1372] = {.lex_state = 94, .external_lex_state = 13}, - [1373] = {.lex_state = 94, .external_lex_state = 13}, - [1374] = {.lex_state = 94, .external_lex_state = 13}, - [1375] = {.lex_state = 94, .external_lex_state = 13}, - [1376] = {.lex_state = 94, .external_lex_state = 13}, - [1377] = {.lex_state = 94, .external_lex_state = 13}, - [1378] = {.lex_state = 94, .external_lex_state = 13}, - [1379] = {.lex_state = 94, .external_lex_state = 13}, - [1380] = {.lex_state = 94, .external_lex_state = 13}, - [1381] = {.lex_state = 84}, - [1382] = {.lex_state = 94, .external_lex_state = 13}, - [1383] = {.lex_state = 84}, - [1384] = {.lex_state = 84}, - [1385] = {.lex_state = 94, .external_lex_state = 13}, - [1386] = {.lex_state = 94, .external_lex_state = 13}, - [1387] = {.lex_state = 94, .external_lex_state = 13}, - [1388] = {.lex_state = 94, .external_lex_state = 13}, - [1389] = {.lex_state = 94, .external_lex_state = 13}, - [1390] = {.lex_state = 84}, - [1391] = {.lex_state = 84}, - [1392] = {.lex_state = 94, .external_lex_state = 13}, - [1393] = {.lex_state = 94, .external_lex_state = 13}, - [1394] = {.lex_state = 94, .external_lex_state = 13}, - [1395] = {.lex_state = 94, .external_lex_state = 13}, - [1396] = {.lex_state = 94, .external_lex_state = 13}, - [1397] = {.lex_state = 94, .external_lex_state = 13}, - [1398] = {.lex_state = 94, .external_lex_state = 13}, - [1399] = {.lex_state = 94, .external_lex_state = 13}, - [1400] = {.lex_state = 94, .external_lex_state = 13}, - [1401] = {.lex_state = 94, .external_lex_state = 13}, - [1402] = {.lex_state = 94, .external_lex_state = 13}, - [1403] = {.lex_state = 94, .external_lex_state = 13}, - [1404] = {.lex_state = 94, .external_lex_state = 13}, - [1405] = {.lex_state = 94, .external_lex_state = 13}, - [1406] = {.lex_state = 84}, - [1407] = {.lex_state = 94, .external_lex_state = 13}, - [1408] = {.lex_state = 94, .external_lex_state = 13}, - [1409] = {.lex_state = 94, .external_lex_state = 13}, - [1410] = {.lex_state = 94, .external_lex_state = 13}, - [1411] = {.lex_state = 84}, - [1412] = {.lex_state = 94, .external_lex_state = 13}, - [1413] = {.lex_state = 94, .external_lex_state = 13}, - [1414] = {.lex_state = 94, .external_lex_state = 13}, - [1415] = {.lex_state = 94, .external_lex_state = 13}, - [1416] = {.lex_state = 94, .external_lex_state = 13}, - [1417] = {.lex_state = 84}, - [1418] = {.lex_state = 94, .external_lex_state = 13}, - [1419] = {.lex_state = 94, .external_lex_state = 13}, - [1420] = {.lex_state = 94, .external_lex_state = 13}, - [1421] = {.lex_state = 94, .external_lex_state = 13}, - [1422] = {.lex_state = 94, .external_lex_state = 13}, - [1423] = {.lex_state = 84}, - [1424] = {.lex_state = 94, .external_lex_state = 13}, - [1425] = {.lex_state = 94, .external_lex_state = 13}, - [1426] = {.lex_state = 94, .external_lex_state = 13}, - [1427] = {.lex_state = 94, .external_lex_state = 13}, - [1428] = {.lex_state = 94, .external_lex_state = 13}, - [1429] = {.lex_state = 94, .external_lex_state = 13}, - [1430] = {.lex_state = 94, .external_lex_state = 13}, - [1431] = {.lex_state = 94, .external_lex_state = 13}, - [1432] = {.lex_state = 94, .external_lex_state = 13}, - [1433] = {.lex_state = 94, .external_lex_state = 13}, - [1434] = {.lex_state = 94, .external_lex_state = 13}, - [1435] = {.lex_state = 94, .external_lex_state = 13}, - [1436] = {.lex_state = 94, .external_lex_state = 13}, - [1437] = {.lex_state = 94, .external_lex_state = 13}, - [1438] = {.lex_state = 94, .external_lex_state = 13}, - [1439] = {.lex_state = 94, .external_lex_state = 13}, - [1440] = {.lex_state = 94, .external_lex_state = 13}, - [1441] = {.lex_state = 94, .external_lex_state = 13}, - [1442] = {.lex_state = 94, .external_lex_state = 13}, - [1443] = {.lex_state = 94, .external_lex_state = 13}, - [1444] = {.lex_state = 94, .external_lex_state = 13}, - [1445] = {.lex_state = 94, .external_lex_state = 13}, - [1446] = {.lex_state = 94, .external_lex_state = 13}, - [1447] = {.lex_state = 94, .external_lex_state = 13}, - [1448] = {.lex_state = 94, .external_lex_state = 13}, - [1449] = {.lex_state = 94, .external_lex_state = 13}, - [1450] = {.lex_state = 94, .external_lex_state = 13}, - [1451] = {.lex_state = 94, .external_lex_state = 13}, - [1452] = {.lex_state = 94, .external_lex_state = 13}, - [1453] = {.lex_state = 84}, - [1454] = {.lex_state = 94, .external_lex_state = 13}, - [1455] = {.lex_state = 94, .external_lex_state = 13}, - [1456] = {.lex_state = 94, .external_lex_state = 13}, - [1457] = {.lex_state = 94, .external_lex_state = 13}, - [1458] = {.lex_state = 94, .external_lex_state = 13}, - [1459] = {.lex_state = 94, .external_lex_state = 13}, - [1460] = {.lex_state = 84}, - [1461] = {.lex_state = 94, .external_lex_state = 13}, - [1462] = {.lex_state = 94, .external_lex_state = 13}, - [1463] = {.lex_state = 94, .external_lex_state = 13}, - [1464] = {.lex_state = 94, .external_lex_state = 13}, - [1465] = {.lex_state = 94, .external_lex_state = 13}, - [1466] = {.lex_state = 84}, - [1467] = {.lex_state = 94, .external_lex_state = 13}, - [1468] = {.lex_state = 94, .external_lex_state = 13}, - [1469] = {.lex_state = 94, .external_lex_state = 13}, - [1470] = {.lex_state = 94, .external_lex_state = 13}, - [1471] = {.lex_state = 94, .external_lex_state = 13}, - [1472] = {.lex_state = 94, .external_lex_state = 13}, - [1473] = {.lex_state = 94, .external_lex_state = 13}, - [1474] = {.lex_state = 94, .external_lex_state = 13}, - [1475] = {.lex_state = 94, .external_lex_state = 13}, - [1476] = {.lex_state = 94, .external_lex_state = 13}, - [1477] = {.lex_state = 94, .external_lex_state = 13}, - [1478] = {.lex_state = 94, .external_lex_state = 13}, - [1479] = {.lex_state = 94, .external_lex_state = 13}, - [1480] = {.lex_state = 94, .external_lex_state = 13}, - [1481] = {.lex_state = 94, .external_lex_state = 13}, - [1482] = {.lex_state = 94, .external_lex_state = 13}, - [1483] = {.lex_state = 94, .external_lex_state = 13}, - [1484] = {.lex_state = 94, .external_lex_state = 13}, - [1485] = {.lex_state = 94, .external_lex_state = 13}, - [1486] = {.lex_state = 94, .external_lex_state = 13}, - [1487] = {.lex_state = 94, .external_lex_state = 13}, - [1488] = {.lex_state = 94, .external_lex_state = 13}, - [1489] = {.lex_state = 94, .external_lex_state = 13}, - [1490] = {.lex_state = 94, .external_lex_state = 13}, - [1491] = {.lex_state = 94, .external_lex_state = 13}, - [1492] = {.lex_state = 94, .external_lex_state = 13}, - [1493] = {.lex_state = 94, .external_lex_state = 13}, - [1494] = {.lex_state = 94, .external_lex_state = 13}, - [1495] = {.lex_state = 94, .external_lex_state = 13}, - [1496] = {.lex_state = 94, .external_lex_state = 13}, - [1497] = {.lex_state = 94, .external_lex_state = 13}, - [1498] = {.lex_state = 94, .external_lex_state = 13}, - [1499] = {.lex_state = 94, .external_lex_state = 13}, - [1500] = {.lex_state = 94, .external_lex_state = 13}, - [1501] = {.lex_state = 94, .external_lex_state = 13}, - [1502] = {.lex_state = 94, .external_lex_state = 13}, - [1503] = {.lex_state = 94, .external_lex_state = 13}, - [1504] = {.lex_state = 94, .external_lex_state = 13}, - [1505] = {.lex_state = 94, .external_lex_state = 13}, - [1506] = {.lex_state = 94, .external_lex_state = 13}, - [1507] = {.lex_state = 94, .external_lex_state = 13}, - [1508] = {.lex_state = 94, .external_lex_state = 13}, - [1509] = {.lex_state = 94, .external_lex_state = 13}, - [1510] = {.lex_state = 94, .external_lex_state = 13}, - [1511] = {.lex_state = 94, .external_lex_state = 13}, - [1512] = {.lex_state = 94, .external_lex_state = 13}, - [1513] = {.lex_state = 94, .external_lex_state = 13}, - [1514] = {.lex_state = 94, .external_lex_state = 13}, - [1515] = {.lex_state = 94, .external_lex_state = 13}, - [1516] = {.lex_state = 94, .external_lex_state = 13}, - [1517] = {.lex_state = 94, .external_lex_state = 13}, - [1518] = {.lex_state = 94, .external_lex_state = 13}, - [1519] = {.lex_state = 94, .external_lex_state = 13}, - [1520] = {.lex_state = 94, .external_lex_state = 13}, - [1521] = {.lex_state = 94, .external_lex_state = 13}, - [1522] = {.lex_state = 94, .external_lex_state = 13}, - [1523] = {.lex_state = 94, .external_lex_state = 13}, - [1524] = {.lex_state = 84}, - [1525] = {.lex_state = 94, .external_lex_state = 13}, - [1526] = {.lex_state = 94, .external_lex_state = 13}, - [1527] = {.lex_state = 94, .external_lex_state = 13}, - [1528] = {.lex_state = 84}, - [1529] = {.lex_state = 94, .external_lex_state = 13}, - [1530] = {.lex_state = 94, .external_lex_state = 13}, + [1197] = {.lex_state = 94, .external_lex_state = 12}, + [1198] = {.lex_state = 94, .external_lex_state = 12}, + [1199] = {.lex_state = 94, .external_lex_state = 12}, + [1200] = {.lex_state = 94, .external_lex_state = 12}, + [1201] = {.lex_state = 94, .external_lex_state = 12}, + [1202] = {.lex_state = 94, .external_lex_state = 12}, + [1203] = {.lex_state = 94, .external_lex_state = 12}, + [1204] = {.lex_state = 94, .external_lex_state = 12}, + [1205] = {.lex_state = 94, .external_lex_state = 12}, + [1206] = {.lex_state = 94, .external_lex_state = 12}, + [1207] = {.lex_state = 94, .external_lex_state = 12}, + [1208] = {.lex_state = 94, .external_lex_state = 12}, + [1209] = {.lex_state = 94, .external_lex_state = 12}, + [1210] = {.lex_state = 94, .external_lex_state = 12}, + [1211] = {.lex_state = 94, .external_lex_state = 12}, + [1212] = {.lex_state = 94, .external_lex_state = 12}, + [1213] = {.lex_state = 94, .external_lex_state = 12}, + [1214] = {.lex_state = 94, .external_lex_state = 12}, + [1215] = {.lex_state = 94, .external_lex_state = 12}, + [1216] = {.lex_state = 94, .external_lex_state = 12}, + [1217] = {.lex_state = 94, .external_lex_state = 12}, + [1218] = {.lex_state = 94, .external_lex_state = 12}, + [1219] = {.lex_state = 94, .external_lex_state = 12}, + [1220] = {.lex_state = 94, .external_lex_state = 12}, + [1221] = {.lex_state = 94, .external_lex_state = 12}, + [1222] = {.lex_state = 94, .external_lex_state = 12}, + [1223] = {.lex_state = 94, .external_lex_state = 12}, + [1224] = {.lex_state = 94, .external_lex_state = 12}, + [1225] = {.lex_state = 94, .external_lex_state = 12}, + [1226] = {.lex_state = 94, .external_lex_state = 12}, + [1227] = {.lex_state = 94, .external_lex_state = 12}, + [1228] = {.lex_state = 94, .external_lex_state = 12}, + [1229] = {.lex_state = 94, .external_lex_state = 12}, + [1230] = {.lex_state = 94, .external_lex_state = 12}, + [1231] = {.lex_state = 94, .external_lex_state = 12}, + [1232] = {.lex_state = 94, .external_lex_state = 12}, + [1233] = {.lex_state = 94, .external_lex_state = 12}, + [1234] = {.lex_state = 94, .external_lex_state = 12}, + [1235] = {.lex_state = 94, .external_lex_state = 12}, + [1236] = {.lex_state = 94, .external_lex_state = 12}, + [1237] = {.lex_state = 94, .external_lex_state = 12}, + [1238] = {.lex_state = 94, .external_lex_state = 12}, + [1239] = {.lex_state = 94, .external_lex_state = 12}, + [1240] = {.lex_state = 94, .external_lex_state = 12}, + [1241] = {.lex_state = 94, .external_lex_state = 12}, + [1242] = {.lex_state = 94, .external_lex_state = 12}, + [1243] = {.lex_state = 94, .external_lex_state = 12}, + [1244] = {.lex_state = 94, .external_lex_state = 12}, + [1245] = {.lex_state = 94, .external_lex_state = 12}, + [1246] = {.lex_state = 94, .external_lex_state = 12}, + [1247] = {.lex_state = 94, .external_lex_state = 12}, + [1248] = {.lex_state = 94, .external_lex_state = 12}, + [1249] = {.lex_state = 94, .external_lex_state = 12}, + [1250] = {.lex_state = 94, .external_lex_state = 12}, + [1251] = {.lex_state = 94, .external_lex_state = 12}, + [1252] = {.lex_state = 94, .external_lex_state = 12}, + [1253] = {.lex_state = 94, .external_lex_state = 12}, + [1254] = {.lex_state = 94, .external_lex_state = 12}, + [1255] = {.lex_state = 94, .external_lex_state = 12}, + [1256] = {.lex_state = 94, .external_lex_state = 12}, + [1257] = {.lex_state = 94, .external_lex_state = 12}, + [1258] = {.lex_state = 94, .external_lex_state = 12}, + [1259] = {.lex_state = 94, .external_lex_state = 12}, + [1260] = {.lex_state = 94, .external_lex_state = 12}, + [1261] = {.lex_state = 94, .external_lex_state = 12}, + [1262] = {.lex_state = 94, .external_lex_state = 12}, + [1263] = {.lex_state = 94, .external_lex_state = 12}, + [1264] = {.lex_state = 94, .external_lex_state = 12}, + [1265] = {.lex_state = 94, .external_lex_state = 12}, + [1266] = {.lex_state = 94, .external_lex_state = 12}, + [1267] = {.lex_state = 94, .external_lex_state = 12}, + [1268] = {.lex_state = 94, .external_lex_state = 12}, + [1269] = {.lex_state = 94, .external_lex_state = 12}, + [1270] = {.lex_state = 94, .external_lex_state = 12}, + [1271] = {.lex_state = 94, .external_lex_state = 12}, + [1272] = {.lex_state = 94, .external_lex_state = 12}, + [1273] = {.lex_state = 94, .external_lex_state = 12}, + [1274] = {.lex_state = 94, .external_lex_state = 12}, + [1275] = {.lex_state = 94, .external_lex_state = 12}, + [1276] = {.lex_state = 94, .external_lex_state = 12}, + [1277] = {.lex_state = 94, .external_lex_state = 12}, + [1278] = {.lex_state = 94, .external_lex_state = 12}, + [1279] = {.lex_state = 94, .external_lex_state = 12}, + [1280] = {.lex_state = 84}, + [1281] = {.lex_state = 94, .external_lex_state = 12}, + [1282] = {.lex_state = 94, .external_lex_state = 12}, + [1283] = {.lex_state = 94, .external_lex_state = 12}, + [1284] = {.lex_state = 94, .external_lex_state = 12}, + [1285] = {.lex_state = 94, .external_lex_state = 12}, + [1286] = {.lex_state = 94, .external_lex_state = 12}, + [1287] = {.lex_state = 94, .external_lex_state = 12}, + [1288] = {.lex_state = 94, .external_lex_state = 12}, + [1289] = {.lex_state = 94, .external_lex_state = 12}, + [1290] = {.lex_state = 94, .external_lex_state = 12}, + [1291] = {.lex_state = 94, .external_lex_state = 12}, + [1292] = {.lex_state = 94, .external_lex_state = 12}, + [1293] = {.lex_state = 94, .external_lex_state = 12}, + [1294] = {.lex_state = 94, .external_lex_state = 12}, + [1295] = {.lex_state = 94, .external_lex_state = 12}, + [1296] = {.lex_state = 94, .external_lex_state = 12}, + [1297] = {.lex_state = 94, .external_lex_state = 12}, + [1298] = {.lex_state = 94, .external_lex_state = 12}, + [1299] = {.lex_state = 94, .external_lex_state = 12}, + [1300] = {.lex_state = 94, .external_lex_state = 12}, + [1301] = {.lex_state = 94, .external_lex_state = 12}, + [1302] = {.lex_state = 94, .external_lex_state = 12}, + [1303] = {.lex_state = 84}, + [1304] = {.lex_state = 84}, + [1305] = {.lex_state = 94, .external_lex_state = 12}, + [1306] = {.lex_state = 94, .external_lex_state = 12}, + [1307] = {.lex_state = 94, .external_lex_state = 12}, + [1308] = {.lex_state = 94, .external_lex_state = 12}, + [1309] = {.lex_state = 94, .external_lex_state = 12}, + [1310] = {.lex_state = 94, .external_lex_state = 12}, + [1311] = {.lex_state = 94, .external_lex_state = 12}, + [1312] = {.lex_state = 94, .external_lex_state = 12}, + [1313] = {.lex_state = 94, .external_lex_state = 12}, + [1314] = {.lex_state = 94, .external_lex_state = 12}, + [1315] = {.lex_state = 94, .external_lex_state = 12}, + [1316] = {.lex_state = 94, .external_lex_state = 12}, + [1317] = {.lex_state = 94, .external_lex_state = 12}, + [1318] = {.lex_state = 94, .external_lex_state = 12}, + [1319] = {.lex_state = 94, .external_lex_state = 12}, + [1320] = {.lex_state = 94, .external_lex_state = 12}, + [1321] = {.lex_state = 94, .external_lex_state = 12}, + [1322] = {.lex_state = 94, .external_lex_state = 12}, + [1323] = {.lex_state = 94, .external_lex_state = 12}, + [1324] = {.lex_state = 94, .external_lex_state = 12}, + [1325] = {.lex_state = 94, .external_lex_state = 12}, + [1326] = {.lex_state = 94, .external_lex_state = 12}, + [1327] = {.lex_state = 94, .external_lex_state = 12}, + [1328] = {.lex_state = 94, .external_lex_state = 12}, + [1329] = {.lex_state = 94, .external_lex_state = 12}, + [1330] = {.lex_state = 94, .external_lex_state = 12}, + [1331] = {.lex_state = 94, .external_lex_state = 12}, + [1332] = {.lex_state = 94, .external_lex_state = 12}, + [1333] = {.lex_state = 94, .external_lex_state = 12}, + [1334] = {.lex_state = 94, .external_lex_state = 12}, + [1335] = {.lex_state = 94, .external_lex_state = 12}, + [1336] = {.lex_state = 94, .external_lex_state = 12}, + [1337] = {.lex_state = 94, .external_lex_state = 12}, + [1338] = {.lex_state = 94, .external_lex_state = 12}, + [1339] = {.lex_state = 94, .external_lex_state = 12}, + [1340] = {.lex_state = 94, .external_lex_state = 12}, + [1341] = {.lex_state = 94, .external_lex_state = 12}, + [1342] = {.lex_state = 94, .external_lex_state = 12}, + [1343] = {.lex_state = 94, .external_lex_state = 12}, + [1344] = {.lex_state = 94, .external_lex_state = 12}, + [1345] = {.lex_state = 94, .external_lex_state = 12}, + [1346] = {.lex_state = 94, .external_lex_state = 12}, + [1347] = {.lex_state = 94, .external_lex_state = 12}, + [1348] = {.lex_state = 94, .external_lex_state = 12}, + [1349] = {.lex_state = 94, .external_lex_state = 12}, + [1350] = {.lex_state = 94, .external_lex_state = 12}, + [1351] = {.lex_state = 94, .external_lex_state = 12}, + [1352] = {.lex_state = 94, .external_lex_state = 12}, + [1353] = {.lex_state = 94, .external_lex_state = 12}, + [1354] = {.lex_state = 94, .external_lex_state = 12}, + [1355] = {.lex_state = 94, .external_lex_state = 12}, + [1356] = {.lex_state = 94, .external_lex_state = 12}, + [1357] = {.lex_state = 94, .external_lex_state = 12}, + [1358] = {.lex_state = 94, .external_lex_state = 12}, + [1359] = {.lex_state = 94, .external_lex_state = 12}, + [1360] = {.lex_state = 94, .external_lex_state = 12}, + [1361] = {.lex_state = 94, .external_lex_state = 12}, + [1362] = {.lex_state = 94, .external_lex_state = 12}, + [1363] = {.lex_state = 84}, + [1364] = {.lex_state = 94, .external_lex_state = 12}, + [1365] = {.lex_state = 84}, + [1366] = {.lex_state = 94, .external_lex_state = 12}, + [1367] = {.lex_state = 94, .external_lex_state = 12}, + [1368] = {.lex_state = 94, .external_lex_state = 12}, + [1369] = {.lex_state = 94, .external_lex_state = 12}, + [1370] = {.lex_state = 94, .external_lex_state = 12}, + [1371] = {.lex_state = 94, .external_lex_state = 12}, + [1372] = {.lex_state = 84}, + [1373] = {.lex_state = 84}, + [1374] = {.lex_state = 84}, + [1375] = {.lex_state = 94, .external_lex_state = 12}, + [1376] = {.lex_state = 94, .external_lex_state = 12}, + [1377] = {.lex_state = 94, .external_lex_state = 12}, + [1378] = {.lex_state = 94, .external_lex_state = 12}, + [1379] = {.lex_state = 94, .external_lex_state = 12}, + [1380] = {.lex_state = 94, .external_lex_state = 12}, + [1381] = {.lex_state = 94, .external_lex_state = 12}, + [1382] = {.lex_state = 94, .external_lex_state = 12}, + [1383] = {.lex_state = 94, .external_lex_state = 12}, + [1384] = {.lex_state = 94, .external_lex_state = 12}, + [1385] = {.lex_state = 94, .external_lex_state = 12}, + [1386] = {.lex_state = 94, .external_lex_state = 12}, + [1387] = {.lex_state = 94, .external_lex_state = 12}, + [1388] = {.lex_state = 94, .external_lex_state = 12}, + [1389] = {.lex_state = 94, .external_lex_state = 12}, + [1390] = {.lex_state = 94, .external_lex_state = 12}, + [1391] = {.lex_state = 94, .external_lex_state = 12}, + [1392] = {.lex_state = 94, .external_lex_state = 12}, + [1393] = {.lex_state = 94, .external_lex_state = 12}, + [1394] = {.lex_state = 94, .external_lex_state = 12}, + [1395] = {.lex_state = 94, .external_lex_state = 12}, + [1396] = {.lex_state = 94, .external_lex_state = 12}, + [1397] = {.lex_state = 94, .external_lex_state = 12}, + [1398] = {.lex_state = 94, .external_lex_state = 12}, + [1399] = {.lex_state = 94, .external_lex_state = 12}, + [1400] = {.lex_state = 94, .external_lex_state = 12}, + [1401] = {.lex_state = 94, .external_lex_state = 12}, + [1402] = {.lex_state = 94, .external_lex_state = 12}, + [1403] = {.lex_state = 94, .external_lex_state = 12}, + [1404] = {.lex_state = 94, .external_lex_state = 12}, + [1405] = {.lex_state = 94, .external_lex_state = 12}, + [1406] = {.lex_state = 94, .external_lex_state = 12}, + [1407] = {.lex_state = 94, .external_lex_state = 12}, + [1408] = {.lex_state = 94, .external_lex_state = 12}, + [1409] = {.lex_state = 94, .external_lex_state = 12}, + [1410] = {.lex_state = 84}, + [1411] = {.lex_state = 94, .external_lex_state = 12}, + [1412] = {.lex_state = 94, .external_lex_state = 12}, + [1413] = {.lex_state = 94, .external_lex_state = 12}, + [1414] = {.lex_state = 94, .external_lex_state = 12}, + [1415] = {.lex_state = 94, .external_lex_state = 12}, + [1416] = {.lex_state = 94, .external_lex_state = 12}, + [1417] = {.lex_state = 94, .external_lex_state = 12}, + [1418] = {.lex_state = 94, .external_lex_state = 12}, + [1419] = {.lex_state = 94, .external_lex_state = 12}, + [1420] = {.lex_state = 94, .external_lex_state = 12}, + [1421] = {.lex_state = 94, .external_lex_state = 12}, + [1422] = {.lex_state = 94, .external_lex_state = 12}, + [1423] = {.lex_state = 94, .external_lex_state = 12}, + [1424] = {.lex_state = 94, .external_lex_state = 12}, + [1425] = {.lex_state = 94, .external_lex_state = 12}, + [1426] = {.lex_state = 94, .external_lex_state = 12}, + [1427] = {.lex_state = 94, .external_lex_state = 12}, + [1428] = {.lex_state = 94, .external_lex_state = 12}, + [1429] = {.lex_state = 94, .external_lex_state = 12}, + [1430] = {.lex_state = 94, .external_lex_state = 12}, + [1431] = {.lex_state = 94, .external_lex_state = 12}, + [1432] = {.lex_state = 94, .external_lex_state = 12}, + [1433] = {.lex_state = 94, .external_lex_state = 12}, + [1434] = {.lex_state = 94, .external_lex_state = 12}, + [1435] = {.lex_state = 94, .external_lex_state = 12}, + [1436] = {.lex_state = 94, .external_lex_state = 12}, + [1437] = {.lex_state = 94, .external_lex_state = 12}, + [1438] = {.lex_state = 94, .external_lex_state = 12}, + [1439] = {.lex_state = 94, .external_lex_state = 12}, + [1440] = {.lex_state = 94, .external_lex_state = 12}, + [1441] = {.lex_state = 94, .external_lex_state = 12}, + [1442] = {.lex_state = 94, .external_lex_state = 12}, + [1443] = {.lex_state = 94, .external_lex_state = 12}, + [1444] = {.lex_state = 94, .external_lex_state = 12}, + [1445] = {.lex_state = 94, .external_lex_state = 12}, + [1446] = {.lex_state = 94, .external_lex_state = 12}, + [1447] = {.lex_state = 94, .external_lex_state = 12}, + [1448] = {.lex_state = 94, .external_lex_state = 12}, + [1449] = {.lex_state = 94, .external_lex_state = 12}, + [1450] = {.lex_state = 94, .external_lex_state = 12}, + [1451] = {.lex_state = 94, .external_lex_state = 12}, + [1452] = {.lex_state = 94, .external_lex_state = 12}, + [1453] = {.lex_state = 94, .external_lex_state = 12}, + [1454] = {.lex_state = 94, .external_lex_state = 12}, + [1455] = {.lex_state = 94, .external_lex_state = 12}, + [1456] = {.lex_state = 84}, + [1457] = {.lex_state = 94, .external_lex_state = 12}, + [1458] = {.lex_state = 94, .external_lex_state = 12}, + [1459] = {.lex_state = 94, .external_lex_state = 12}, + [1460] = {.lex_state = 94, .external_lex_state = 12}, + [1461] = {.lex_state = 94, .external_lex_state = 12}, + [1462] = {.lex_state = 94, .external_lex_state = 12}, + [1463] = {.lex_state = 84}, + [1464] = {.lex_state = 94, .external_lex_state = 12}, + [1465] = {.lex_state = 94, .external_lex_state = 12}, + [1466] = {.lex_state = 94, .external_lex_state = 12}, + [1467] = {.lex_state = 94, .external_lex_state = 12}, + [1468] = {.lex_state = 94, .external_lex_state = 12}, + [1469] = {.lex_state = 94, .external_lex_state = 12}, + [1470] = {.lex_state = 94, .external_lex_state = 12}, + [1471] = {.lex_state = 94, .external_lex_state = 12}, + [1472] = {.lex_state = 84}, + [1473] = {.lex_state = 94, .external_lex_state = 12}, + [1474] = {.lex_state = 94, .external_lex_state = 12}, + [1475] = {.lex_state = 94, .external_lex_state = 12}, + [1476] = {.lex_state = 94, .external_lex_state = 12}, + [1477] = {.lex_state = 94, .external_lex_state = 12}, + [1478] = {.lex_state = 94, .external_lex_state = 12}, + [1479] = {.lex_state = 94, .external_lex_state = 12}, + [1480] = {.lex_state = 94, .external_lex_state = 12}, + [1481] = {.lex_state = 94, .external_lex_state = 12}, + [1482] = {.lex_state = 94, .external_lex_state = 12}, + [1483] = {.lex_state = 94, .external_lex_state = 12}, + [1484] = {.lex_state = 94, .external_lex_state = 12}, + [1485] = {.lex_state = 94, .external_lex_state = 12}, + [1486] = {.lex_state = 94, .external_lex_state = 12}, + [1487] = {.lex_state = 94, .external_lex_state = 12}, + [1488] = {.lex_state = 94, .external_lex_state = 12}, + [1489] = {.lex_state = 94, .external_lex_state = 12}, + [1490] = {.lex_state = 94, .external_lex_state = 12}, + [1491] = {.lex_state = 94, .external_lex_state = 12}, + [1492] = {.lex_state = 94, .external_lex_state = 12}, + [1493] = {.lex_state = 94, .external_lex_state = 12}, + [1494] = {.lex_state = 94, .external_lex_state = 12}, + [1495] = {.lex_state = 94, .external_lex_state = 12}, + [1496] = {.lex_state = 94, .external_lex_state = 12}, + [1497] = {.lex_state = 94, .external_lex_state = 12}, + [1498] = {.lex_state = 94, .external_lex_state = 12}, + [1499] = {.lex_state = 94, .external_lex_state = 12}, + [1500] = {.lex_state = 94, .external_lex_state = 12}, + [1501] = {.lex_state = 94, .external_lex_state = 12}, + [1502] = {.lex_state = 94, .external_lex_state = 12}, + [1503] = {.lex_state = 94, .external_lex_state = 12}, + [1504] = {.lex_state = 94, .external_lex_state = 12}, + [1505] = {.lex_state = 94, .external_lex_state = 12}, + [1506] = {.lex_state = 94, .external_lex_state = 12}, + [1507] = {.lex_state = 94, .external_lex_state = 12}, + [1508] = {.lex_state = 94, .external_lex_state = 12}, + [1509] = {.lex_state = 94, .external_lex_state = 12}, + [1510] = {.lex_state = 94, .external_lex_state = 12}, + [1511] = {.lex_state = 94, .external_lex_state = 12}, + [1512] = {.lex_state = 94, .external_lex_state = 12}, + [1513] = {.lex_state = 94, .external_lex_state = 12}, + [1514] = {.lex_state = 94, .external_lex_state = 12}, + [1515] = {.lex_state = 94, .external_lex_state = 12}, + [1516] = {.lex_state = 94, .external_lex_state = 12}, + [1517] = {.lex_state = 94, .external_lex_state = 12}, + [1518] = {.lex_state = 94, .external_lex_state = 12}, + [1519] = {.lex_state = 94, .external_lex_state = 12}, + [1520] = {.lex_state = 94, .external_lex_state = 12}, + [1521] = {.lex_state = 94, .external_lex_state = 12}, + [1522] = {.lex_state = 94, .external_lex_state = 12}, + [1523] = {.lex_state = 94, .external_lex_state = 12}, + [1524] = {.lex_state = 94, .external_lex_state = 12}, + [1525] = {.lex_state = 84}, + [1526] = {.lex_state = 94, .external_lex_state = 12}, + [1527] = {.lex_state = 94, .external_lex_state = 12}, + [1528] = {.lex_state = 94, .external_lex_state = 12}, + [1529] = {.lex_state = 84}, + [1530] = {.lex_state = 94, .external_lex_state = 12}, [1531] = {.lex_state = 84}, - [1532] = {.lex_state = 94, .external_lex_state = 13}, - [1533] = {.lex_state = 94, .external_lex_state = 13}, + [1532] = {.lex_state = 94, .external_lex_state = 12}, + [1533] = {.lex_state = 94, .external_lex_state = 12}, [1534] = {.lex_state = 84}, [1535] = {.lex_state = 84}, - [1536] = {.lex_state = 94, .external_lex_state = 13}, - [1537] = {.lex_state = 94, .external_lex_state = 13}, - [1538] = {.lex_state = 94, .external_lex_state = 13}, - [1539] = {.lex_state = 94, .external_lex_state = 13}, - [1540] = {.lex_state = 94, .external_lex_state = 13}, - [1541] = {.lex_state = 94, .external_lex_state = 13}, - [1542] = {.lex_state = 94, .external_lex_state = 13}, - [1543] = {.lex_state = 94, .external_lex_state = 13}, - [1544] = {.lex_state = 94, .external_lex_state = 13}, - [1545] = {.lex_state = 94, .external_lex_state = 13}, - [1546] = {.lex_state = 94, .external_lex_state = 13}, - [1547] = {.lex_state = 94, .external_lex_state = 13}, - [1548] = {.lex_state = 94, .external_lex_state = 13}, - [1549] = {.lex_state = 94, .external_lex_state = 13}, - [1550] = {.lex_state = 94, .external_lex_state = 13}, - [1551] = {.lex_state = 94, .external_lex_state = 13}, - [1552] = {.lex_state = 94, .external_lex_state = 13}, - [1553] = {.lex_state = 84}, - [1554] = {.lex_state = 94, .external_lex_state = 13}, - [1555] = {.lex_state = 94, .external_lex_state = 13}, - [1556] = {.lex_state = 94, .external_lex_state = 13}, - [1557] = {.lex_state = 94, .external_lex_state = 13}, - [1558] = {.lex_state = 94, .external_lex_state = 13}, - [1559] = {.lex_state = 94, .external_lex_state = 13}, - [1560] = {.lex_state = 94, .external_lex_state = 13}, - [1561] = {.lex_state = 94, .external_lex_state = 13}, - [1562] = {.lex_state = 94, .external_lex_state = 13}, - [1563] = {.lex_state = 84}, - [1564] = {.lex_state = 94, .external_lex_state = 13}, - [1565] = {.lex_state = 94, .external_lex_state = 13}, - [1566] = {.lex_state = 94, .external_lex_state = 13}, - [1567] = {.lex_state = 94, .external_lex_state = 13}, - [1568] = {.lex_state = 94, .external_lex_state = 13}, - [1569] = {.lex_state = 94, .external_lex_state = 13}, - [1570] = {.lex_state = 94, .external_lex_state = 13}, - [1571] = {.lex_state = 94, .external_lex_state = 13}, - [1572] = {.lex_state = 94, .external_lex_state = 13}, - [1573] = {.lex_state = 94, .external_lex_state = 13}, - [1574] = {.lex_state = 94, .external_lex_state = 13}, - [1575] = {.lex_state = 94, .external_lex_state = 13}, - [1576] = {.lex_state = 94, .external_lex_state = 13}, - [1577] = {.lex_state = 94, .external_lex_state = 13}, - [1578] = {.lex_state = 94, .external_lex_state = 13}, - [1579] = {.lex_state = 94, .external_lex_state = 13}, - [1580] = {.lex_state = 94, .external_lex_state = 13}, - [1581] = {.lex_state = 84}, - [1582] = {.lex_state = 94, .external_lex_state = 13}, - [1583] = {.lex_state = 84}, - [1584] = {.lex_state = 94, .external_lex_state = 13}, - [1585] = {.lex_state = 94, .external_lex_state = 13}, - [1586] = {.lex_state = 94, .external_lex_state = 13}, - [1587] = {.lex_state = 94, .external_lex_state = 13}, - [1588] = {.lex_state = 94, .external_lex_state = 13}, - [1589] = {.lex_state = 94, .external_lex_state = 13}, - [1590] = {.lex_state = 84}, - [1591] = {.lex_state = 94, .external_lex_state = 13}, - [1592] = {.lex_state = 94, .external_lex_state = 13}, - [1593] = {.lex_state = 94, .external_lex_state = 13}, - [1594] = {.lex_state = 94, .external_lex_state = 13}, - [1595] = {.lex_state = 94, .external_lex_state = 13}, - [1596] = {.lex_state = 94, .external_lex_state = 13}, - [1597] = {.lex_state = 94, .external_lex_state = 13}, - [1598] = {.lex_state = 94, .external_lex_state = 13}, - [1599] = {.lex_state = 94, .external_lex_state = 13}, - [1600] = {.lex_state = 94, .external_lex_state = 13}, - [1601] = {.lex_state = 94, .external_lex_state = 13}, - [1602] = {.lex_state = 94, .external_lex_state = 13}, - [1603] = {.lex_state = 94, .external_lex_state = 13}, - [1604] = {.lex_state = 94, .external_lex_state = 13}, - [1605] = {.lex_state = 94, .external_lex_state = 13}, + [1536] = {.lex_state = 94, .external_lex_state = 12}, + [1537] = {.lex_state = 94, .external_lex_state = 12}, + [1538] = {.lex_state = 84}, + [1539] = {.lex_state = 84}, + [1540] = {.lex_state = 94, .external_lex_state = 12}, + [1541] = {.lex_state = 94, .external_lex_state = 12}, + [1542] = {.lex_state = 94, .external_lex_state = 12}, + [1543] = {.lex_state = 94, .external_lex_state = 12}, + [1544] = {.lex_state = 94, .external_lex_state = 12}, + [1545] = {.lex_state = 84}, + [1546] = {.lex_state = 94, .external_lex_state = 12}, + [1547] = {.lex_state = 94, .external_lex_state = 12}, + [1548] = {.lex_state = 84}, + [1549] = {.lex_state = 94, .external_lex_state = 12}, + [1550] = {.lex_state = 94, .external_lex_state = 12}, + [1551] = {.lex_state = 94, .external_lex_state = 12}, + [1552] = {.lex_state = 94, .external_lex_state = 12}, + [1553] = {.lex_state = 94, .external_lex_state = 12}, + [1554] = {.lex_state = 94, .external_lex_state = 12}, + [1555] = {.lex_state = 94, .external_lex_state = 12}, + [1556] = {.lex_state = 94, .external_lex_state = 12}, + [1557] = {.lex_state = 94, .external_lex_state = 12}, + [1558] = {.lex_state = 94, .external_lex_state = 12}, + [1559] = {.lex_state = 94, .external_lex_state = 12}, + [1560] = {.lex_state = 94, .external_lex_state = 12}, + [1561] = {.lex_state = 94, .external_lex_state = 12}, + [1562] = {.lex_state = 94, .external_lex_state = 12}, + [1563] = {.lex_state = 94, .external_lex_state = 12}, + [1564] = {.lex_state = 94, .external_lex_state = 12}, + [1565] = {.lex_state = 94, .external_lex_state = 12}, + [1566] = {.lex_state = 94, .external_lex_state = 12}, + [1567] = {.lex_state = 94, .external_lex_state = 12}, + [1568] = {.lex_state = 94, .external_lex_state = 12}, + [1569] = {.lex_state = 94, .external_lex_state = 12}, + [1570] = {.lex_state = 94, .external_lex_state = 12}, + [1571] = {.lex_state = 84}, + [1572] = {.lex_state = 94, .external_lex_state = 12}, + [1573] = {.lex_state = 94, .external_lex_state = 12}, + [1574] = {.lex_state = 94, .external_lex_state = 12}, + [1575] = {.lex_state = 94, .external_lex_state = 12}, + [1576] = {.lex_state = 94, .external_lex_state = 12}, + [1577] = {.lex_state = 84}, + [1578] = {.lex_state = 94, .external_lex_state = 12}, + [1579] = {.lex_state = 94, .external_lex_state = 12}, + [1580] = {.lex_state = 94, .external_lex_state = 12}, + [1581] = {.lex_state = 94, .external_lex_state = 12}, + [1582] = {.lex_state = 94, .external_lex_state = 12}, + [1583] = {.lex_state = 94, .external_lex_state = 12}, + [1584] = {.lex_state = 84}, + [1585] = {.lex_state = 94, .external_lex_state = 12}, + [1586] = {.lex_state = 94, .external_lex_state = 12}, + [1587] = {.lex_state = 94, .external_lex_state = 12}, + [1588] = {.lex_state = 94, .external_lex_state = 12}, + [1589] = {.lex_state = 94, .external_lex_state = 12}, + [1590] = {.lex_state = 94, .external_lex_state = 12}, + [1591] = {.lex_state = 94, .external_lex_state = 12}, + [1592] = {.lex_state = 94, .external_lex_state = 12}, + [1593] = {.lex_state = 94, .external_lex_state = 12}, + [1594] = {.lex_state = 94, .external_lex_state = 12}, + [1595] = {.lex_state = 94, .external_lex_state = 12}, + [1596] = {.lex_state = 94, .external_lex_state = 12}, + [1597] = {.lex_state = 94, .external_lex_state = 12}, + [1598] = {.lex_state = 94, .external_lex_state = 12}, + [1599] = {.lex_state = 94, .external_lex_state = 12}, + [1600] = {.lex_state = 94, .external_lex_state = 12}, + [1601] = {.lex_state = 94, .external_lex_state = 12}, + [1602] = {.lex_state = 94, .external_lex_state = 12}, + [1603] = {.lex_state = 94, .external_lex_state = 12}, + [1604] = {.lex_state = 94, .external_lex_state = 12}, + [1605] = {.lex_state = 94, .external_lex_state = 12}, [1606] = {.lex_state = 84}, - [1607] = {.lex_state = 94, .external_lex_state = 13}, - [1608] = {.lex_state = 94, .external_lex_state = 13}, - [1609] = {.lex_state = 94, .external_lex_state = 13}, - [1610] = {.lex_state = 94, .external_lex_state = 13}, - [1611] = {.lex_state = 94, .external_lex_state = 13}, - [1612] = {.lex_state = 84}, - [1613] = {.lex_state = 94, .external_lex_state = 13}, + [1607] = {.lex_state = 94, .external_lex_state = 12}, + [1608] = {.lex_state = 84}, + [1609] = {.lex_state = 84}, + [1610] = {.lex_state = 94, .external_lex_state = 12}, + [1611] = {.lex_state = 84}, + [1612] = {.lex_state = 94, .external_lex_state = 12}, + [1613] = {.lex_state = 94, .external_lex_state = 12}, [1614] = {.lex_state = 84}, - [1615] = {.lex_state = 94, .external_lex_state = 13}, - [1616] = {.lex_state = 84}, - [1617] = {.lex_state = 94, .external_lex_state = 13}, - [1618] = {.lex_state = 94, .external_lex_state = 13}, - [1619] = {.lex_state = 94, .external_lex_state = 13}, - [1620] = {.lex_state = 94, .external_lex_state = 13}, - [1621] = {.lex_state = 94, .external_lex_state = 13}, - [1622] = {.lex_state = 94, .external_lex_state = 13}, - [1623] = {.lex_state = 94, .external_lex_state = 13}, - [1624] = {.lex_state = 94, .external_lex_state = 13}, - [1625] = {.lex_state = 94, .external_lex_state = 13}, - [1626] = {.lex_state = 94, .external_lex_state = 13}, - [1627] = {.lex_state = 94, .external_lex_state = 13}, - [1628] = {.lex_state = 94, .external_lex_state = 13}, - [1629] = {.lex_state = 84}, - [1630] = {.lex_state = 94, .external_lex_state = 13}, - [1631] = {.lex_state = 94, .external_lex_state = 13}, - [1632] = {.lex_state = 94, .external_lex_state = 13}, - [1633] = {.lex_state = 94, .external_lex_state = 13}, - [1634] = {.lex_state = 94, .external_lex_state = 13}, - [1635] = {.lex_state = 94, .external_lex_state = 13}, - [1636] = {.lex_state = 84}, - [1637] = {.lex_state = 94, .external_lex_state = 13}, - [1638] = {.lex_state = 84}, - [1639] = {.lex_state = 94, .external_lex_state = 13}, - [1640] = {.lex_state = 94, .external_lex_state = 13}, - [1641] = {.lex_state = 94, .external_lex_state = 13}, - [1642] = {.lex_state = 94, .external_lex_state = 13}, - [1643] = {.lex_state = 94, .external_lex_state = 13}, - [1644] = {.lex_state = 94, .external_lex_state = 13}, - [1645] = {.lex_state = 94, .external_lex_state = 13}, - [1646] = {.lex_state = 77, .external_lex_state = 13}, + [1615] = {.lex_state = 94, .external_lex_state = 12}, + [1616] = {.lex_state = 94, .external_lex_state = 12}, + [1617] = {.lex_state = 94, .external_lex_state = 12}, + [1618] = {.lex_state = 94, .external_lex_state = 12}, + [1619] = {.lex_state = 94, .external_lex_state = 12}, + [1620] = {.lex_state = 94, .external_lex_state = 12}, + [1621] = {.lex_state = 94, .external_lex_state = 12}, + [1622] = {.lex_state = 94, .external_lex_state = 12}, + [1623] = {.lex_state = 94, .external_lex_state = 12}, + [1624] = {.lex_state = 84}, + [1625] = {.lex_state = 94, .external_lex_state = 12}, + [1626] = {.lex_state = 94, .external_lex_state = 12}, + [1627] = {.lex_state = 94, .external_lex_state = 12}, + [1628] = {.lex_state = 94, .external_lex_state = 12}, + [1629] = {.lex_state = 94, .external_lex_state = 12}, + [1630] = {.lex_state = 94, .external_lex_state = 12}, + [1631] = {.lex_state = 94, .external_lex_state = 12}, + [1632] = {.lex_state = 84}, + [1633] = {.lex_state = 94, .external_lex_state = 12}, + [1634] = {.lex_state = 84}, + [1635] = {.lex_state = 94, .external_lex_state = 12}, + [1636] = {.lex_state = 94, .external_lex_state = 12}, + [1637] = {.lex_state = 94, .external_lex_state = 12}, + [1638] = {.lex_state = 94, .external_lex_state = 12}, + [1639] = {.lex_state = 94, .external_lex_state = 12}, + [1640] = {.lex_state = 94, .external_lex_state = 12}, + [1641] = {.lex_state = 94, .external_lex_state = 12}, + [1642] = {.lex_state = 94, .external_lex_state = 12}, + [1643] = {.lex_state = 94, .external_lex_state = 12}, + [1644] = {.lex_state = 94, .external_lex_state = 12}, + [1645] = {.lex_state = 94, .external_lex_state = 12}, + [1646] = {.lex_state = 77, .external_lex_state = 12}, [1647] = {.lex_state = 28, .external_lex_state = 6}, [1648] = {.lex_state = 28, .external_lex_state = 6}, [1649] = {.lex_state = 28, .external_lex_state = 6}, [1650] = {.lex_state = 28, .external_lex_state = 6}, [1651] = {.lex_state = 28, .external_lex_state = 6}, [1652] = {.lex_state = 28, .external_lex_state = 6}, - [1653] = {.lex_state = 187, .external_lex_state = 6}, - [1654] = {.lex_state = 187, .external_lex_state = 6}, + [1653] = {.lex_state = 28, .external_lex_state = 6}, + [1654] = {.lex_state = 28, .external_lex_state = 6}, [1655] = {.lex_state = 28, .external_lex_state = 6}, [1656] = {.lex_state = 28, .external_lex_state = 6}, - [1657] = {.lex_state = 28, .external_lex_state = 6}, - [1658] = {.lex_state = 28, .external_lex_state = 6}, - [1659] = {.lex_state = 28, .external_lex_state = 6}, - [1660] = {.lex_state = 187, .external_lex_state = 6}, - [1661] = {.lex_state = 28, .external_lex_state = 8}, + [1657] = {.lex_state = 187, .external_lex_state = 6}, + [1658] = {.lex_state = 187, .external_lex_state = 6}, + [1659] = {.lex_state = 28, .external_lex_state = 8}, + [1660] = {.lex_state = 28, .external_lex_state = 6}, + [1661] = {.lex_state = 187, .external_lex_state = 6}, [1662] = {.lex_state = 28, .external_lex_state = 6}, [1663] = {.lex_state = 187, .external_lex_state = 6}, [1664] = {.lex_state = 28, .external_lex_state = 8}, - [1665] = {.lex_state = 187, .external_lex_state = 6}, - [1666] = {.lex_state = 28, .external_lex_state = 8}, - [1667] = {.lex_state = 34, .external_lex_state = 15}, - [1668] = {.lex_state = 28, .external_lex_state = 6}, - [1669] = {.lex_state = 187, .external_lex_state = 6}, - [1670] = {.lex_state = 28, .external_lex_state = 8}, + [1665] = {.lex_state = 187, .external_lex_state = 8}, + [1666] = {.lex_state = 187, .external_lex_state = 6}, + [1667] = {.lex_state = 187, .external_lex_state = 6}, + [1668] = {.lex_state = 187, .external_lex_state = 6}, + [1669] = {.lex_state = 96, .external_lex_state = 2}, + [1670] = {.lex_state = 187, .external_lex_state = 6}, [1671] = {.lex_state = 187, .external_lex_state = 6}, [1672] = {.lex_state = 187, .external_lex_state = 6}, - [1673] = {.lex_state = 28, .external_lex_state = 8}, - [1674] = {.lex_state = 28, .external_lex_state = 6}, - [1675] = {.lex_state = 28, .external_lex_state = 8}, - [1676] = {.lex_state = 187, .external_lex_state = 6}, - [1677] = {.lex_state = 187, .external_lex_state = 6}, - [1678] = {.lex_state = 28, .external_lex_state = 6}, - [1679] = {.lex_state = 96, .external_lex_state = 2}, - [1680] = {.lex_state = 28, .external_lex_state = 6}, + [1673] = {.lex_state = 28, .external_lex_state = 6}, + [1674] = {.lex_state = 34, .external_lex_state = 15}, + [1675] = {.lex_state = 74, .external_lex_state = 10}, + [1676] = {.lex_state = 28, .external_lex_state = 6}, + [1677] = {.lex_state = 28, .external_lex_state = 8}, + [1678] = {.lex_state = 28, .external_lex_state = 8}, + [1679] = {.lex_state = 28, .external_lex_state = 8}, + [1680] = {.lex_state = 187, .external_lex_state = 6}, [1681] = {.lex_state = 187, .external_lex_state = 6}, - [1682] = {.lex_state = 74, .external_lex_state = 10}, - [1683] = {.lex_state = 187, .external_lex_state = 6}, + [1682] = {.lex_state = 28, .external_lex_state = 8}, + [1683] = {.lex_state = 28, .external_lex_state = 6}, [1684] = {.lex_state = 28, .external_lex_state = 8}, - [1685] = {.lex_state = 187, .external_lex_state = 8}, + [1685] = {.lex_state = 187, .external_lex_state = 6}, [1686] = {.lex_state = 187, .external_lex_state = 6}, [1687] = {.lex_state = 187, .external_lex_state = 6}, - [1688] = {.lex_state = 187, .external_lex_state = 6}, - [1689] = {.lex_state = 187, .external_lex_state = 8}, - [1690] = {.lex_state = 28, .external_lex_state = 8}, + [1688] = {.lex_state = 28, .external_lex_state = 6}, + [1689] = {.lex_state = 187, .external_lex_state = 6}, + [1690] = {.lex_state = 96, .external_lex_state = 16}, [1691] = {.lex_state = 28, .external_lex_state = 8}, - [1692] = {.lex_state = 28, .external_lex_state = 8}, + [1692] = {.lex_state = 75, .external_lex_state = 10}, [1693] = {.lex_state = 28, .external_lex_state = 8}, - [1694] = {.lex_state = 34, .external_lex_state = 15}, - [1695] = {.lex_state = 28, .external_lex_state = 8}, - [1696] = {.lex_state = 28, .external_lex_state = 8}, - [1697] = {.lex_state = 28, .external_lex_state = 8}, - [1698] = {.lex_state = 75, .external_lex_state = 10}, - [1699] = {.lex_state = 34, .external_lex_state = 10}, - [1700] = {.lex_state = 75, .external_lex_state = 10}, - [1701] = {.lex_state = 28, .external_lex_state = 8}, - [1702] = {.lex_state = 187, .external_lex_state = 6}, + [1694] = {.lex_state = 28, .external_lex_state = 8}, + [1695] = {.lex_state = 75, .external_lex_state = 10}, + [1696] = {.lex_state = 187, .external_lex_state = 6}, + [1697] = {.lex_state = 96, .external_lex_state = 16}, + [1698] = {.lex_state = 187, .external_lex_state = 6}, + [1699] = {.lex_state = 28, .external_lex_state = 8}, + [1700] = {.lex_state = 28, .external_lex_state = 8}, + [1701] = {.lex_state = 187, .external_lex_state = 8}, + [1702] = {.lex_state = 28, .external_lex_state = 8}, [1703] = {.lex_state = 28, .external_lex_state = 8}, - [1704] = {.lex_state = 28, .external_lex_state = 8}, - [1705] = {.lex_state = 96, .external_lex_state = 16}, + [1704] = {.lex_state = 187, .external_lex_state = 6}, + [1705] = {.lex_state = 187, .external_lex_state = 6}, [1706] = {.lex_state = 28, .external_lex_state = 8}, - [1707] = {.lex_state = 28, .external_lex_state = 6}, - [1708] = {.lex_state = 75, .external_lex_state = 10}, + [1707] = {.lex_state = 75, .external_lex_state = 10}, + [1708] = {.lex_state = 28, .external_lex_state = 8}, [1709] = {.lex_state = 28, .external_lex_state = 8}, - [1710] = {.lex_state = 96, .external_lex_state = 16}, - [1711] = {.lex_state = 187, .external_lex_state = 8}, - [1712] = {.lex_state = 34, .external_lex_state = 15}, + [1710] = {.lex_state = 28, .external_lex_state = 8}, + [1711] = {.lex_state = 187, .external_lex_state = 6}, + [1712] = {.lex_state = 28, .external_lex_state = 8}, [1713] = {.lex_state = 28, .external_lex_state = 8}, - [1714] = {.lex_state = 28, .external_lex_state = 8}, - [1715] = {.lex_state = 28, .external_lex_state = 8}, - [1716] = {.lex_state = 34, .external_lex_state = 15}, - [1717] = {.lex_state = 187, .external_lex_state = 8}, + [1714] = {.lex_state = 187, .external_lex_state = 6}, + [1715] = {.lex_state = 187, .external_lex_state = 8}, + [1716] = {.lex_state = 28, .external_lex_state = 8}, + [1717] = {.lex_state = 28, .external_lex_state = 8}, [1718] = {.lex_state = 28, .external_lex_state = 8}, - [1719] = {.lex_state = 187, .external_lex_state = 6}, - [1720] = {.lex_state = 28, .external_lex_state = 8}, - [1721] = {.lex_state = 187, .external_lex_state = 6}, - [1722] = {.lex_state = 187, .external_lex_state = 6}, - [1723] = {.lex_state = 28, .external_lex_state = 8}, - [1724] = {.lex_state = 96, .external_lex_state = 16}, - [1725] = {.lex_state = 28, .external_lex_state = 8}, + [1719] = {.lex_state = 28, .external_lex_state = 8}, + [1720] = {.lex_state = 96, .external_lex_state = 16}, + [1721] = {.lex_state = 28, .external_lex_state = 8}, + [1722] = {.lex_state = 96, .external_lex_state = 16}, + [1723] = {.lex_state = 187, .external_lex_state = 8}, + [1724] = {.lex_state = 34, .external_lex_state = 15}, + [1725] = {.lex_state = 187, .external_lex_state = 8}, [1726] = {.lex_state = 28, .external_lex_state = 8}, [1727] = {.lex_state = 28, .external_lex_state = 8}, [1728] = {.lex_state = 28, .external_lex_state = 8}, [1729] = {.lex_state = 28, .external_lex_state = 8}, [1730] = {.lex_state = 187, .external_lex_state = 6}, - [1731] = {.lex_state = 187, .external_lex_state = 6}, + [1731] = {.lex_state = 96, .external_lex_state = 16}, [1732] = {.lex_state = 28, .external_lex_state = 8}, - [1733] = {.lex_state = 187, .external_lex_state = 6}, + [1733] = {.lex_state = 28, .external_lex_state = 8}, [1734] = {.lex_state = 28, .external_lex_state = 8}, - [1735] = {.lex_state = 28, .external_lex_state = 8}, - [1736] = {.lex_state = 187, .external_lex_state = 8}, - [1737] = {.lex_state = 75, .external_lex_state = 10}, - [1738] = {.lex_state = 187, .external_lex_state = 6}, - [1739] = {.lex_state = 187, .external_lex_state = 8}, - [1740] = {.lex_state = 187, .external_lex_state = 6}, - [1741] = {.lex_state = 96, .external_lex_state = 16}, - [1742] = {.lex_state = 187, .external_lex_state = 8}, - [1743] = {.lex_state = 96, .external_lex_state = 16}, + [1735] = {.lex_state = 187, .external_lex_state = 8}, + [1736] = {.lex_state = 187, .external_lex_state = 6}, + [1737] = {.lex_state = 187, .external_lex_state = 8}, + [1738] = {.lex_state = 34, .external_lex_state = 15}, + [1739] = {.lex_state = 34, .external_lex_state = 15}, + [1740] = {.lex_state = 34, .external_lex_state = 10}, + [1741] = {.lex_state = 28, .external_lex_state = 8}, + [1742] = {.lex_state = 28, .external_lex_state = 8}, + [1743] = {.lex_state = 28, .external_lex_state = 6}, [1744] = {.lex_state = 28, .external_lex_state = 8}, - [1745] = {.lex_state = 34, .external_lex_state = 10}, + [1745] = {.lex_state = 28, .external_lex_state = 8}, [1746] = {.lex_state = 28, .external_lex_state = 8}, - [1747] = {.lex_state = 28, .external_lex_state = 8}, - [1748] = {.lex_state = 187, .external_lex_state = 6}, - [1749] = {.lex_state = 28, .external_lex_state = 8}, - [1750] = {.lex_state = 96, .external_lex_state = 16}, + [1747] = {.lex_state = 187, .external_lex_state = 6}, + [1748] = {.lex_state = 34, .external_lex_state = 10}, + [1749] = {.lex_state = 75, .external_lex_state = 10}, + [1750] = {.lex_state = 187, .external_lex_state = 8}, [1751] = {.lex_state = 28, .external_lex_state = 6}, - [1752] = {.lex_state = 187, .external_lex_state = 8}, - [1753] = {.lex_state = 187, .external_lex_state = 8}, - [1754] = {.lex_state = 187, .external_lex_state = 8}, - [1755] = {.lex_state = 28, .external_lex_state = 6}, - [1756] = {.lex_state = 28, .external_lex_state = 6}, - [1757] = {.lex_state = 28, .external_lex_state = 6}, - [1758] = {.lex_state = 28, .external_lex_state = 6}, - [1759] = {.lex_state = 28, .external_lex_state = 6}, - [1760] = {.lex_state = 28, .external_lex_state = 6}, - [1761] = {.lex_state = 28, .external_lex_state = 6}, + [1752] = {.lex_state = 34, .external_lex_state = 15}, + [1753] = {.lex_state = 34, .external_lex_state = 10}, + [1754] = {.lex_state = 187, .external_lex_state = 6}, + [1755] = {.lex_state = 34, .external_lex_state = 15}, + [1756] = {.lex_state = 187, .external_lex_state = 8}, + [1757] = {.lex_state = 34, .external_lex_state = 15}, + [1758] = {.lex_state = 187, .external_lex_state = 6}, + [1759] = {.lex_state = 34, .external_lex_state = 15}, + [1760] = {.lex_state = 34, .external_lex_state = 15}, + [1761] = {.lex_state = 199, .external_lex_state = 17}, [1762] = {.lex_state = 28, .external_lex_state = 6}, - [1763] = {.lex_state = 28, .external_lex_state = 6}, - [1764] = {.lex_state = 28, .external_lex_state = 6}, - [1765] = {.lex_state = 28, .external_lex_state = 6}, - [1766] = {.lex_state = 28, .external_lex_state = 6}, - [1767] = {.lex_state = 28, .external_lex_state = 6}, - [1768] = {.lex_state = 28, .external_lex_state = 6}, - [1769] = {.lex_state = 28, .external_lex_state = 6}, - [1770] = {.lex_state = 28, .external_lex_state = 6}, - [1771] = {.lex_state = 28, .external_lex_state = 6}, - [1772] = {.lex_state = 28, .external_lex_state = 6}, - [1773] = {.lex_state = 28, .external_lex_state = 6}, + [1763] = {.lex_state = 34, .external_lex_state = 15}, + [1764] = {.lex_state = 34, .external_lex_state = 15}, + [1765] = {.lex_state = 34, .external_lex_state = 15}, + [1766] = {.lex_state = 34, .external_lex_state = 15}, + [1767] = {.lex_state = 34, .external_lex_state = 15}, + [1768] = {.lex_state = 34, .external_lex_state = 15}, + [1769] = {.lex_state = 34, .external_lex_state = 15}, + [1770] = {.lex_state = 34, .external_lex_state = 15}, + [1771] = {.lex_state = 34, .external_lex_state = 15}, + [1772] = {.lex_state = 34, .external_lex_state = 15}, + [1773] = {.lex_state = 34, .external_lex_state = 15}, [1774] = {.lex_state = 28, .external_lex_state = 6}, [1775] = {.lex_state = 28, .external_lex_state = 6}, [1776] = {.lex_state = 28, .external_lex_state = 6}, [1777] = {.lex_state = 28, .external_lex_state = 6}, - [1778] = {.lex_state = 187, .external_lex_state = 8}, + [1778] = {.lex_state = 28, .external_lex_state = 6}, [1779] = {.lex_state = 28, .external_lex_state = 6}, [1780] = {.lex_state = 28, .external_lex_state = 6}, - [1781] = {.lex_state = 187, .external_lex_state = 6}, + [1781] = {.lex_state = 28, .external_lex_state = 6}, [1782] = {.lex_state = 28, .external_lex_state = 6}, [1783] = {.lex_state = 28, .external_lex_state = 6}, [1784] = {.lex_state = 28, .external_lex_state = 6}, [1785] = {.lex_state = 28, .external_lex_state = 6}, [1786] = {.lex_state = 28, .external_lex_state = 6}, - [1787] = {.lex_state = 187, .external_lex_state = 8}, - [1788] = {.lex_state = 187, .external_lex_state = 8}, - [1789] = {.lex_state = 187, .external_lex_state = 8}, - [1790] = {.lex_state = 187, .external_lex_state = 8}, - [1791] = {.lex_state = 187, .external_lex_state = 8}, - [1792] = {.lex_state = 187, .external_lex_state = 8}, - [1793] = {.lex_state = 187, .external_lex_state = 8}, - [1794] = {.lex_state = 187, .external_lex_state = 8}, - [1795] = {.lex_state = 187, .external_lex_state = 8}, - [1796] = {.lex_state = 187, .external_lex_state = 8}, - [1797] = {.lex_state = 187, .external_lex_state = 8}, - [1798] = {.lex_state = 96, .external_lex_state = 16}, - [1799] = {.lex_state = 187, .external_lex_state = 8}, + [1787] = {.lex_state = 28, .external_lex_state = 6}, + [1788] = {.lex_state = 28, .external_lex_state = 6}, + [1789] = {.lex_state = 28, .external_lex_state = 6}, + [1790] = {.lex_state = 28, .external_lex_state = 6}, + [1791] = {.lex_state = 28, .external_lex_state = 6}, + [1792] = {.lex_state = 28, .external_lex_state = 6}, + [1793] = {.lex_state = 28, .external_lex_state = 6}, + [1794] = {.lex_state = 28, .external_lex_state = 6}, + [1795] = {.lex_state = 28, .external_lex_state = 6}, + [1796] = {.lex_state = 28, .external_lex_state = 6}, + [1797] = {.lex_state = 34, .external_lex_state = 15}, + [1798] = {.lex_state = 28, .external_lex_state = 6}, + [1799] = {.lex_state = 28, .external_lex_state = 6}, [1800] = {.lex_state = 187, .external_lex_state = 8}, - [1801] = {.lex_state = 28, .external_lex_state = 6}, + [1801] = {.lex_state = 34, .external_lex_state = 15}, [1802] = {.lex_state = 28, .external_lex_state = 6}, - [1803] = {.lex_state = 96, .external_lex_state = 2}, + [1803] = {.lex_state = 28, .external_lex_state = 6}, [1804] = {.lex_state = 28, .external_lex_state = 6}, - [1805] = {.lex_state = 187, .external_lex_state = 8}, - [1806] = {.lex_state = 96, .external_lex_state = 16}, + [1805] = {.lex_state = 28, .external_lex_state = 6}, + [1806] = {.lex_state = 28, .external_lex_state = 6}, [1807] = {.lex_state = 187, .external_lex_state = 8}, - [1808] = {.lex_state = 187, .external_lex_state = 8}, - [1809] = {.lex_state = 96, .external_lex_state = 16}, - [1810] = {.lex_state = 96, .external_lex_state = 16}, - [1811] = {.lex_state = 96, .external_lex_state = 16}, - [1812] = {.lex_state = 199, .external_lex_state = 17}, - [1813] = {.lex_state = 96, .external_lex_state = 16}, - [1814] = {.lex_state = 96, .external_lex_state = 16}, - [1815] = {.lex_state = 99}, - [1816] = {.lex_state = 96, .external_lex_state = 16}, - [1817] = {.lex_state = 96, .external_lex_state = 16}, - [1818] = {.lex_state = 96, .external_lex_state = 16}, - [1819] = {.lex_state = 96, .external_lex_state = 16}, - [1820] = {.lex_state = 187, .external_lex_state = 8}, - [1821] = {.lex_state = 187, .external_lex_state = 8}, - [1822] = {.lex_state = 96, .external_lex_state = 16}, - [1823] = {.lex_state = 96, .external_lex_state = 16}, + [1808] = {.lex_state = 34, .external_lex_state = 15}, + [1809] = {.lex_state = 187, .external_lex_state = 6}, + [1810] = {.lex_state = 28, .external_lex_state = 6}, + [1811] = {.lex_state = 28, .external_lex_state = 6}, + [1812] = {.lex_state = 187, .external_lex_state = 8}, + [1813] = {.lex_state = 28, .external_lex_state = 6}, + [1814] = {.lex_state = 34, .external_lex_state = 15}, + [1815] = {.lex_state = 34, .external_lex_state = 15}, + [1816] = {.lex_state = 34, .external_lex_state = 15}, + [1817] = {.lex_state = 34, .external_lex_state = 15}, + [1818] = {.lex_state = 34, .external_lex_state = 15}, + [1819] = {.lex_state = 34, .external_lex_state = 15}, + [1820] = {.lex_state = 28, .external_lex_state = 6}, + [1821] = {.lex_state = 34, .external_lex_state = 15}, + [1822] = {.lex_state = 187, .external_lex_state = 6}, + [1823] = {.lex_state = 96, .external_lex_state = 2}, [1824] = {.lex_state = 96, .external_lex_state = 16}, - [1825] = {.lex_state = 96, .external_lex_state = 16}, - [1826] = {.lex_state = 187, .external_lex_state = 8}, - [1827] = {.lex_state = 187, .external_lex_state = 8}, - [1828] = {.lex_state = 187, .external_lex_state = 8}, + [1825] = {.lex_state = 28, .external_lex_state = 6}, + [1826] = {.lex_state = 96, .external_lex_state = 16}, + [1827] = {.lex_state = 96, .external_lex_state = 16}, + [1828] = {.lex_state = 96, .external_lex_state = 16}, [1829] = {.lex_state = 96, .external_lex_state = 16}, - [1830] = {.lex_state = 187, .external_lex_state = 6}, - [1831] = {.lex_state = 187, .external_lex_state = 8}, - [1832] = {.lex_state = 199, .external_lex_state = 17}, - [1833] = {.lex_state = 28, .external_lex_state = 6}, - [1834] = {.lex_state = 99}, - [1835] = {.lex_state = 28, .external_lex_state = 6}, - [1836] = {.lex_state = 99}, - [1837] = {.lex_state = 99}, - [1838] = {.lex_state = 96, .external_lex_state = 2}, - [1839] = {.lex_state = 187, .external_lex_state = 6}, - [1840] = {.lex_state = 96, .external_lex_state = 16}, - [1841] = {.lex_state = 187, .external_lex_state = 8}, + [1830] = {.lex_state = 96, .external_lex_state = 16}, + [1831] = {.lex_state = 96, .external_lex_state = 16}, + [1832] = {.lex_state = 96, .external_lex_state = 16}, + [1833] = {.lex_state = 187, .external_lex_state = 8}, + [1834] = {.lex_state = 28, .external_lex_state = 6}, + [1835] = {.lex_state = 96, .external_lex_state = 16}, + [1836] = {.lex_state = 187, .external_lex_state = 8}, + [1837] = {.lex_state = 96, .external_lex_state = 16}, + [1838] = {.lex_state = 28, .external_lex_state = 6}, + [1839] = {.lex_state = 187, .external_lex_state = 8}, + [1840] = {.lex_state = 187, .external_lex_state = 8}, + [1841] = {.lex_state = 96, .external_lex_state = 16}, [1842] = {.lex_state = 96, .external_lex_state = 16}, - [1843] = {.lex_state = 96, .external_lex_state = 16}, - [1844] = {.lex_state = 96, .external_lex_state = 16}, - [1845] = {.lex_state = 187, .external_lex_state = 8}, + [1843] = {.lex_state = 99}, + [1844] = {.lex_state = 99}, + [1845] = {.lex_state = 96, .external_lex_state = 16}, [1846] = {.lex_state = 96, .external_lex_state = 16}, - [1847] = {.lex_state = 96, .external_lex_state = 16}, - [1848] = {.lex_state = 96, .external_lex_state = 16}, - [1849] = {.lex_state = 96, .external_lex_state = 16}, - [1850] = {.lex_state = 96, .external_lex_state = 16}, - [1851] = {.lex_state = 187, .external_lex_state = 6}, - [1852] = {.lex_state = 187, .external_lex_state = 8}, - [1853] = {.lex_state = 96, .external_lex_state = 2}, - [1854] = {.lex_state = 187, .external_lex_state = 6}, - [1855] = {.lex_state = 34, .external_lex_state = 15}, - [1856] = {.lex_state = 99}, - [1857] = {.lex_state = 28, .external_lex_state = 6}, - [1858] = {.lex_state = 99}, - [1859] = {.lex_state = 34, .external_lex_state = 15}, - [1860] = {.lex_state = 34, .external_lex_state = 15}, + [1847] = {.lex_state = 90, .external_lex_state = 17}, + [1848] = {.lex_state = 187, .external_lex_state = 8}, + [1849] = {.lex_state = 99}, + [1850] = {.lex_state = 187, .external_lex_state = 8}, + [1851] = {.lex_state = 96, .external_lex_state = 16}, + [1852] = {.lex_state = 96, .external_lex_state = 2}, + [1853] = {.lex_state = 96, .external_lex_state = 16}, + [1854] = {.lex_state = 96, .external_lex_state = 16}, + [1855] = {.lex_state = 96, .external_lex_state = 16}, + [1856] = {.lex_state = 96, .external_lex_state = 16}, + [1857] = {.lex_state = 96, .external_lex_state = 16}, + [1858] = {.lex_state = 96, .external_lex_state = 16}, + [1859] = {.lex_state = 99}, + [1860] = {.lex_state = 96, .external_lex_state = 16}, [1861] = {.lex_state = 28, .external_lex_state = 6}, - [1862] = {.lex_state = 34, .external_lex_state = 15}, + [1862] = {.lex_state = 187, .external_lex_state = 8}, [1863] = {.lex_state = 28, .external_lex_state = 6}, - [1864] = {.lex_state = 34, .external_lex_state = 15}, - [1865] = {.lex_state = 34, .external_lex_state = 15}, - [1866] = {.lex_state = 34, .external_lex_state = 15}, - [1867] = {.lex_state = 199, .external_lex_state = 17}, + [1864] = {.lex_state = 99}, + [1865] = {.lex_state = 96, .external_lex_state = 16}, + [1866] = {.lex_state = 99}, + [1867] = {.lex_state = 96, .external_lex_state = 16}, [1868] = {.lex_state = 99}, - [1869] = {.lex_state = 34, .external_lex_state = 15}, - [1870] = {.lex_state = 28, .external_lex_state = 6}, + [1869] = {.lex_state = 96, .external_lex_state = 16}, + [1870] = {.lex_state = 187, .external_lex_state = 8}, [1871] = {.lex_state = 187, .external_lex_state = 8}, - [1872] = {.lex_state = 34, .external_lex_state = 15}, + [1872] = {.lex_state = 99}, [1873] = {.lex_state = 187, .external_lex_state = 8}, - [1874] = {.lex_state = 34, .external_lex_state = 15}, - [1875] = {.lex_state = 34, .external_lex_state = 15}, - [1876] = {.lex_state = 34, .external_lex_state = 15}, - [1877] = {.lex_state = 34, .external_lex_state = 15}, - [1878] = {.lex_state = 34, .external_lex_state = 15}, - [1879] = {.lex_state = 34, .external_lex_state = 15}, - [1880] = {.lex_state = 34, .external_lex_state = 15}, - [1881] = {.lex_state = 34, .external_lex_state = 15}, + [1874] = {.lex_state = 96, .external_lex_state = 16}, + [1875] = {.lex_state = 187, .external_lex_state = 8}, + [1876] = {.lex_state = 99}, + [1877] = {.lex_state = 187, .external_lex_state = 8}, + [1878] = {.lex_state = 199, .external_lex_state = 17}, + [1879] = {.lex_state = 99}, + [1880] = {.lex_state = 28, .external_lex_state = 6}, + [1881] = {.lex_state = 187, .external_lex_state = 8}, [1882] = {.lex_state = 28, .external_lex_state = 6}, - [1883] = {.lex_state = 99}, - [1884] = {.lex_state = 28, .external_lex_state = 6}, + [1883] = {.lex_state = 187, .external_lex_state = 8}, + [1884] = {.lex_state = 187, .external_lex_state = 8}, [1885] = {.lex_state = 28, .external_lex_state = 6}, - [1886] = {.lex_state = 34, .external_lex_state = 15}, - [1887] = {.lex_state = 34, .external_lex_state = 15}, - [1888] = {.lex_state = 34, .external_lex_state = 15}, - [1889] = {.lex_state = 34, .external_lex_state = 15}, - [1890] = {.lex_state = 28, .external_lex_state = 6}, - [1891] = {.lex_state = 96, .external_lex_state = 16}, - [1892] = {.lex_state = 34, .external_lex_state = 15}, - [1893] = {.lex_state = 34, .external_lex_state = 15}, - [1894] = {.lex_state = 34, .external_lex_state = 15}, - [1895] = {.lex_state = 34, .external_lex_state = 15}, - [1896] = {.lex_state = 34, .external_lex_state = 15}, + [1886] = {.lex_state = 187, .external_lex_state = 8}, + [1887] = {.lex_state = 187, .external_lex_state = 8}, + [1888] = {.lex_state = 187, .external_lex_state = 8}, + [1889] = {.lex_state = 187, .external_lex_state = 8}, + [1890] = {.lex_state = 187, .external_lex_state = 8}, + [1891] = {.lex_state = 187, .external_lex_state = 8}, + [1892] = {.lex_state = 187, .external_lex_state = 8}, + [1893] = {.lex_state = 187, .external_lex_state = 8}, + [1894] = {.lex_state = 96, .external_lex_state = 2}, + [1895] = {.lex_state = 187, .external_lex_state = 8}, + [1896] = {.lex_state = 187, .external_lex_state = 8}, [1897] = {.lex_state = 28, .external_lex_state = 6}, [1898] = {.lex_state = 99}, - [1899] = {.lex_state = 34, .external_lex_state = 10}, - [1900] = {.lex_state = 99}, - [1901] = {.lex_state = 90, .external_lex_state = 17}, - [1902] = {.lex_state = 99}, - [1903] = {.lex_state = 99}, - [1904] = {.lex_state = 199, .external_lex_state = 17}, - [1905] = {.lex_state = 96}, + [1899] = {.lex_state = 99}, + [1900] = {.lex_state = 187, .external_lex_state = 6}, + [1901] = {.lex_state = 187, .external_lex_state = 8}, + [1902] = {.lex_state = 199, .external_lex_state = 17}, + [1903] = {.lex_state = 96, .external_lex_state = 16}, + [1904] = {.lex_state = 34, .external_lex_state = 10}, + [1905] = {.lex_state = 187, .external_lex_state = 6}, [1906] = {.lex_state = 91, .external_lex_state = 17}, - [1907] = {.lex_state = 91}, + [1907] = {.lex_state = 96}, [1908] = {.lex_state = 34, .external_lex_state = 10}, - [1909] = {.lex_state = 96, .external_lex_state = 2}, - [1910] = {.lex_state = 96, .external_lex_state = 2}, - [1911] = {.lex_state = 199, .external_lex_state = 17}, - [1912] = {.lex_state = 96, .external_lex_state = 18}, - [1913] = {.lex_state = 96, .external_lex_state = 18}, + [1909] = {.lex_state = 91}, + [1910] = {.lex_state = 96, .external_lex_state = 18}, + [1911] = {.lex_state = 96, .external_lex_state = 2}, + [1912] = {.lex_state = 96, .external_lex_state = 2}, + [1913] = {.lex_state = 199, .external_lex_state = 17}, [1914] = {.lex_state = 187, .external_lex_state = 6}, - [1915] = {.lex_state = 199, .external_lex_state = 17}, - [1916] = {.lex_state = 96, .external_lex_state = 2}, - [1917] = {.lex_state = 199, .external_lex_state = 17}, - [1918] = {.lex_state = 187, .external_lex_state = 6}, - [1919] = {.lex_state = 34, .external_lex_state = 10}, - [1920] = {.lex_state = 96, .external_lex_state = 2}, + [1915] = {.lex_state = 96, .external_lex_state = 18}, + [1916] = {.lex_state = 34, .external_lex_state = 10}, + [1917] = {.lex_state = 96, .external_lex_state = 2}, + [1918] = {.lex_state = 34, .external_lex_state = 10}, + [1919] = {.lex_state = 96, .external_lex_state = 2}, + [1920] = {.lex_state = 187, .external_lex_state = 6}, [1921] = {.lex_state = 187, .external_lex_state = 6}, - [1922] = {.lex_state = 96, .external_lex_state = 2}, - [1923] = {.lex_state = 187, .external_lex_state = 6}, - [1924] = {.lex_state = 34, .external_lex_state = 10}, + [1922] = {.lex_state = 187, .external_lex_state = 6}, + [1923] = {.lex_state = 96, .external_lex_state = 2}, + [1924] = {.lex_state = 96, .external_lex_state = 2}, [1925] = {.lex_state = 187, .external_lex_state = 6}, [1926] = {.lex_state = 187, .external_lex_state = 6}, - [1927] = {.lex_state = 34, .external_lex_state = 10}, - [1928] = {.lex_state = 96, .external_lex_state = 18}, + [1927] = {.lex_state = 187, .external_lex_state = 6}, + [1928] = {.lex_state = 199, .external_lex_state = 17}, [1929] = {.lex_state = 187, .external_lex_state = 6}, - [1930] = {.lex_state = 34, .external_lex_state = 10}, - [1931] = {.lex_state = 96, .external_lex_state = 2}, - [1932] = {.lex_state = 34, .external_lex_state = 10}, + [1930] = {.lex_state = 96, .external_lex_state = 2}, + [1931] = {.lex_state = 96, .external_lex_state = 18}, + [1932] = {.lex_state = 96, .external_lex_state = 2}, [1933] = {.lex_state = 199, .external_lex_state = 17}, [1934] = {.lex_state = 96, .external_lex_state = 2}, - [1935] = {.lex_state = 199, .external_lex_state = 17}, - [1936] = {.lex_state = 187, .external_lex_state = 6}, - [1937] = {.lex_state = 34, .external_lex_state = 10}, - [1938] = {.lex_state = 34, .external_lex_state = 10}, - [1939] = {.lex_state = 96, .external_lex_state = 2}, - [1940] = {.lex_state = 187, .external_lex_state = 6}, - [1941] = {.lex_state = 199, .external_lex_state = 17}, + [1935] = {.lex_state = 187, .external_lex_state = 6}, + [1936] = {.lex_state = 199, .external_lex_state = 17}, + [1937] = {.lex_state = 199, .external_lex_state = 17}, + [1938] = {.lex_state = 199, .external_lex_state = 17}, + [1939] = {.lex_state = 199, .external_lex_state = 17}, + [1940] = {.lex_state = 199, .external_lex_state = 17}, + [1941] = {.lex_state = 34, .external_lex_state = 10}, [1942] = {.lex_state = 96, .external_lex_state = 2}, - [1943] = {.lex_state = 187, .external_lex_state = 6}, - [1944] = {.lex_state = 34, .external_lex_state = 10}, - [1945] = {.lex_state = 187, .external_lex_state = 6}, - [1946] = {.lex_state = 34, .external_lex_state = 10}, - [1947] = {.lex_state = 187, .external_lex_state = 6}, - [1948] = {.lex_state = 34, .external_lex_state = 10}, - [1949] = {.lex_state = 90}, + [1943] = {.lex_state = 96, .external_lex_state = 2}, + [1944] = {.lex_state = 90}, + [1945] = {.lex_state = 199, .external_lex_state = 17}, + [1946] = {.lex_state = 96, .external_lex_state = 2}, + [1947] = {.lex_state = 199, .external_lex_state = 17}, + [1948] = {.lex_state = 199, .external_lex_state = 17}, + [1949] = {.lex_state = 199, .external_lex_state = 17}, [1950] = {.lex_state = 199, .external_lex_state = 17}, - [1951] = {.lex_state = 96, .external_lex_state = 2}, - [1952] = {.lex_state = 187, .external_lex_state = 6}, + [1951] = {.lex_state = 199, .external_lex_state = 17}, + [1952] = {.lex_state = 96, .external_lex_state = 2}, [1953] = {.lex_state = 199, .external_lex_state = 17}, - [1954] = {.lex_state = 96, .external_lex_state = 18}, - [1955] = {.lex_state = 199, .external_lex_state = 17}, + [1954] = {.lex_state = 199, .external_lex_state = 17}, + [1955] = {.lex_state = 96, .external_lex_state = 18}, [1956] = {.lex_state = 199, .external_lex_state = 17}, - [1957] = {.lex_state = 96, .external_lex_state = 2}, - [1958] = {.lex_state = 199, .external_lex_state = 17}, - [1959] = {.lex_state = 199, .external_lex_state = 17}, - [1960] = {.lex_state = 199, .external_lex_state = 17}, - [1961] = {.lex_state = 90}, - [1962] = {.lex_state = 199, .external_lex_state = 17}, - [1963] = {.lex_state = 96, .external_lex_state = 18}, - [1964] = {.lex_state = 91, .external_lex_state = 17}, - [1965] = {.lex_state = 187, .external_lex_state = 8}, - [1966] = {.lex_state = 199, .external_lex_state = 17}, - [1967] = {.lex_state = 96, .external_lex_state = 2}, - [1968] = {.lex_state = 187, .external_lex_state = 6}, + [1957] = {.lex_state = 96}, + [1958] = {.lex_state = 34, .external_lex_state = 10}, + [1959] = {.lex_state = 34, .external_lex_state = 10}, + [1960] = {.lex_state = 34, .external_lex_state = 10}, + [1961] = {.lex_state = 187, .external_lex_state = 6}, + [1962] = {.lex_state = 187, .external_lex_state = 6}, + [1963] = {.lex_state = 187, .external_lex_state = 6}, + [1964] = {.lex_state = 90}, + [1965] = {.lex_state = 34, .external_lex_state = 10}, + [1966] = {.lex_state = 96}, + [1967] = {.lex_state = 96, .external_lex_state = 18}, + [1968] = {.lex_state = 96}, [1969] = {.lex_state = 187, .external_lex_state = 6}, - [1970] = {.lex_state = 187, .external_lex_state = 8}, - [1971] = {.lex_state = 187, .external_lex_state = 8}, - [1972] = {.lex_state = 187, .external_lex_state = 8}, + [1970] = {.lex_state = 187, .external_lex_state = 6}, + [1971] = {.lex_state = 96, .external_lex_state = 2}, + [1972] = {.lex_state = 96}, [1973] = {.lex_state = 187, .external_lex_state = 6}, - [1974] = {.lex_state = 187, .external_lex_state = 8}, - [1975] = {.lex_state = 199, .external_lex_state = 17}, - [1976] = {.lex_state = 96}, - [1977] = {.lex_state = 187, .external_lex_state = 6}, - [1978] = {.lex_state = 187, .external_lex_state = 8}, - [1979] = {.lex_state = 199, .external_lex_state = 17}, - [1980] = {.lex_state = 34, .external_lex_state = 10}, + [1974] = {.lex_state = 96, .external_lex_state = 2}, + [1975] = {.lex_state = 34, .external_lex_state = 10}, + [1976] = {.lex_state = 187, .external_lex_state = 6}, + [1977] = {.lex_state = 92, .external_lex_state = 19}, + [1978] = {.lex_state = 187, .external_lex_state = 6}, + [1979] = {.lex_state = 187, .external_lex_state = 6}, + [1980] = {.lex_state = 199, .external_lex_state = 17}, [1981] = {.lex_state = 187, .external_lex_state = 6}, - [1982] = {.lex_state = 96, .external_lex_state = 2}, - [1983] = {.lex_state = 96, .external_lex_state = 2}, - [1984] = {.lex_state = 96, .external_lex_state = 2}, - [1985] = {.lex_state = 187, .external_lex_state = 8}, - [1986] = {.lex_state = 187, .external_lex_state = 8}, - [1987] = {.lex_state = 96, .external_lex_state = 2}, - [1988] = {.lex_state = 96, .external_lex_state = 2}, - [1989] = {.lex_state = 187, .external_lex_state = 8}, - [1990] = {.lex_state = 187, .external_lex_state = 8}, - [1991] = {.lex_state = 187, .external_lex_state = 6}, - [1992] = {.lex_state = 96, .external_lex_state = 2}, - [1993] = {.lex_state = 187, .external_lex_state = 6}, - [1994] = {.lex_state = 96}, + [1982] = {.lex_state = 199, .external_lex_state = 17}, + [1983] = {.lex_state = 96}, + [1984] = {.lex_state = 199, .external_lex_state = 17}, + [1985] = {.lex_state = 96, .external_lex_state = 2}, + [1986] = {.lex_state = 96, .external_lex_state = 2}, + [1987] = {.lex_state = 96}, + [1988] = {.lex_state = 199, .external_lex_state = 17}, + [1989] = {.lex_state = 187, .external_lex_state = 6}, + [1990] = {.lex_state = 34, .external_lex_state = 10}, + [1991] = {.lex_state = 199, .external_lex_state = 17}, + [1992] = {.lex_state = 96, .external_lex_state = 18}, + [1993] = {.lex_state = 199, .external_lex_state = 17}, + [1994] = {.lex_state = 187, .external_lex_state = 6}, [1995] = {.lex_state = 96}, [1996] = {.lex_state = 96}, - [1997] = {.lex_state = 92, .external_lex_state = 19}, - [1998] = {.lex_state = 34, .external_lex_state = 10}, - [1999] = {.lex_state = 34, .external_lex_state = 10}, + [1997] = {.lex_state = 96}, + [1998] = {.lex_state = 96, .external_lex_state = 18}, + [1999] = {.lex_state = 96}, [2000] = {.lex_state = 187, .external_lex_state = 6}, - [2001] = {.lex_state = 187, .external_lex_state = 6}, - [2002] = {.lex_state = 187, .external_lex_state = 8}, - [2003] = {.lex_state = 96}, - [2004] = {.lex_state = 96, .external_lex_state = 18}, - [2005] = {.lex_state = 96}, - [2006] = {.lex_state = 187, .external_lex_state = 6}, - [2007] = {.lex_state = 34, .external_lex_state = 10}, - [2008] = {.lex_state = 187, .external_lex_state = 6}, + [2001] = {.lex_state = 96, .external_lex_state = 2}, + [2002] = {.lex_state = 96, .external_lex_state = 2}, + [2003] = {.lex_state = 96, .external_lex_state = 2}, + [2004] = {.lex_state = 91, .external_lex_state = 17}, + [2005] = {.lex_state = 96, .external_lex_state = 2}, + [2006] = {.lex_state = 187, .external_lex_state = 8}, + [2007] = {.lex_state = 187, .external_lex_state = 6}, + [2008] = {.lex_state = 34, .external_lex_state = 10}, [2009] = {.lex_state = 96, .external_lex_state = 2}, - [2010] = {.lex_state = 96, .external_lex_state = 2}, - [2011] = {.lex_state = 34, .external_lex_state = 10}, - [2012] = {.lex_state = 199, .external_lex_state = 17}, + [2010] = {.lex_state = 187, .external_lex_state = 8}, + [2011] = {.lex_state = 187, .external_lex_state = 6}, + [2012] = {.lex_state = 187, .external_lex_state = 6}, [2013] = {.lex_state = 96, .external_lex_state = 2}, - [2014] = {.lex_state = 96}, - [2015] = {.lex_state = 96}, + [2014] = {.lex_state = 187, .external_lex_state = 6}, + [2015] = {.lex_state = 187, .external_lex_state = 8}, [2016] = {.lex_state = 96, .external_lex_state = 2}, - [2017] = {.lex_state = 187, .external_lex_state = 6}, - [2018] = {.lex_state = 199, .external_lex_state = 17}, - [2019] = {.lex_state = 96, .external_lex_state = 18}, - [2020] = {.lex_state = 199, .external_lex_state = 17}, - [2021] = {.lex_state = 96}, - [2022] = {.lex_state = 199, .external_lex_state = 17}, - [2023] = {.lex_state = 199, .external_lex_state = 17}, - [2024] = {.lex_state = 96, .external_lex_state = 18}, - [2025] = {.lex_state = 187, .external_lex_state = 8}, + [2017] = {.lex_state = 34, .external_lex_state = 10}, + [2018] = {.lex_state = 187, .external_lex_state = 8}, + [2019] = {.lex_state = 187, .external_lex_state = 6}, + [2020] = {.lex_state = 96, .external_lex_state = 18}, + [2021] = {.lex_state = 187, .external_lex_state = 6}, + [2022] = {.lex_state = 96, .external_lex_state = 2}, + [2023] = {.lex_state = 96}, + [2024] = {.lex_state = 34, .external_lex_state = 10}, + [2025] = {.lex_state = 34, .external_lex_state = 10}, [2026] = {.lex_state = 187, .external_lex_state = 6}, - [2027] = {.lex_state = 187, .external_lex_state = 8}, - [2028] = {.lex_state = 96}, - [2029] = {.lex_state = 187, .external_lex_state = 8}, - [2030] = {.lex_state = 96, .external_lex_state = 2}, - [2031] = {.lex_state = 187, .external_lex_state = 8}, - [2032] = {.lex_state = 187, .external_lex_state = 8}, - [2033] = {.lex_state = 187, .external_lex_state = 8}, - [2034] = {.lex_state = 96}, - [2035] = {.lex_state = 187, .external_lex_state = 8}, - [2036] = {.lex_state = 187, .external_lex_state = 8}, - [2037] = {.lex_state = 187, .external_lex_state = 6}, - [2038] = {.lex_state = 187, .external_lex_state = 8}, + [2027] = {.lex_state = 187, .external_lex_state = 6}, + [2028] = {.lex_state = 187, .external_lex_state = 8}, + [2029] = {.lex_state = 96, .external_lex_state = 2}, + [2030] = {.lex_state = 34, .external_lex_state = 10}, + [2031] = {.lex_state = 96, .external_lex_state = 2}, + [2032] = {.lex_state = 96, .external_lex_state = 2}, + [2033] = {.lex_state = 96, .external_lex_state = 2}, + [2034] = {.lex_state = 187, .external_lex_state = 8}, + [2035] = {.lex_state = 78}, + [2036] = {.lex_state = 187, .external_lex_state = 6}, + [2037] = {.lex_state = 199, .external_lex_state = 17}, + [2038] = {.lex_state = 96, .external_lex_state = 2}, [2039] = {.lex_state = 187, .external_lex_state = 6}, - [2040] = {.lex_state = 187, .external_lex_state = 6}, - [2041] = {.lex_state = 187, .external_lex_state = 6}, - [2042] = {.lex_state = 187, .external_lex_state = 8}, + [2040] = {.lex_state = 187, .external_lex_state = 8}, + [2041] = {.lex_state = 187, .external_lex_state = 8}, + [2042] = {.lex_state = 187, .external_lex_state = 6}, [2043] = {.lex_state = 187, .external_lex_state = 8}, - [2044] = {.lex_state = 187, .external_lex_state = 8}, + [2044] = {.lex_state = 96, .external_lex_state = 2}, [2045] = {.lex_state = 187, .external_lex_state = 6}, - [2046] = {.lex_state = 96, .external_lex_state = 2}, + [2046] = {.lex_state = 187, .external_lex_state = 8}, [2047] = {.lex_state = 187, .external_lex_state = 6}, [2048] = {.lex_state = 187, .external_lex_state = 8}, [2049] = {.lex_state = 187, .external_lex_state = 6}, - [2050] = {.lex_state = 187, .external_lex_state = 6}, - [2051] = {.lex_state = 187, .external_lex_state = 8}, - [2052] = {.lex_state = 187, .external_lex_state = 6}, + [2050] = {.lex_state = 187, .external_lex_state = 8}, + [2051] = {.lex_state = 187, .external_lex_state = 6}, + [2052] = {.lex_state = 187, .external_lex_state = 8}, [2053] = {.lex_state = 187, .external_lex_state = 6}, [2054] = {.lex_state = 187, .external_lex_state = 8}, - [2055] = {.lex_state = 96, .external_lex_state = 2}, - [2056] = {.lex_state = 187, .external_lex_state = 6}, - [2057] = {.lex_state = 187, .external_lex_state = 6}, + [2055] = {.lex_state = 187, .external_lex_state = 8}, + [2056] = {.lex_state = 187, .external_lex_state = 8}, + [2057] = {.lex_state = 187, .external_lex_state = 8}, [2058] = {.lex_state = 187, .external_lex_state = 6}, [2059] = {.lex_state = 187, .external_lex_state = 6}, - [2060] = {.lex_state = 96, .external_lex_state = 2}, - [2061] = {.lex_state = 78}, - [2062] = {.lex_state = 96, .external_lex_state = 2}, - [2063] = {.lex_state = 96, .external_lex_state = 2}, - [2064] = {.lex_state = 96, .external_lex_state = 2}, - [2065] = {.lex_state = 199, .external_lex_state = 17}, - [2066] = {.lex_state = 187, .external_lex_state = 6}, - [2067] = {.lex_state = 96, .external_lex_state = 2}, + [2060] = {.lex_state = 187, .external_lex_state = 6}, + [2061] = {.lex_state = 187, .external_lex_state = 8}, + [2062] = {.lex_state = 187, .external_lex_state = 8}, + [2063] = {.lex_state = 199, .external_lex_state = 17}, + [2064] = {.lex_state = 187, .external_lex_state = 8}, + [2065] = {.lex_state = 187, .external_lex_state = 8}, + [2066] = {.lex_state = 187, .external_lex_state = 8}, + [2067] = {.lex_state = 187, .external_lex_state = 8}, [2068] = {.lex_state = 199, .external_lex_state = 17}, [2069] = {.lex_state = 96, .external_lex_state = 2}, - [2070] = {.lex_state = 187, .external_lex_state = 6}, - [2071] = {.lex_state = 96, .external_lex_state = 18}, - [2072] = {.lex_state = 187, .external_lex_state = 6}, - [2073] = {.lex_state = 187, .external_lex_state = 6}, - [2074] = {.lex_state = 187, .external_lex_state = 6}, - [2075] = {.lex_state = 96, .external_lex_state = 2}, - [2076] = {.lex_state = 96, .external_lex_state = 2}, - [2077] = {.lex_state = 187, .external_lex_state = 6}, - [2078] = {.lex_state = 96, .external_lex_state = 2}, - [2079] = {.lex_state = 96, .external_lex_state = 2}, - [2080] = {.lex_state = 199, .external_lex_state = 17}, - [2081] = {.lex_state = 199, .external_lex_state = 17}, - [2082] = {.lex_state = 199}, - [2083] = {.lex_state = 96}, - [2084] = {.lex_state = 187, .external_lex_state = 6}, - [2085] = {.lex_state = 187, .external_lex_state = 6}, - [2086] = {.lex_state = 187, .external_lex_state = 6}, + [2070] = {.lex_state = 199, .external_lex_state = 17}, + [2071] = {.lex_state = 187, .external_lex_state = 6}, + [2072] = {.lex_state = 96, .external_lex_state = 18}, + [2073] = {.lex_state = 96, .external_lex_state = 2}, + [2074] = {.lex_state = 96, .external_lex_state = 2}, + [2075] = {.lex_state = 187, .external_lex_state = 8}, + [2076] = {.lex_state = 187, .external_lex_state = 6}, + [2077] = {.lex_state = 187, .external_lex_state = 8}, + [2078] = {.lex_state = 187, .external_lex_state = 6}, + [2079] = {.lex_state = 187, .external_lex_state = 6}, + [2080] = {.lex_state = 187, .external_lex_state = 8}, + [2081] = {.lex_state = 96, .external_lex_state = 2}, + [2082] = {.lex_state = 187, .external_lex_state = 6}, + [2083] = {.lex_state = 91, .external_lex_state = 17}, + [2084] = {.lex_state = 96}, + [2085] = {.lex_state = 96}, + [2086] = {.lex_state = 91, .external_lex_state = 17}, [2087] = {.lex_state = 187, .external_lex_state = 6}, - [2088] = {.lex_state = 187, .external_lex_state = 6}, - [2089] = {.lex_state = 92, .external_lex_state = 11}, - [2090] = {.lex_state = 187, .external_lex_state = 6}, - [2091] = {.lex_state = 199}, + [2088] = {.lex_state = 92, .external_lex_state = 11}, + [2089] = {.lex_state = 96}, + [2090] = {.lex_state = 96}, + [2091] = {.lex_state = 96, .external_lex_state = 2}, [2092] = {.lex_state = 96}, - [2093] = {.lex_state = 187, .external_lex_state = 6}, - [2094] = {.lex_state = 91, .external_lex_state = 17}, - [2095] = {.lex_state = 187, .external_lex_state = 6}, - [2096] = {.lex_state = 187, .external_lex_state = 6}, + [2093] = {.lex_state = 96}, + [2094] = {.lex_state = 93, .external_lex_state = 20}, + [2095] = {.lex_state = 91, .external_lex_state = 17}, + [2096] = {.lex_state = 96}, [2097] = {.lex_state = 187, .external_lex_state = 6}, [2098] = {.lex_state = 187, .external_lex_state = 6}, - [2099] = {.lex_state = 187, .external_lex_state = 6}, - [2100] = {.lex_state = 187, .external_lex_state = 6}, - [2101] = {.lex_state = 187, .external_lex_state = 6}, - [2102] = {.lex_state = 187, .external_lex_state = 6}, - [2103] = {.lex_state = 187, .external_lex_state = 6}, - [2104] = {.lex_state = 96}, + [2099] = {.lex_state = 91, .external_lex_state = 17}, + [2100] = {.lex_state = 199}, + [2101] = {.lex_state = 199}, + [2102] = {.lex_state = 93, .external_lex_state = 20}, + [2103] = {.lex_state = 199}, + [2104] = {.lex_state = 91, .external_lex_state = 17}, [2105] = {.lex_state = 187, .external_lex_state = 6}, [2106] = {.lex_state = 96}, - [2107] = {.lex_state = 187, .external_lex_state = 6}, - [2108] = {.lex_state = 92, .external_lex_state = 19}, + [2107] = {.lex_state = 96}, + [2108] = {.lex_state = 91, .external_lex_state = 17}, [2109] = {.lex_state = 187, .external_lex_state = 6}, - [2110] = {.lex_state = 187, .external_lex_state = 6}, - [2111] = {.lex_state = 96}, + [2110] = {.lex_state = 96, .external_lex_state = 2}, + [2111] = {.lex_state = 199}, [2112] = {.lex_state = 187, .external_lex_state = 6}, - [2113] = {.lex_state = 96}, - [2114] = {.lex_state = 96}, - [2115] = {.lex_state = 187, .external_lex_state = 6}, + [2113] = {.lex_state = 91, .external_lex_state = 17}, + [2114] = {.lex_state = 187, .external_lex_state = 6}, + [2115] = {.lex_state = 96}, [2116] = {.lex_state = 187, .external_lex_state = 6}, - [2117] = {.lex_state = 199}, + [2117] = {.lex_state = 96}, [2118] = {.lex_state = 187, .external_lex_state = 6}, [2119] = {.lex_state = 187, .external_lex_state = 6}, - [2120] = {.lex_state = 93, .external_lex_state = 20}, + [2120] = {.lex_state = 187, .external_lex_state = 6}, [2121] = {.lex_state = 96}, [2122] = {.lex_state = 187, .external_lex_state = 6}, - [2123] = {.lex_state = 93, .external_lex_state = 20}, - [2124] = {.lex_state = 92, .external_lex_state = 19}, - [2125] = {.lex_state = 199}, - [2126] = {.lex_state = 199}, - [2127] = {.lex_state = 91}, - [2128] = {.lex_state = 96}, - [2129] = {.lex_state = 187, .external_lex_state = 6}, + [2123] = {.lex_state = 187, .external_lex_state = 6}, + [2124] = {.lex_state = 187, .external_lex_state = 6}, + [2125] = {.lex_state = 91}, + [2126] = {.lex_state = 187, .external_lex_state = 6}, + [2127] = {.lex_state = 92, .external_lex_state = 19}, + [2128] = {.lex_state = 187, .external_lex_state = 6}, + [2129] = {.lex_state = 96}, [2130] = {.lex_state = 187, .external_lex_state = 6}, - [2131] = {.lex_state = 187, .external_lex_state = 6}, - [2132] = {.lex_state = 187, .external_lex_state = 6}, + [2131] = {.lex_state = 199}, + [2132] = {.lex_state = 91, .external_lex_state = 17}, [2133] = {.lex_state = 187, .external_lex_state = 6}, [2134] = {.lex_state = 187, .external_lex_state = 6}, - [2135] = {.lex_state = 187, .external_lex_state = 6}, - [2136] = {.lex_state = 96}, - [2137] = {.lex_state = 96}, - [2138] = {.lex_state = 187, .external_lex_state = 6}, - [2139] = {.lex_state = 94, .external_lex_state = 20}, + [2135] = {.lex_state = 91, .external_lex_state = 17}, + [2136] = {.lex_state = 187, .external_lex_state = 6}, + [2137] = {.lex_state = 91, .external_lex_state = 17}, + [2138] = {.lex_state = 96}, + [2139] = {.lex_state = 90}, [2140] = {.lex_state = 187, .external_lex_state = 6}, - [2141] = {.lex_state = 91, .external_lex_state = 17}, - [2142] = {.lex_state = 199}, - [2143] = {.lex_state = 199}, - [2144] = {.lex_state = 187, .external_lex_state = 6}, - [2145] = {.lex_state = 92, .external_lex_state = 19}, - [2146] = {.lex_state = 91, .external_lex_state = 17}, - [2147] = {.lex_state = 96}, + [2141] = {.lex_state = 92, .external_lex_state = 19}, + [2142] = {.lex_state = 187, .external_lex_state = 6}, + [2143] = {.lex_state = 187, .external_lex_state = 6}, + [2144] = {.lex_state = 96}, + [2145] = {.lex_state = 199}, + [2146] = {.lex_state = 187, .external_lex_state = 6}, + [2147] = {.lex_state = 187, .external_lex_state = 6}, [2148] = {.lex_state = 187, .external_lex_state = 6}, - [2149] = {.lex_state = 91, .external_lex_state = 17}, - [2150] = {.lex_state = 91, .external_lex_state = 17}, - [2151] = {.lex_state = 92, .external_lex_state = 11}, - [2152] = {.lex_state = 187, .external_lex_state = 6}, + [2149] = {.lex_state = 187, .external_lex_state = 6}, + [2150] = {.lex_state = 94, .external_lex_state = 20}, + [2151] = {.lex_state = 199}, + [2152] = {.lex_state = 94, .external_lex_state = 20}, [2153] = {.lex_state = 187, .external_lex_state = 6}, - [2154] = {.lex_state = 91, .external_lex_state = 17}, - [2155] = {.lex_state = 91, .external_lex_state = 17}, + [2154] = {.lex_state = 187, .external_lex_state = 6}, + [2155] = {.lex_state = 94, .external_lex_state = 20}, [2156] = {.lex_state = 91, .external_lex_state = 17}, - [2157] = {.lex_state = 94, .external_lex_state = 20}, - [2158] = {.lex_state = 94, .external_lex_state = 20}, + [2157] = {.lex_state = 91, .external_lex_state = 17}, + [2158] = {.lex_state = 199}, [2159] = {.lex_state = 91, .external_lex_state = 17}, - [2160] = {.lex_state = 91, .external_lex_state = 17}, + [2160] = {.lex_state = 94, .external_lex_state = 20}, [2161] = {.lex_state = 91, .external_lex_state = 17}, - [2162] = {.lex_state = 187, .external_lex_state = 6}, + [2162] = {.lex_state = 96}, [2163] = {.lex_state = 187, .external_lex_state = 6}, - [2164] = {.lex_state = 199}, - [2165] = {.lex_state = 94, .external_lex_state = 20}, + [2164] = {.lex_state = 91, .external_lex_state = 17}, + [2165] = {.lex_state = 187, .external_lex_state = 6}, [2166] = {.lex_state = 96}, - [2167] = {.lex_state = 187, .external_lex_state = 6}, - [2168] = {.lex_state = 91, .external_lex_state = 17}, - [2169] = {.lex_state = 91, .external_lex_state = 17}, - [2170] = {.lex_state = 96}, - [2171] = {.lex_state = 90}, + [2167] = {.lex_state = 91, .external_lex_state = 17}, + [2168] = {.lex_state = 187, .external_lex_state = 6}, + [2169] = {.lex_state = 187, .external_lex_state = 6}, + [2170] = {.lex_state = 187, .external_lex_state = 6}, + [2171] = {.lex_state = 187, .external_lex_state = 6}, [2172] = {.lex_state = 91, .external_lex_state = 17}, - [2173] = {.lex_state = 96}, - [2174] = {.lex_state = 187, .external_lex_state = 6}, - [2175] = {.lex_state = 96, .external_lex_state = 2}, - [2176] = {.lex_state = 91, .external_lex_state = 17}, + [2173] = {.lex_state = 187, .external_lex_state = 6}, + [2174] = {.lex_state = 96}, + [2175] = {.lex_state = 187, .external_lex_state = 6}, + [2176] = {.lex_state = 187, .external_lex_state = 6}, [2177] = {.lex_state = 91, .external_lex_state = 17}, [2178] = {.lex_state = 91, .external_lex_state = 17}, - [2179] = {.lex_state = 91, .external_lex_state = 17}, - [2180] = {.lex_state = 93, .external_lex_state = 20}, - [2181] = {.lex_state = 91, .external_lex_state = 17}, - [2182] = {.lex_state = 96}, + [2179] = {.lex_state = 93, .external_lex_state = 20}, + [2180] = {.lex_state = 91, .external_lex_state = 17}, + [2181] = {.lex_state = 187, .external_lex_state = 6}, + [2182] = {.lex_state = 91, .external_lex_state = 17}, [2183] = {.lex_state = 96}, [2184] = {.lex_state = 96}, - [2185] = {.lex_state = 96}, + [2185] = {.lex_state = 92, .external_lex_state = 19}, [2186] = {.lex_state = 93, .external_lex_state = 20}, - [2187] = {.lex_state = 91, .external_lex_state = 17}, - [2188] = {.lex_state = 91, .external_lex_state = 17}, - [2189] = {.lex_state = 96}, - [2190] = {.lex_state = 91, .external_lex_state = 17}, + [2187] = {.lex_state = 187, .external_lex_state = 6}, + [2188] = {.lex_state = 92, .external_lex_state = 11}, + [2189] = {.lex_state = 91, .external_lex_state = 17}, + [2190] = {.lex_state = 96, .external_lex_state = 2}, [2191] = {.lex_state = 91, .external_lex_state = 17}, [2192] = {.lex_state = 91, .external_lex_state = 17}, [2193] = {.lex_state = 91, .external_lex_state = 17}, - [2194] = {.lex_state = 187, .external_lex_state = 6}, - [2195] = {.lex_state = 96, .external_lex_state = 2}, - [2196] = {.lex_state = 96, .external_lex_state = 2}, - [2197] = {.lex_state = 91}, - [2198] = {.lex_state = 187, .external_lex_state = 6}, - [2199] = {.lex_state = 91, .external_lex_state = 17}, + [2194] = {.lex_state = 91, .external_lex_state = 17}, + [2195] = {.lex_state = 187, .external_lex_state = 6}, + [2196] = {.lex_state = 187, .external_lex_state = 6}, + [2197] = {.lex_state = 187, .external_lex_state = 6}, + [2198] = {.lex_state = 91}, + [2199] = {.lex_state = 187, .external_lex_state = 6}, [2200] = {.lex_state = 91, .external_lex_state = 17}, [2201] = {.lex_state = 91, .external_lex_state = 17}, - [2202] = {.lex_state = 96, .external_lex_state = 14}, - [2203] = {.lex_state = 97, .external_lex_state = 13}, - [2204] = {.lex_state = 92, .external_lex_state = 19}, + [2202] = {.lex_state = 94, .external_lex_state = 12}, + [2203] = {.lex_state = 92, .external_lex_state = 11}, + [2204] = {.lex_state = 93, .external_lex_state = 12}, [2205] = {.lex_state = 92, .external_lex_state = 19}, [2206] = {.lex_state = 92, .external_lex_state = 19}, - [2207] = {.lex_state = 93, .external_lex_state = 13}, - [2208] = {.lex_state = 92, .external_lex_state = 19}, - [2209] = {.lex_state = 97, .external_lex_state = 13}, + [2207] = {.lex_state = 97, .external_lex_state = 12}, + [2208] = {.lex_state = 97, .external_lex_state = 12}, + [2209] = {.lex_state = 92, .external_lex_state = 19}, [2210] = {.lex_state = 92, .external_lex_state = 19}, [2211] = {.lex_state = 92, .external_lex_state = 19}, - [2212] = {.lex_state = 97, .external_lex_state = 13}, - [2213] = {.lex_state = 93, .external_lex_state = 13}, - [2214] = {.lex_state = 92, .external_lex_state = 19}, - [2215] = {.lex_state = 97, .external_lex_state = 13}, - [2216] = {.lex_state = 97, .external_lex_state = 13}, - [2217] = {.lex_state = 93, .external_lex_state = 13}, - [2218] = {.lex_state = 93, .external_lex_state = 13}, - [2219] = {.lex_state = 97, .external_lex_state = 13}, - [2220] = {.lex_state = 97, .external_lex_state = 13}, - [2221] = {.lex_state = 97, .external_lex_state = 13}, + [2212] = {.lex_state = 92, .external_lex_state = 19}, + [2213] = {.lex_state = 93, .external_lex_state = 12}, + [2214] = {.lex_state = 97, .external_lex_state = 12}, + [2215] = {.lex_state = 92, .external_lex_state = 19}, + [2216] = {.lex_state = 97, .external_lex_state = 12}, + [2217] = {.lex_state = 93, .external_lex_state = 12}, + [2218] = {.lex_state = 93, .external_lex_state = 12}, + [2219] = {.lex_state = 97, .external_lex_state = 12}, + [2220] = {.lex_state = 92, .external_lex_state = 19}, + [2221] = {.lex_state = 97, .external_lex_state = 12}, [2222] = {.lex_state = 96}, - [2223] = {.lex_state = 97, .external_lex_state = 13}, + [2223] = {.lex_state = 97, .external_lex_state = 12}, [2224] = {.lex_state = 92, .external_lex_state = 19}, [2225] = {.lex_state = 92, .external_lex_state = 19}, - [2226] = {.lex_state = 92, .external_lex_state = 19}, - [2227] = {.lex_state = 97, .external_lex_state = 13}, - [2228] = {.lex_state = 96, .external_lex_state = 14}, - [2229] = {.lex_state = 94, .external_lex_state = 13}, - [2230] = {.lex_state = 97, .external_lex_state = 13}, - [2231] = {.lex_state = 97, .external_lex_state = 13}, - [2232] = {.lex_state = 92, .external_lex_state = 19}, - [2233] = {.lex_state = 92, .external_lex_state = 19}, - [2234] = {.lex_state = 97, .external_lex_state = 13}, - [2235] = {.lex_state = 92, .external_lex_state = 19}, + [2226] = {.lex_state = 97, .external_lex_state = 12}, + [2227] = {.lex_state = 96, .external_lex_state = 14}, + [2228] = {.lex_state = 92, .external_lex_state = 19}, + [2229] = {.lex_state = 97, .external_lex_state = 12}, + [2230] = {.lex_state = 94, .external_lex_state = 12}, + [2231] = {.lex_state = 97, .external_lex_state = 12}, + [2232] = {.lex_state = 97, .external_lex_state = 12}, + [2233] = {.lex_state = 97, .external_lex_state = 12}, + [2234] = {.lex_state = 92, .external_lex_state = 19}, + [2235] = {.lex_state = 199}, [2236] = {.lex_state = 92, .external_lex_state = 19}, [2237] = {.lex_state = 94, .external_lex_state = 20}, [2238] = {.lex_state = 92, .external_lex_state = 19}, [2239] = {.lex_state = 94, .external_lex_state = 20}, [2240] = {.lex_state = 92, .external_lex_state = 19}, - [2241] = {.lex_state = 97, .external_lex_state = 13}, + [2241] = {.lex_state = 97, .external_lex_state = 12}, [2242] = {.lex_state = 92, .external_lex_state = 19}, - [2243] = {.lex_state = 199}, - [2244] = {.lex_state = 94, .external_lex_state = 20}, - [2245] = {.lex_state = 97, .external_lex_state = 13}, + [2243] = {.lex_state = 94, .external_lex_state = 20}, + [2244] = {.lex_state = 92, .external_lex_state = 19}, + [2245] = {.lex_state = 97, .external_lex_state = 12}, [2246] = {.lex_state = 96}, - [2247] = {.lex_state = 94, .external_lex_state = 20}, - [2248] = {.lex_state = 92, .external_lex_state = 19}, - [2249] = {.lex_state = 97, .external_lex_state = 13}, - [2250] = {.lex_state = 97, .external_lex_state = 13}, - [2251] = {.lex_state = 96}, - [2252] = {.lex_state = 97, .external_lex_state = 13}, - [2253] = {.lex_state = 97, .external_lex_state = 13}, - [2254] = {.lex_state = 94, .external_lex_state = 20}, - [2255] = {.lex_state = 92, .external_lex_state = 19}, - [2256] = {.lex_state = 97, .external_lex_state = 13}, - [2257] = {.lex_state = 97, .external_lex_state = 13}, - [2258] = {.lex_state = 97, .external_lex_state = 13}, + [2247] = {.lex_state = 97, .external_lex_state = 12}, + [2248] = {.lex_state = 96}, + [2249] = {.lex_state = 97, .external_lex_state = 12}, + [2250] = {.lex_state = 97, .external_lex_state = 12}, + [2251] = {.lex_state = 97, .external_lex_state = 12}, + [2252] = {.lex_state = 97, .external_lex_state = 12}, + [2253] = {.lex_state = 94, .external_lex_state = 20}, + [2254] = {.lex_state = 92, .external_lex_state = 19}, + [2255] = {.lex_state = 97, .external_lex_state = 12}, + [2256] = {.lex_state = 97, .external_lex_state = 12}, + [2257] = {.lex_state = 97, .external_lex_state = 12}, + [2258] = {.lex_state = 97, .external_lex_state = 12}, [2259] = {.lex_state = 94, .external_lex_state = 20}, [2260] = {.lex_state = 94, .external_lex_state = 20}, - [2261] = {.lex_state = 97, .external_lex_state = 13}, + [2261] = {.lex_state = 92, .external_lex_state = 19}, [2262] = {.lex_state = 199}, [2263] = {.lex_state = 94, .external_lex_state = 20}, - [2264] = {.lex_state = 97, .external_lex_state = 13}, - [2265] = {.lex_state = 97, .external_lex_state = 13}, - [2266] = {.lex_state = 97, .external_lex_state = 13}, + [2264] = {.lex_state = 97, .external_lex_state = 12}, + [2265] = {.lex_state = 94, .external_lex_state = 20}, + [2266] = {.lex_state = 97, .external_lex_state = 12}, [2267] = {.lex_state = 94, .external_lex_state = 20}, [2268] = {.lex_state = 92, .external_lex_state = 19}, - [2269] = {.lex_state = 97, .external_lex_state = 13}, - [2270] = {.lex_state = 97, .external_lex_state = 13}, - [2271] = {.lex_state = 97, .external_lex_state = 13}, - [2272] = {.lex_state = 94, .external_lex_state = 20}, - [2273] = {.lex_state = 97, .external_lex_state = 13}, - [2274] = {.lex_state = 97, .external_lex_state = 13}, - [2275] = {.lex_state = 92, .external_lex_state = 11}, - [2276] = {.lex_state = 97, .external_lex_state = 13}, - [2277] = {.lex_state = 92, .external_lex_state = 19}, - [2278] = {.lex_state = 97, .external_lex_state = 13}, + [2269] = {.lex_state = 94, .external_lex_state = 20}, + [2270] = {.lex_state = 97, .external_lex_state = 12}, + [2271] = {.lex_state = 97, .external_lex_state = 12}, + [2272] = {.lex_state = 97, .external_lex_state = 12}, + [2273] = {.lex_state = 97, .external_lex_state = 12}, + [2274] = {.lex_state = 97, .external_lex_state = 12}, + [2275] = {.lex_state = 97, .external_lex_state = 12}, + [2276] = {.lex_state = 92, .external_lex_state = 19}, + [2277] = {.lex_state = 97, .external_lex_state = 12}, + [2278] = {.lex_state = 97, .external_lex_state = 12}, [2279] = {.lex_state = 96, .external_lex_state = 14}, - [2280] = {.lex_state = 97, .external_lex_state = 13}, - [2281] = {.lex_state = 94, .external_lex_state = 20}, + [2280] = {.lex_state = 97, .external_lex_state = 12}, + [2281] = {.lex_state = 97, .external_lex_state = 12}, [2282] = {.lex_state = 96, .external_lex_state = 14}, - [2283] = {.lex_state = 97, .external_lex_state = 13}, - [2284] = {.lex_state = 97, .external_lex_state = 13}, - [2285] = {.lex_state = 97, .external_lex_state = 13}, - [2286] = {.lex_state = 97, .external_lex_state = 13}, - [2287] = {.lex_state = 97, .external_lex_state = 13}, - [2288] = {.lex_state = 94, .external_lex_state = 20}, - [2289] = {.lex_state = 97, .external_lex_state = 13}, - [2290] = {.lex_state = 97, .external_lex_state = 13}, - [2291] = {.lex_state = 97, .external_lex_state = 13}, - [2292] = {.lex_state = 94, .external_lex_state = 20}, + [2283] = {.lex_state = 97, .external_lex_state = 12}, + [2284] = {.lex_state = 97, .external_lex_state = 12}, + [2285] = {.lex_state = 97, .external_lex_state = 12}, + [2286] = {.lex_state = 97, .external_lex_state = 12}, + [2287] = {.lex_state = 94, .external_lex_state = 20}, + [2288] = {.lex_state = 97, .external_lex_state = 12}, + [2289] = {.lex_state = 97, .external_lex_state = 12}, + [2290] = {.lex_state = 94, .external_lex_state = 20}, + [2291] = {.lex_state = 97, .external_lex_state = 12}, + [2292] = {.lex_state = 97, .external_lex_state = 12}, [2293] = {.lex_state = 94, .external_lex_state = 20}, - [2294] = {.lex_state = 97, .external_lex_state = 13}, - [2295] = {.lex_state = 97, .external_lex_state = 13}, + [2294] = {.lex_state = 94, .external_lex_state = 20}, + [2295] = {.lex_state = 92, .external_lex_state = 19}, [2296] = {.lex_state = 94, .external_lex_state = 20}, [2297] = {.lex_state = 94, .external_lex_state = 20}, - [2298] = {.lex_state = 94, .external_lex_state = 20}, - [2299] = {.lex_state = 97, .external_lex_state = 13}, + [2298] = {.lex_state = 92, .external_lex_state = 19}, + [2299] = {.lex_state = 96, .external_lex_state = 14}, [2300] = {.lex_state = 92, .external_lex_state = 19}, - [2301] = {.lex_state = 97, .external_lex_state = 13}, - [2302] = {.lex_state = 97, .external_lex_state = 13}, - [2303] = {.lex_state = 92, .external_lex_state = 19}, - [2304] = {.lex_state = 94, .external_lex_state = 20}, - [2305] = {.lex_state = 92, .external_lex_state = 19}, - [2306] = {.lex_state = 97, .external_lex_state = 13}, - [2307] = {.lex_state = 97, .external_lex_state = 13}, - [2308] = {.lex_state = 97, .external_lex_state = 13}, - [2309] = {.lex_state = 94, .external_lex_state = 20}, - [2310] = {.lex_state = 97, .external_lex_state = 13}, - [2311] = {.lex_state = 97, .external_lex_state = 13}, - [2312] = {.lex_state = 97, .external_lex_state = 13}, - [2313] = {.lex_state = 97, .external_lex_state = 13}, - [2314] = {.lex_state = 97, .external_lex_state = 13}, - [2315] = {.lex_state = 92, .external_lex_state = 19}, - [2316] = {.lex_state = 97, .external_lex_state = 13}, - [2317] = {.lex_state = 94, .external_lex_state = 20}, - [2318] = {.lex_state = 97, .external_lex_state = 13}, - [2319] = {.lex_state = 97, .external_lex_state = 13}, - [2320] = {.lex_state = 97, .external_lex_state = 13}, + [2301] = {.lex_state = 97, .external_lex_state = 12}, + [2302] = {.lex_state = 97, .external_lex_state = 12}, + [2303] = {.lex_state = 97, .external_lex_state = 12}, + [2304] = {.lex_state = 97, .external_lex_state = 12}, + [2305] = {.lex_state = 97, .external_lex_state = 12}, + [2306] = {.lex_state = 92, .external_lex_state = 19}, + [2307] = {.lex_state = 97, .external_lex_state = 12}, + [2308] = {.lex_state = 97, .external_lex_state = 12}, + [2309] = {.lex_state = 92, .external_lex_state = 19}, + [2310] = {.lex_state = 97, .external_lex_state = 12}, + [2311] = {.lex_state = 97, .external_lex_state = 12}, + [2312] = {.lex_state = 97, .external_lex_state = 12}, + [2313] = {.lex_state = 97, .external_lex_state = 12}, + [2314] = {.lex_state = 97, .external_lex_state = 12}, + [2315] = {.lex_state = 97, .external_lex_state = 12}, + [2316] = {.lex_state = 97, .external_lex_state = 12}, + [2317] = {.lex_state = 97, .external_lex_state = 12}, + [2318] = {.lex_state = 94, .external_lex_state = 20}, + [2319] = {.lex_state = 94, .external_lex_state = 20}, + [2320] = {.lex_state = 94, .external_lex_state = 20}, [2321] = {.lex_state = 94, .external_lex_state = 20}, - [2322] = {.lex_state = 92, .external_lex_state = 19}, - [2323] = {.lex_state = 94, .external_lex_state = 20}, - [2324] = {.lex_state = 97, .external_lex_state = 13}, - [2325] = {.lex_state = 94, .external_lex_state = 13}, + [2322] = {.lex_state = 94, .external_lex_state = 20}, + [2323] = {.lex_state = 97, .external_lex_state = 12}, + [2324] = {.lex_state = 94, .external_lex_state = 20}, + [2325] = {.lex_state = 94, .external_lex_state = 20}, [2326] = {.lex_state = 94, .external_lex_state = 20}, - [2327] = {.lex_state = 94, .external_lex_state = 20}, - [2328] = {.lex_state = 97, .external_lex_state = 13}, - [2329] = {.lex_state = 97, .external_lex_state = 13}, + [2327] = {.lex_state = 97, .external_lex_state = 12}, + [2328] = {.lex_state = 97, .external_lex_state = 12}, + [2329] = {.lex_state = 97, .external_lex_state = 12}, [2330] = {.lex_state = 94, .external_lex_state = 20}, [2331] = {.lex_state = 94, .external_lex_state = 20}, - [2332] = {.lex_state = 91}, + [2332] = {.lex_state = 96}, [2333] = {.lex_state = 91}, [2334] = {.lex_state = 199}, [2335] = {.lex_state = 199}, - [2336] = {.lex_state = 199}, - [2337] = {.lex_state = 94, .external_lex_state = 13}, - [2338] = {.lex_state = 199}, - [2339] = {.lex_state = 92, .external_lex_state = 11}, - [2340] = {.lex_state = 96}, - [2341] = {.lex_state = 91}, - [2342] = {.lex_state = 199}, - [2343] = {.lex_state = 199}, - [2344] = {.lex_state = 96}, - [2345] = {.lex_state = 199}, - [2346] = {.lex_state = 199}, + [2336] = {.lex_state = 91}, + [2337] = {.lex_state = 91}, + [2338] = {.lex_state = 91}, + [2339] = {.lex_state = 96}, + [2340] = {.lex_state = 94, .external_lex_state = 12}, + [2341] = {.lex_state = 199}, + [2342] = {.lex_state = 92, .external_lex_state = 11}, + [2343] = {.lex_state = 96}, + [2344] = {.lex_state = 199}, + [2345] = {.lex_state = 92, .external_lex_state = 11}, + [2346] = {.lex_state = 96}, [2347] = {.lex_state = 96}, - [2348] = {.lex_state = 91}, + [2348] = {.lex_state = 199}, [2349] = {.lex_state = 199}, [2350] = {.lex_state = 96}, - [2351] = {.lex_state = 96}, + [2351] = {.lex_state = 199}, [2352] = {.lex_state = 96}, - [2353] = {.lex_state = 96}, - [2354] = {.lex_state = 91}, - [2355] = {.lex_state = 199}, - [2356] = {.lex_state = 199}, + [2353] = {.lex_state = 199}, + [2354] = {.lex_state = 92, .external_lex_state = 11}, + [2355] = {.lex_state = 96}, + [2356] = {.lex_state = 91}, [2357] = {.lex_state = 96}, - [2358] = {.lex_state = 199}, + [2358] = {.lex_state = 96}, [2359] = {.lex_state = 199}, [2360] = {.lex_state = 199}, [2361] = {.lex_state = 199}, - [2362] = {.lex_state = 91}, + [2362] = {.lex_state = 199}, [2363] = {.lex_state = 96}, - [2364] = {.lex_state = 96}, + [2364] = {.lex_state = 199}, [2365] = {.lex_state = 96}, - [2366] = {.lex_state = 92, .external_lex_state = 11}, - [2367] = {.lex_state = 199}, + [2366] = {.lex_state = 96}, + [2367] = {.lex_state = 91}, [2368] = {.lex_state = 91}, [2369] = {.lex_state = 91}, [2370] = {.lex_state = 91}, - [2371] = {.lex_state = 92, .external_lex_state = 11}, + [2371] = {.lex_state = 199}, [2372] = {.lex_state = 199}, - [2373] = {.lex_state = 92, .external_lex_state = 11}, + [2373] = {.lex_state = 199}, [2374] = {.lex_state = 199}, [2375] = {.lex_state = 96}, [2376] = {.lex_state = 96}, [2377] = {.lex_state = 96}, [2378] = {.lex_state = 92, .external_lex_state = 11}, [2379] = {.lex_state = 199}, - [2380] = {.lex_state = 96}, - [2381] = {.lex_state = 96}, + [2380] = {.lex_state = 199}, + [2381] = {.lex_state = 199}, [2382] = {.lex_state = 92, .external_lex_state = 11}, - [2383] = {.lex_state = 199}, - [2384] = {.lex_state = 91}, - [2385] = {.lex_state = 92, .external_lex_state = 11}, - [2386] = {.lex_state = 96}, - [2387] = {.lex_state = 92, .external_lex_state = 11}, - [2388] = {.lex_state = 199}, - [2389] = {.lex_state = 199}, - [2390] = {.lex_state = 92, .external_lex_state = 11}, - [2391] = {.lex_state = 91}, + [2383] = {.lex_state = 91}, + [2384] = {.lex_state = 199}, + [2385] = {.lex_state = 199}, + [2386] = {.lex_state = 92, .external_lex_state = 11}, + [2387] = {.lex_state = 96}, + [2388] = {.lex_state = 92, .external_lex_state = 11}, + [2389] = {.lex_state = 91}, + [2390] = {.lex_state = 199}, + [2391] = {.lex_state = 92, .external_lex_state = 11}, [2392] = {.lex_state = 96}, - [2393] = {.lex_state = 199}, - [2394] = {.lex_state = 96}, - [2395] = {.lex_state = 199}, - [2396] = {.lex_state = 92, .external_lex_state = 11}, - [2397] = {.lex_state = 96}, + [2393] = {.lex_state = 96}, + [2394] = {.lex_state = 199}, + [2395] = {.lex_state = 92, .external_lex_state = 11}, + [2396] = {.lex_state = 96}, + [2397] = {.lex_state = 92, .external_lex_state = 11}, [2398] = {.lex_state = 98, .external_lex_state = 11}, [2399] = {.lex_state = 27, .external_lex_state = 10}, [2400] = {.lex_state = 98, .external_lex_state = 11}, @@ -8114,8 +8140,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2422] = {.lex_state = 96}, [2423] = {.lex_state = 96}, [2424] = {.lex_state = 96}, - [2425] = {.lex_state = 96}, - [2426] = {.lex_state = 75, .external_lex_state = 15}, + [2425] = {.lex_state = 75, .external_lex_state = 15}, + [2426] = {.lex_state = 96}, [2427] = {.lex_state = 96}, [2428] = {.lex_state = 96}, [2429] = {.lex_state = 96}, @@ -8130,14 +8156,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2438] = {.lex_state = 96}, [2439] = {.lex_state = 96}, [2440] = {.lex_state = 96}, - [2441] = {.lex_state = 75, .external_lex_state = 15}, - [2442] = {.lex_state = 96}, + [2441] = {.lex_state = 96}, + [2442] = {.lex_state = 75, .external_lex_state = 15}, [2443] = {.lex_state = 96}, - [2444] = {.lex_state = 96}, + [2444] = {.lex_state = 75, .external_lex_state = 15}, [2445] = {.lex_state = 96}, [2446] = {.lex_state = 96}, [2447] = {.lex_state = 96}, - [2448] = {.lex_state = 75, .external_lex_state = 15}, + [2448] = {.lex_state = 96}, [2449] = {.lex_state = 96}, [2450] = {.lex_state = 96}, [2451] = {.lex_state = 96}, @@ -8164,8 +8190,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2472] = {.lex_state = 75, .external_lex_state = 15}, [2473] = {.lex_state = 75, .external_lex_state = 15}, [2474] = {.lex_state = 75, .external_lex_state = 15}, - [2475] = {.lex_state = 75, .external_lex_state = 10}, - [2476] = {.lex_state = 75, .external_lex_state = 15}, + [2475] = {.lex_state = 75, .external_lex_state = 15}, + [2476] = {.lex_state = 75, .external_lex_state = 10}, [2477] = {.lex_state = 75, .external_lex_state = 15}, [2478] = {.lex_state = 75, .external_lex_state = 15}, [2479] = {.lex_state = 75, .external_lex_state = 15}, @@ -8178,158 +8204,158 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2486] = {.lex_state = 75, .external_lex_state = 15}, [2487] = {.lex_state = 75, .external_lex_state = 15}, [2488] = {.lex_state = 75, .external_lex_state = 15}, - [2489] = {.lex_state = 75, .external_lex_state = 15}, - [2490] = {.lex_state = 75, .external_lex_state = 10}, + [2489] = {.lex_state = 75, .external_lex_state = 10}, + [2490] = {.lex_state = 75, .external_lex_state = 15}, [2491] = {.lex_state = 75, .external_lex_state = 15}, [2492] = {.lex_state = 75, .external_lex_state = 15}, [2493] = {.lex_state = 75, .external_lex_state = 15}, - [2494] = {.lex_state = 85, .external_lex_state = 19}, - [2495] = {.lex_state = 75, .external_lex_state = 10}, - [2496] = {.lex_state = 85}, + [2494] = {.lex_state = 85}, + [2495] = {.lex_state = 85, .external_lex_state = 19}, + [2496] = {.lex_state = 75, .external_lex_state = 10}, [2497] = {.lex_state = 96, .external_lex_state = 17}, [2498] = {.lex_state = 96, .external_lex_state = 17}, [2499] = {.lex_state = 96, .external_lex_state = 17}, - [2500] = {.lex_state = 85, .external_lex_state = 13}, - [2501] = {.lex_state = 96, .external_lex_state = 17}, + [2500] = {.lex_state = 96, .external_lex_state = 17}, + [2501] = {.lex_state = 85, .external_lex_state = 12}, [2502] = {.lex_state = 85, .external_lex_state = 21}, - [2503] = {.lex_state = 96, .external_lex_state = 17}, + [2503] = {.lex_state = 85, .external_lex_state = 21}, [2504] = {.lex_state = 85, .external_lex_state = 21}, - [2505] = {.lex_state = 85}, - [2506] = {.lex_state = 85, .external_lex_state = 21}, + [2505] = {.lex_state = 85, .external_lex_state = 21}, + [2506] = {.lex_state = 85}, [2507] = {.lex_state = 85, .external_lex_state = 21}, - [2508] = {.lex_state = 85}, - [2509] = {.lex_state = 85, .external_lex_state = 21}, - [2510] = {.lex_state = 85, .external_lex_state = 21}, + [2508] = {.lex_state = 85, .external_lex_state = 21}, + [2509] = {.lex_state = 85}, + [2510] = {.lex_state = 85}, [2511] = {.lex_state = 85}, [2512] = {.lex_state = 85, .external_lex_state = 21}, [2513] = {.lex_state = 85}, - [2514] = {.lex_state = 85, .external_lex_state = 21}, - [2515] = {.lex_state = 85}, + [2514] = {.lex_state = 96, .external_lex_state = 17}, + [2515] = {.lex_state = 85, .external_lex_state = 21}, [2516] = {.lex_state = 85, .external_lex_state = 21}, - [2517] = {.lex_state = 96}, - [2518] = {.lex_state = 85}, - [2519] = {.lex_state = 85, .external_lex_state = 21}, - [2520] = {.lex_state = 85, .external_lex_state = 21}, - [2521] = {.lex_state = 96, .external_lex_state = 17}, + [2517] = {.lex_state = 85}, + [2518] = {.lex_state = 85, .external_lex_state = 21}, + [2519] = {.lex_state = 85}, + [2520] = {.lex_state = 96}, + [2521] = {.lex_state = 85, .external_lex_state = 21}, [2522] = {.lex_state = 85, .external_lex_state = 21}, [2523] = {.lex_state = 85}, [2524] = {.lex_state = 85, .external_lex_state = 21}, [2525] = {.lex_state = 85}, [2526] = {.lex_state = 85}, - [2527] = {.lex_state = 96, .external_lex_state = 17}, - [2528] = {.lex_state = 85, .external_lex_state = 21}, + [2527] = {.lex_state = 85, .external_lex_state = 21}, + [2528] = {.lex_state = 96, .external_lex_state = 17}, [2529] = {.lex_state = 85}, [2530] = {.lex_state = 85, .external_lex_state = 21}, [2531] = {.lex_state = 85}, - [2532] = {.lex_state = 85}, + [2532] = {.lex_state = 85, .external_lex_state = 21}, [2533] = {.lex_state = 96, .external_lex_state = 17}, - [2534] = {.lex_state = 85, .external_lex_state = 21}, - [2535] = {.lex_state = 85}, - [2536] = {.lex_state = 85, .external_lex_state = 21}, - [2537] = {.lex_state = 85}, - [2538] = {.lex_state = 85}, + [2534] = {.lex_state = 96, .external_lex_state = 17}, + [2535] = {.lex_state = 96, .external_lex_state = 17}, + [2536] = {.lex_state = 96, .external_lex_state = 17}, + [2537] = {.lex_state = 96, .external_lex_state = 17}, + [2538] = {.lex_state = 96, .external_lex_state = 17}, [2539] = {.lex_state = 96, .external_lex_state = 17}, - [2540] = {.lex_state = 85, .external_lex_state = 21}, - [2541] = {.lex_state = 85, .external_lex_state = 21}, - [2542] = {.lex_state = 85}, + [2540] = {.lex_state = 96, .external_lex_state = 17}, + [2541] = {.lex_state = 96, .external_lex_state = 17}, + [2542] = {.lex_state = 96, .external_lex_state = 17}, [2543] = {.lex_state = 96, .external_lex_state = 17}, - [2544] = {.lex_state = 85, .external_lex_state = 21}, - [2545] = {.lex_state = 96, .external_lex_state = 17}, - [2546] = {.lex_state = 85}, - [2547] = {.lex_state = 96}, - [2548] = {.lex_state = 85, .external_lex_state = 21}, + [2544] = {.lex_state = 96, .external_lex_state = 17}, + [2545] = {.lex_state = 85}, + [2546] = {.lex_state = 96, .external_lex_state = 17}, + [2547] = {.lex_state = 85}, + [2548] = {.lex_state = 96, .external_lex_state = 17}, [2549] = {.lex_state = 96, .external_lex_state = 17}, - [2550] = {.lex_state = 96, .external_lex_state = 17}, + [2550] = {.lex_state = 85, .external_lex_state = 21}, [2551] = {.lex_state = 85}, [2552] = {.lex_state = 85}, [2553] = {.lex_state = 85, .external_lex_state = 21}, - [2554] = {.lex_state = 96, .external_lex_state = 17}, - [2555] = {.lex_state = 85}, + [2554] = {.lex_state = 85, .external_lex_state = 21}, + [2555] = {.lex_state = 96, .external_lex_state = 17}, [2556] = {.lex_state = 85}, [2557] = {.lex_state = 85, .external_lex_state = 21}, - [2558] = {.lex_state = 85}, - [2559] = {.lex_state = 96, .external_lex_state = 17}, - [2560] = {.lex_state = 85, .external_lex_state = 21}, - [2561] = {.lex_state = 85, .external_lex_state = 21}, + [2558] = {.lex_state = 96, .external_lex_state = 17}, + [2559] = {.lex_state = 85}, + [2560] = {.lex_state = 96, .external_lex_state = 17}, + [2561] = {.lex_state = 96, .external_lex_state = 17}, [2562] = {.lex_state = 85, .external_lex_state = 21}, - [2563] = {.lex_state = 85}, - [2564] = {.lex_state = 85, .external_lex_state = 21}, + [2563] = {.lex_state = 96, .external_lex_state = 17}, + [2564] = {.lex_state = 96, .external_lex_state = 17}, [2565] = {.lex_state = 85, .external_lex_state = 21}, [2566] = {.lex_state = 85}, [2567] = {.lex_state = 96, .external_lex_state = 17}, [2568] = {.lex_state = 96, .external_lex_state = 17}, [2569] = {.lex_state = 96, .external_lex_state = 17}, - [2570] = {.lex_state = 85, .external_lex_state = 21}, - [2571] = {.lex_state = 96, .external_lex_state = 17}, - [2572] = {.lex_state = 96, .external_lex_state = 17}, - [2573] = {.lex_state = 96, .external_lex_state = 17}, - [2574] = {.lex_state = 96, .external_lex_state = 17}, - [2575] = {.lex_state = 96, .external_lex_state = 17}, - [2576] = {.lex_state = 96, .external_lex_state = 17}, - [2577] = {.lex_state = 96, .external_lex_state = 17}, - [2578] = {.lex_state = 96, .external_lex_state = 17}, - [2579] = {.lex_state = 96, .external_lex_state = 17}, - [2580] = {.lex_state = 96, .external_lex_state = 17}, - [2581] = {.lex_state = 85}, - [2582] = {.lex_state = 96, .external_lex_state = 17}, - [2583] = {.lex_state = 85}, - [2584] = {.lex_state = 85, .external_lex_state = 21}, - [2585] = {.lex_state = 85, .external_lex_state = 21}, - [2586] = {.lex_state = 96, .external_lex_state = 17}, + [2570] = {.lex_state = 85}, + [2571] = {.lex_state = 85, .external_lex_state = 21}, + [2572] = {.lex_state = 85}, + [2573] = {.lex_state = 85, .external_lex_state = 21}, + [2574] = {.lex_state = 85, .external_lex_state = 21}, + [2575] = {.lex_state = 85}, + [2576] = {.lex_state = 85, .external_lex_state = 21}, + [2577] = {.lex_state = 85}, + [2578] = {.lex_state = 85, .external_lex_state = 21}, + [2579] = {.lex_state = 96}, + [2580] = {.lex_state = 85}, + [2581] = {.lex_state = 85, .external_lex_state = 21}, + [2582] = {.lex_state = 85, .external_lex_state = 21}, + [2583] = {.lex_state = 85, .external_lex_state = 21}, + [2584] = {.lex_state = 85}, + [2585] = {.lex_state = 85}, + [2586] = {.lex_state = 85}, [2587] = {.lex_state = 85}, - [2588] = {.lex_state = 85}, + [2588] = {.lex_state = 85, .external_lex_state = 21}, [2589] = {.lex_state = 85}, - [2590] = {.lex_state = 86}, + [2590] = {.lex_state = 99}, [2591] = {.lex_state = 86}, - [2592] = {.lex_state = 86}, + [2592] = {.lex_state = 99}, [2593] = {.lex_state = 86}, - [2594] = {.lex_state = 86}, - [2595] = {.lex_state = 99}, - [2596] = {.lex_state = 86}, + [2594] = {.lex_state = 99}, + [2595] = {.lex_state = 86}, + [2596] = {.lex_state = 99}, [2597] = {.lex_state = 99}, - [2598] = {.lex_state = 99}, + [2598] = {.lex_state = 86}, [2599] = {.lex_state = 86}, [2600] = {.lex_state = 86}, [2601] = {.lex_state = 86}, - [2602] = {.lex_state = 86}, - [2603] = {.lex_state = 99}, - [2604] = {.lex_state = 86}, + [2602] = {.lex_state = 99}, + [2603] = {.lex_state = 86}, + [2604] = {.lex_state = 99}, [2605] = {.lex_state = 86}, [2606] = {.lex_state = 86}, [2607] = {.lex_state = 86}, [2608] = {.lex_state = 86}, - [2609] = {.lex_state = 99}, + [2609] = {.lex_state = 86}, [2610] = {.lex_state = 86}, - [2611] = {.lex_state = 86}, + [2611] = {.lex_state = 99}, [2612] = {.lex_state = 86}, [2613] = {.lex_state = 86}, [2614] = {.lex_state = 86}, [2615] = {.lex_state = 86}, [2616] = {.lex_state = 86}, [2617] = {.lex_state = 86}, - [2618] = {.lex_state = 96}, + [2618] = {.lex_state = 86}, [2619] = {.lex_state = 86}, [2620] = {.lex_state = 86}, [2621] = {.lex_state = 86}, [2622] = {.lex_state = 86}, - [2623] = {.lex_state = 86}, + [2623] = {.lex_state = 99}, [2624] = {.lex_state = 86}, [2625] = {.lex_state = 86}, [2626] = {.lex_state = 86}, [2627] = {.lex_state = 86}, [2628] = {.lex_state = 86}, [2629] = {.lex_state = 86}, - [2630] = {.lex_state = 86}, - [2631] = {.lex_state = 99}, - [2632] = {.lex_state = 99}, - [2633] = {.lex_state = 99}, + [2630] = {.lex_state = 96}, + [2631] = {.lex_state = 86}, + [2632] = {.lex_state = 86}, + [2633] = {.lex_state = 86}, [2634] = {.lex_state = 86}, - [2635] = {.lex_state = 99}, + [2635] = {.lex_state = 86}, [2636] = {.lex_state = 86}, [2637] = {.lex_state = 86}, [2638] = {.lex_state = 86}, [2639] = {.lex_state = 86}, - [2640] = {.lex_state = 99}, + [2640] = {.lex_state = 86}, [2641] = {.lex_state = 86}, [2642] = {.lex_state = 86}, [2643] = {.lex_state = 86}, @@ -8342,7 +8368,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2650] = {.lex_state = 86}, [2651] = {.lex_state = 86}, [2652] = {.lex_state = 86}, - [2653] = {.lex_state = 86}, + [2653] = {.lex_state = 99}, [2654] = {.lex_state = 86}, [2655] = {.lex_state = 86}, [2656] = {.lex_state = 86}, @@ -8350,62 +8376,62 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2658] = {.lex_state = 86}, [2659] = {.lex_state = 96}, [2660] = {.lex_state = 96}, - [2661] = {.lex_state = 96}, - [2662] = {.lex_state = 101, .external_lex_state = 21}, + [2661] = {.lex_state = 101, .external_lex_state = 21}, + [2662] = {.lex_state = 96}, [2663] = {.lex_state = 96}, [2664] = {.lex_state = 96}, [2665] = {.lex_state = 96}, - [2666] = {.lex_state = 96}, - [2667] = {.lex_state = 101, .external_lex_state = 21}, - [2668] = {.lex_state = 101, .external_lex_state = 21}, - [2669] = {.lex_state = 87}, + [2666] = {.lex_state = 101, .external_lex_state = 21}, + [2667] = {.lex_state = 96}, + [2668] = {.lex_state = 96}, + [2669] = {.lex_state = 101, .external_lex_state = 21}, [2670] = {.lex_state = 96}, - [2671] = {.lex_state = 96}, - [2672] = {.lex_state = 101, .external_lex_state = 21}, - [2673] = {.lex_state = 96}, - [2674] = {.lex_state = 101, .external_lex_state = 21}, + [2671] = {.lex_state = 87}, + [2672] = {.lex_state = 96}, + [2673] = {.lex_state = 101, .external_lex_state = 21}, + [2674] = {.lex_state = 96}, [2675] = {.lex_state = 96}, [2676] = {.lex_state = 101, .external_lex_state = 21}, - [2677] = {.lex_state = 101, .external_lex_state = 21}, + [2677] = {.lex_state = 96}, [2678] = {.lex_state = 101, .external_lex_state = 21}, [2679] = {.lex_state = 101, .external_lex_state = 21}, - [2680] = {.lex_state = 96}, - [2681] = {.lex_state = 101, .external_lex_state = 21}, + [2680] = {.lex_state = 101, .external_lex_state = 21}, + [2681] = {.lex_state = 96}, [2682] = {.lex_state = 101, .external_lex_state = 21}, - [2683] = {.lex_state = 96}, - [2684] = {.lex_state = 101, .external_lex_state = 21}, + [2683] = {.lex_state = 101, .external_lex_state = 21}, + [2684] = {.lex_state = 96}, [2685] = {.lex_state = 101, .external_lex_state = 21}, [2686] = {.lex_state = 96}, [2687] = {.lex_state = 101, .external_lex_state = 21}, [2688] = {.lex_state = 101, .external_lex_state = 21}, - [2689] = {.lex_state = 96}, - [2690] = {.lex_state = 101, .external_lex_state = 21}, + [2689] = {.lex_state = 101, .external_lex_state = 21}, + [2690] = {.lex_state = 96}, [2691] = {.lex_state = 101, .external_lex_state = 21}, - [2692] = {.lex_state = 96}, - [2693] = {.lex_state = 96}, + [2692] = {.lex_state = 101, .external_lex_state = 21}, + [2693] = {.lex_state = 101, .external_lex_state = 21}, [2694] = {.lex_state = 101, .external_lex_state = 21}, - [2695] = {.lex_state = 96}, - [2696] = {.lex_state = 96}, - [2697] = {.lex_state = 101, .external_lex_state = 21}, + [2695] = {.lex_state = 101, .external_lex_state = 21}, + [2696] = {.lex_state = 101, .external_lex_state = 21}, + [2697] = {.lex_state = 96}, [2698] = {.lex_state = 101, .external_lex_state = 21}, - [2699] = {.lex_state = 96}, + [2699] = {.lex_state = 101, .external_lex_state = 21}, [2700] = {.lex_state = 101, .external_lex_state = 21}, [2701] = {.lex_state = 101, .external_lex_state = 21}, - [2702] = {.lex_state = 96}, + [2702] = {.lex_state = 101, .external_lex_state = 21}, [2703] = {.lex_state = 96}, - [2704] = {.lex_state = 101, .external_lex_state = 21}, - [2705] = {.lex_state = 101, .external_lex_state = 21}, + [2704] = {.lex_state = 96}, + [2705] = {.lex_state = 96}, [2706] = {.lex_state = 101, .external_lex_state = 21}, [2707] = {.lex_state = 101, .external_lex_state = 21}, - [2708] = {.lex_state = 101, .external_lex_state = 21}, - [2709] = {.lex_state = 101, .external_lex_state = 21}, - [2710] = {.lex_state = 101, .external_lex_state = 21}, - [2711] = {.lex_state = 96}, + [2708] = {.lex_state = 96}, + [2709] = {.lex_state = 96}, + [2710] = {.lex_state = 96}, + [2711] = {.lex_state = 101, .external_lex_state = 21}, [2712] = {.lex_state = 96}, - [2713] = {.lex_state = 96}, - [2714] = {.lex_state = 96}, + [2713] = {.lex_state = 101, .external_lex_state = 21}, + [2714] = {.lex_state = 101, .external_lex_state = 21}, [2715] = {.lex_state = 101, .external_lex_state = 21}, - [2716] = {.lex_state = 101, .external_lex_state = 21}, + [2716] = {.lex_state = 96}, [2717] = {.lex_state = 100}, [2718] = {.lex_state = 100}, [2719] = {.lex_state = 100}, @@ -8418,44 +8444,44 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2726] = {.lex_state = 100}, [2727] = {.lex_state = 100}, [2728] = {.lex_state = 100}, - [2729] = {.lex_state = 100}, + [2729] = {.lex_state = 199, .external_lex_state = 22}, [2730] = {.lex_state = 100}, - [2731] = {.lex_state = 100}, + [2731] = {.lex_state = 199, .external_lex_state = 22}, [2732] = {.lex_state = 100}, - [2733] = {.lex_state = 199, .external_lex_state = 22}, - [2734] = {.lex_state = 100}, + [2733] = {.lex_state = 100}, + [2734] = {.lex_state = 199, .external_lex_state = 22}, [2735] = {.lex_state = 100}, [2736] = {.lex_state = 100}, [2737] = {.lex_state = 100}, [2738] = {.lex_state = 100}, [2739] = {.lex_state = 100}, - [2740] = {.lex_state = 100}, - [2741] = {.lex_state = 100}, + [2740] = {.lex_state = 199, .external_lex_state = 22}, + [2741] = {.lex_state = 199, .external_lex_state = 22}, [2742] = {.lex_state = 100}, - [2743] = {.lex_state = 199, .external_lex_state = 22}, + [2743] = {.lex_state = 100}, [2744] = {.lex_state = 100}, [2745] = {.lex_state = 100}, [2746] = {.lex_state = 100}, [2747] = {.lex_state = 100}, - [2748] = {.lex_state = 199, .external_lex_state = 22}, + [2748] = {.lex_state = 100}, [2749] = {.lex_state = 100}, [2750] = {.lex_state = 100}, [2751] = {.lex_state = 100}, [2752] = {.lex_state = 100}, [2753] = {.lex_state = 100}, [2754] = {.lex_state = 100}, - [2755] = {.lex_state = 199, .external_lex_state = 22}, - [2756] = {.lex_state = 100}, + [2755] = {.lex_state = 100}, + [2756] = {.lex_state = 199, .external_lex_state = 22}, [2757] = {.lex_state = 100}, [2758] = {.lex_state = 100}, [2759] = {.lex_state = 100}, - [2760] = {.lex_state = 100}, + [2760] = {.lex_state = 85}, [2761] = {.lex_state = 100}, [2762] = {.lex_state = 100}, [2763] = {.lex_state = 100}, [2764] = {.lex_state = 100}, - [2765] = {.lex_state = 199, .external_lex_state = 22}, - [2766] = {.lex_state = 85}, + [2765] = {.lex_state = 100}, + [2766] = {.lex_state = 100}, [2767] = {.lex_state = 100}, [2768] = {.lex_state = 100}, [2769] = {.lex_state = 100}, @@ -8465,14 +8491,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2773] = {.lex_state = 100}, [2774] = {.lex_state = 100}, [2775] = {.lex_state = 100}, - [2776] = {.lex_state = 199, .external_lex_state = 22}, + [2776] = {.lex_state = 100}, [2777] = {.lex_state = 100}, - [2778] = {.lex_state = 100}, + [2778] = {.lex_state = 199, .external_lex_state = 22}, [2779] = {.lex_state = 100}, [2780] = {.lex_state = 100}, [2781] = {.lex_state = 100}, [2782] = {.lex_state = 100}, - [2783] = {.lex_state = 199, .external_lex_state = 22}, + [2783] = {.lex_state = 100}, [2784] = {.lex_state = 101}, [2785] = {.lex_state = 101}, [2786] = {.lex_state = 101}, @@ -8482,117 +8508,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2790] = {.lex_state = 101}, [2791] = {.lex_state = 101}, [2792] = {.lex_state = 101}, - [2793] = {.lex_state = 188, .external_lex_state = 15}, + [2793] = {.lex_state = 101}, [2794] = {.lex_state = 101}, [2795] = {.lex_state = 101}, [2796] = {.lex_state = 101}, [2797] = {.lex_state = 101}, - [2798] = {.lex_state = 101}, - [2799] = {.lex_state = 100, .external_lex_state = 17}, + [2798] = {.lex_state = 188, .external_lex_state = 15}, + [2799] = {.lex_state = 188, .external_lex_state = 10}, [2800] = {.lex_state = 29, .external_lex_state = 10}, [2801] = {.lex_state = 100, .external_lex_state = 17}, [2802] = {.lex_state = 100, .external_lex_state = 17}, - [2803] = {.lex_state = 100, .external_lex_state = 17}, + [2803] = {.lex_state = 188, .external_lex_state = 15}, [2804] = {.lex_state = 100, .external_lex_state = 17}, - [2805] = {.lex_state = 188, .external_lex_state = 10}, - [2806] = {.lex_state = 188, .external_lex_state = 15}, - [2807] = {.lex_state = 100, .external_lex_state = 17}, - [2808] = {.lex_state = 188, .external_lex_state = 15}, - [2809] = {.lex_state = 29, .external_lex_state = 10}, - [2810] = {.lex_state = 29, .external_lex_state = 10}, + [2805] = {.lex_state = 100, .external_lex_state = 17}, + [2806] = {.lex_state = 188, .external_lex_state = 10}, + [2807] = {.lex_state = 188, .external_lex_state = 15}, + [2808] = {.lex_state = 188, .external_lex_state = 10}, + [2809] = {.lex_state = 100, .external_lex_state = 17}, + [2810] = {.lex_state = 188, .external_lex_state = 15}, [2811] = {.lex_state = 100, .external_lex_state = 17}, [2812] = {.lex_state = 100, .external_lex_state = 17}, - [2813] = {.lex_state = 188, .external_lex_state = 10}, - [2814] = {.lex_state = 29, .external_lex_state = 10}, - [2815] = {.lex_state = 188, .external_lex_state = 10}, - [2816] = {.lex_state = 100, .external_lex_state = 17}, - [2817] = {.lex_state = 100, .external_lex_state = 17}, + [2813] = {.lex_state = 29, .external_lex_state = 10}, + [2814] = {.lex_state = 100, .external_lex_state = 17}, + [2815] = {.lex_state = 100, .external_lex_state = 17}, + [2816] = {.lex_state = 188, .external_lex_state = 10}, + [2817] = {.lex_state = 188, .external_lex_state = 15}, [2818] = {.lex_state = 100, .external_lex_state = 17}, [2819] = {.lex_state = 100, .external_lex_state = 17}, - [2820] = {.lex_state = 188, .external_lex_state = 10}, - [2821] = {.lex_state = 188, .external_lex_state = 15}, - [2822] = {.lex_state = 100, .external_lex_state = 17}, + [2820] = {.lex_state = 100, .external_lex_state = 17}, + [2821] = {.lex_state = 100, .external_lex_state = 17}, + [2822] = {.lex_state = 29, .external_lex_state = 10}, [2823] = {.lex_state = 100, .external_lex_state = 17}, - [2824] = {.lex_state = 188, .external_lex_state = 15}, + [2824] = {.lex_state = 100, .external_lex_state = 17}, [2825] = {.lex_state = 100, .external_lex_state = 17}, [2826] = {.lex_state = 100, .external_lex_state = 17}, - [2827] = {.lex_state = 100, .external_lex_state = 17}, + [2827] = {.lex_state = 188, .external_lex_state = 15}, [2828] = {.lex_state = 100, .external_lex_state = 17}, - [2829] = {.lex_state = 100, .external_lex_state = 17}, + [2829] = {.lex_state = 29, .external_lex_state = 10}, [2830] = {.lex_state = 100, .external_lex_state = 17}, - [2831] = {.lex_state = 29, .external_lex_state = 10}, - [2832] = {.lex_state = 188, .external_lex_state = 15}, - [2833] = {.lex_state = 100, .external_lex_state = 17}, + [2831] = {.lex_state = 100, .external_lex_state = 17}, + [2832] = {.lex_state = 100, .external_lex_state = 17}, + [2833] = {.lex_state = 29, .external_lex_state = 10}, [2834] = {.lex_state = 100, .external_lex_state = 17}, [2835] = {.lex_state = 199, .external_lex_state = 22}, [2836] = {.lex_state = 199, .external_lex_state = 22}, [2837] = {.lex_state = 199, .external_lex_state = 22}, - [2838] = {.lex_state = 188, .external_lex_state = 15}, - [2839] = {.lex_state = 199, .external_lex_state = 22}, - [2840] = {.lex_state = 199, .external_lex_state = 22}, - [2841] = {.lex_state = 199, .external_lex_state = 22}, - [2842] = {.lex_state = 199, .external_lex_state = 22}, - [2843] = {.lex_state = 188, .external_lex_state = 15}, - [2844] = {.lex_state = 188, .external_lex_state = 15}, - [2845] = {.lex_state = 188, .external_lex_state = 10}, + [2838] = {.lex_state = 199, .external_lex_state = 22}, + [2839] = {.lex_state = 188, .external_lex_state = 15}, + [2840] = {.lex_state = 188, .external_lex_state = 15}, + [2841] = {.lex_state = 199}, + [2842] = {.lex_state = 188, .external_lex_state = 15}, + [2843] = {.lex_state = 199}, + [2844] = {.lex_state = 199, .external_lex_state = 22}, + [2845] = {.lex_state = 188, .external_lex_state = 15}, [2846] = {.lex_state = 188, .external_lex_state = 15}, [2847] = {.lex_state = 199, .external_lex_state = 22}, [2848] = {.lex_state = 199, .external_lex_state = 22}, - [2849] = {.lex_state = 188, .external_lex_state = 15}, + [2849] = {.lex_state = 199, .external_lex_state = 22}, [2850] = {.lex_state = 199, .external_lex_state = 22}, - [2851] = {.lex_state = 199, .external_lex_state = 22}, - [2852] = {.lex_state = 188, .external_lex_state = 15}, - [2853] = {.lex_state = 188, .external_lex_state = 15}, - [2854] = {.lex_state = 100}, - [2855] = {.lex_state = 100}, - [2856] = {.lex_state = 188, .external_lex_state = 15}, - [2857] = {.lex_state = 188, .external_lex_state = 15}, - [2858] = {.lex_state = 188, .external_lex_state = 15}, + [2851] = {.lex_state = 29, .external_lex_state = 10}, + [2852] = {.lex_state = 199, .external_lex_state = 22}, + [2853] = {.lex_state = 199, .external_lex_state = 22}, + [2854] = {.lex_state = 188, .external_lex_state = 15}, + [2855] = {.lex_state = 199, .external_lex_state = 22}, + [2856] = {.lex_state = 100}, + [2857] = {.lex_state = 199, .external_lex_state = 22}, + [2858] = {.lex_state = 100}, [2859] = {.lex_state = 188, .external_lex_state = 15}, - [2860] = {.lex_state = 199, .external_lex_state = 22}, + [2860] = {.lex_state = 188, .external_lex_state = 15}, [2861] = {.lex_state = 199}, - [2862] = {.lex_state = 199, .external_lex_state = 22}, + [2862] = {.lex_state = 188, .external_lex_state = 15}, [2863] = {.lex_state = 188, .external_lex_state = 15}, [2864] = {.lex_state = 199, .external_lex_state = 22}, - [2865] = {.lex_state = 199, .external_lex_state = 22}, - [2866] = {.lex_state = 188, .external_lex_state = 15}, - [2867] = {.lex_state = 199}, + [2865] = {.lex_state = 188, .external_lex_state = 10}, + [2866] = {.lex_state = 199, .external_lex_state = 22}, + [2867] = {.lex_state = 188, .external_lex_state = 15}, [2868] = {.lex_state = 199, .external_lex_state = 22}, - [2869] = {.lex_state = 199, .external_lex_state = 22}, - [2870] = {.lex_state = 188, .external_lex_state = 10}, + [2869] = {.lex_state = 188, .external_lex_state = 15}, + [2870] = {.lex_state = 199, .external_lex_state = 22}, [2871] = {.lex_state = 188, .external_lex_state = 10}, - [2872] = {.lex_state = 188, .external_lex_state = 15}, - [2873] = {.lex_state = 199}, + [2872] = {.lex_state = 29, .external_lex_state = 10}, + [2873] = {.lex_state = 199, .external_lex_state = 22}, [2874] = {.lex_state = 188, .external_lex_state = 15}, - [2875] = {.lex_state = 199}, - [2876] = {.lex_state = 199}, + [2875] = {.lex_state = 188, .external_lex_state = 15}, + [2876] = {.lex_state = 188, .external_lex_state = 15}, [2877] = {.lex_state = 188, .external_lex_state = 15}, - [2878] = {.lex_state = 188, .external_lex_state = 15}, - [2879] = {.lex_state = 188, .external_lex_state = 15}, + [2878] = {.lex_state = 199, .external_lex_state = 22}, + [2879] = {.lex_state = 199, .external_lex_state = 22}, [2880] = {.lex_state = 199}, [2881] = {.lex_state = 188, .external_lex_state = 15}, [2882] = {.lex_state = 188, .external_lex_state = 15}, [2883] = {.lex_state = 188, .external_lex_state = 15}, [2884] = {.lex_state = 188, .external_lex_state = 15}, - [2885] = {.lex_state = 199, .external_lex_state = 22}, - [2886] = {.lex_state = 199, .external_lex_state = 22}, + [2885] = {.lex_state = 188, .external_lex_state = 10}, + [2886] = {.lex_state = 199}, [2887] = {.lex_state = 188, .external_lex_state = 15}, - [2888] = {.lex_state = 29, .external_lex_state = 10}, + [2888] = {.lex_state = 199}, [2889] = {.lex_state = 188, .external_lex_state = 10}, [2890] = {.lex_state = 188, .external_lex_state = 15}, [2891] = {.lex_state = 188, .external_lex_state = 15}, [2892] = {.lex_state = 188, .external_lex_state = 15}, - [2893] = {.lex_state = 199, .external_lex_state = 22}, - [2894] = {.lex_state = 29, .external_lex_state = 10}, + [2893] = {.lex_state = 188, .external_lex_state = 15}, + [2894] = {.lex_state = 188, .external_lex_state = 15}, [2895] = {.lex_state = 102}, [2896] = {.lex_state = 188, .external_lex_state = 10}, [2897] = {.lex_state = 188, .external_lex_state = 10}, [2898] = {.lex_state = 188, .external_lex_state = 10}, - [2899] = {.lex_state = 188, .external_lex_state = 10}, + [2899] = {.lex_state = 102}, [2900] = {.lex_state = 188, .external_lex_state = 10}, [2901] = {.lex_state = 188, .external_lex_state = 10}, [2902] = {.lex_state = 188, .external_lex_state = 10}, - [2903] = {.lex_state = 102}, + [2903] = {.lex_state = 188, .external_lex_state = 10}, [2904] = {.lex_state = 102}, [2905] = {.lex_state = 102}, [2906] = {.lex_state = 102}, @@ -8600,78 +8626,78 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2908] = {.lex_state = 102}, [2909] = {.lex_state = 102}, [2910] = {.lex_state = 102}, - [2911] = {.lex_state = 188, .external_lex_state = 10}, + [2911] = {.lex_state = 102}, [2912] = {.lex_state = 102}, - [2913] = {.lex_state = 91, .external_lex_state = 17}, - [2914] = {.lex_state = 102}, + [2913] = {.lex_state = 188, .external_lex_state = 10}, + [2914] = {.lex_state = 91, .external_lex_state = 17}, [2915] = {.lex_state = 102}, - [2916] = {.lex_state = 188, .external_lex_state = 10}, + [2916] = {.lex_state = 199}, [2917] = {.lex_state = 102}, [2918] = {.lex_state = 102}, - [2919] = {.lex_state = 188, .external_lex_state = 10}, + [2919] = {.lex_state = 102}, [2920] = {.lex_state = 102}, - [2921] = {.lex_state = 91, .external_lex_state = 17}, - [2922] = {.lex_state = 199}, - [2923] = {.lex_state = 91}, - [2924] = {.lex_state = 102}, - [2925] = {.lex_state = 188, .external_lex_state = 10}, - [2926] = {.lex_state = 188, .external_lex_state = 10}, - [2927] = {.lex_state = 188, .external_lex_state = 10}, - [2928] = {.lex_state = 91, .external_lex_state = 17}, - [2929] = {.lex_state = 91}, - [2930] = {.lex_state = 102}, + [2921] = {.lex_state = 188, .external_lex_state = 10}, + [2922] = {.lex_state = 188, .external_lex_state = 10}, + [2923] = {.lex_state = 91, .external_lex_state = 17}, + [2924] = {.lex_state = 188, .external_lex_state = 10}, + [2925] = {.lex_state = 102}, + [2926] = {.lex_state = 91}, + [2927] = {.lex_state = 91, .external_lex_state = 17}, + [2928] = {.lex_state = 91}, + [2929] = {.lex_state = 188, .external_lex_state = 10}, + [2930] = {.lex_state = 188, .external_lex_state = 10}, [2931] = {.lex_state = 102}, [2932] = {.lex_state = 102}, [2933] = {.lex_state = 102}, [2934] = {.lex_state = 102}, [2935] = {.lex_state = 102}, - [2936] = {.lex_state = 188, .external_lex_state = 10}, - [2937] = {.lex_state = 102}, - [2938] = {.lex_state = 102}, - [2939] = {.lex_state = 188, .external_lex_state = 10}, + [2936] = {.lex_state = 102}, + [2937] = {.lex_state = 188, .external_lex_state = 10}, + [2938] = {.lex_state = 188, .external_lex_state = 10}, + [2939] = {.lex_state = 102}, [2940] = {.lex_state = 188, .external_lex_state = 10}, - [2941] = {.lex_state = 91, .external_lex_state = 17}, - [2942] = {.lex_state = 103, .external_lex_state = 20}, + [2941] = {.lex_state = 102}, + [2942] = {.lex_state = 102}, [2943] = {.lex_state = 102}, [2944] = {.lex_state = 102}, [2945] = {.lex_state = 102}, [2946] = {.lex_state = 102}, [2947] = {.lex_state = 102}, [2948] = {.lex_state = 188, .external_lex_state = 10}, - [2949] = {.lex_state = 102}, - [2950] = {.lex_state = 188, .external_lex_state = 10}, + [2949] = {.lex_state = 188, .external_lex_state = 10}, + [2950] = {.lex_state = 102}, [2951] = {.lex_state = 102}, [2952] = {.lex_state = 102}, [2953] = {.lex_state = 102}, - [2954] = {.lex_state = 188, .external_lex_state = 10}, - [2955] = {.lex_state = 188, .external_lex_state = 10}, + [2954] = {.lex_state = 199}, + [2955] = {.lex_state = 102}, [2956] = {.lex_state = 188, .external_lex_state = 10}, [2957] = {.lex_state = 102}, [2958] = {.lex_state = 199}, - [2959] = {.lex_state = 199}, - [2960] = {.lex_state = 199}, + [2959] = {.lex_state = 188, .external_lex_state = 10}, + [2960] = {.lex_state = 188, .external_lex_state = 10}, [2961] = {.lex_state = 188, .external_lex_state = 10}, - [2962] = {.lex_state = 188, .external_lex_state = 10}, + [2962] = {.lex_state = 92, .external_lex_state = 19}, [2963] = {.lex_state = 92, .external_lex_state = 19}, [2964] = {.lex_state = 92, .external_lex_state = 19}, - [2965] = {.lex_state = 188, .external_lex_state = 10}, - [2966] = {.lex_state = 92, .external_lex_state = 19}, - [2967] = {.lex_state = 102}, - [2968] = {.lex_state = 102}, + [2965] = {.lex_state = 199}, + [2966] = {.lex_state = 188, .external_lex_state = 10}, + [2967] = {.lex_state = 103, .external_lex_state = 20}, + [2968] = {.lex_state = 188, .external_lex_state = 10}, [2969] = {.lex_state = 199}, - [2970] = {.lex_state = 188, .external_lex_state = 10}, + [2970] = {.lex_state = 91, .external_lex_state = 17}, [2971] = {.lex_state = 188, .external_lex_state = 10}, [2972] = {.lex_state = 188, .external_lex_state = 10}, [2973] = {.lex_state = 188, .external_lex_state = 10}, - [2974] = {.lex_state = 188, .external_lex_state = 10}, + [2974] = {.lex_state = 199}, [2975] = {.lex_state = 188, .external_lex_state = 10}, [2976] = {.lex_state = 188, .external_lex_state = 10}, - [2977] = {.lex_state = 102}, - [2978] = {.lex_state = 92, .external_lex_state = 19}, + [2977] = {.lex_state = 188, .external_lex_state = 10}, + [2978] = {.lex_state = 188, .external_lex_state = 10}, [2979] = {.lex_state = 102}, - [2980] = {.lex_state = 199}, + [2980] = {.lex_state = 92, .external_lex_state = 19}, [2981] = {.lex_state = 91}, - [2982] = {.lex_state = 188, .external_lex_state = 10}, + [2982] = {.lex_state = 102}, [2983] = {.lex_state = 91, .external_lex_state = 17}, [2984] = {.lex_state = 102}, [2985] = {.lex_state = 102}, @@ -8679,494 +8705,497 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2987] = {.lex_state = 102}, [2988] = {.lex_state = 102}, [2989] = {.lex_state = 102}, - [2990] = {.lex_state = 102}, + [2990] = {.lex_state = 188, .external_lex_state = 10}, [2991] = {.lex_state = 102}, [2992] = {.lex_state = 102}, [2993] = {.lex_state = 102}, - [2994] = {.lex_state = 103, .external_lex_state = 13}, - [2995] = {.lex_state = 101, .external_lex_state = 20}, - [2996] = {.lex_state = 103, .external_lex_state = 13}, + [2994] = {.lex_state = 103, .external_lex_state = 12}, + [2995] = {.lex_state = 103, .external_lex_state = 12}, + [2996] = {.lex_state = 103, .external_lex_state = 12}, [2997] = {.lex_state = 101, .external_lex_state = 20}, [2998] = {.lex_state = 101, .external_lex_state = 20}, [2999] = {.lex_state = 101, .external_lex_state = 20}, - [3000] = {.lex_state = 103, .external_lex_state = 13}, - [3001] = {.lex_state = 103, .external_lex_state = 13}, + [3000] = {.lex_state = 103, .external_lex_state = 12}, + [3001] = {.lex_state = 103, .external_lex_state = 12}, [3002] = {.lex_state = 101, .external_lex_state = 20}, [3003] = {.lex_state = 101, .external_lex_state = 20}, - [3004] = {.lex_state = 102}, - [3005] = {.lex_state = 101, .external_lex_state = 20}, - [3006] = {.lex_state = 103, .external_lex_state = 13}, - [3007] = {.lex_state = 103, .external_lex_state = 13}, - [3008] = {.lex_state = 101, .external_lex_state = 20}, - [3009] = {.lex_state = 103, .external_lex_state = 13}, + [3004] = {.lex_state = 101, .external_lex_state = 20}, + [3005] = {.lex_state = 102}, + [3006] = {.lex_state = 103, .external_lex_state = 12}, + [3007] = {.lex_state = 103, .external_lex_state = 12}, + [3008] = {.lex_state = 103, .external_lex_state = 12}, + [3009] = {.lex_state = 91}, [3010] = {.lex_state = 91}, [3011] = {.lex_state = 91}, - [3012] = {.lex_state = 91}, - [3013] = {.lex_state = 103, .external_lex_state = 13}, - [3014] = {.lex_state = 103, .external_lex_state = 13}, + [3012] = {.lex_state = 101, .external_lex_state = 20}, + [3013] = {.lex_state = 103, .external_lex_state = 12}, + [3014] = {.lex_state = 103, .external_lex_state = 12}, [3015] = {.lex_state = 101, .external_lex_state = 20}, [3016] = {.lex_state = 101, .external_lex_state = 20}, - [3017] = {.lex_state = 103, .external_lex_state = 13}, + [3017] = {.lex_state = 103, .external_lex_state = 12}, [3018] = {.lex_state = 101, .external_lex_state = 20}, - [3019] = {.lex_state = 101, .external_lex_state = 20}, - [3020] = {.lex_state = 103, .external_lex_state = 13}, - [3021] = {.lex_state = 103, .external_lex_state = 13}, - [3022] = {.lex_state = 103, .external_lex_state = 13}, + [3019] = {.lex_state = 103, .external_lex_state = 12}, + [3020] = {.lex_state = 103, .external_lex_state = 12}, + [3021] = {.lex_state = 101, .external_lex_state = 20}, + [3022] = {.lex_state = 103, .external_lex_state = 12}, [3023] = {.lex_state = 101, .external_lex_state = 20}, [3024] = {.lex_state = 101, .external_lex_state = 20}, - [3025] = {.lex_state = 103, .external_lex_state = 13}, - [3026] = {.lex_state = 103, .external_lex_state = 13}, + [3025] = {.lex_state = 103, .external_lex_state = 12}, + [3026] = {.lex_state = 101, .external_lex_state = 20}, [3027] = {.lex_state = 101, .external_lex_state = 20}, - [3028] = {.lex_state = 101, .external_lex_state = 20}, + [3028] = {.lex_state = 103, .external_lex_state = 12}, [3029] = {.lex_state = 101, .external_lex_state = 20}, - [3030] = {.lex_state = 103, .external_lex_state = 13}, - [3031] = {.lex_state = 103, .external_lex_state = 13}, - [3032] = {.lex_state = 103, .external_lex_state = 13}, + [3030] = {.lex_state = 101, .external_lex_state = 20}, + [3031] = {.lex_state = 103, .external_lex_state = 12}, + [3032] = {.lex_state = 103, .external_lex_state = 12}, [3033] = {.lex_state = 101, .external_lex_state = 20}, [3034] = {.lex_state = 101, .external_lex_state = 20}, [3035] = {.lex_state = 101, .external_lex_state = 20}, - [3036] = {.lex_state = 101, .external_lex_state = 20}, - [3037] = {.lex_state = 91}, - [3038] = {.lex_state = 103, .external_lex_state = 13}, - [3039] = {.lex_state = 103, .external_lex_state = 13}, + [3036] = {.lex_state = 91}, + [3037] = {.lex_state = 103, .external_lex_state = 12}, + [3038] = {.lex_state = 103, .external_lex_state = 12}, + [3039] = {.lex_state = 101, .external_lex_state = 20}, [3040] = {.lex_state = 101, .external_lex_state = 20}, [3041] = {.lex_state = 101, .external_lex_state = 20}, - [3042] = {.lex_state = 103, .external_lex_state = 13}, + [3042] = {.lex_state = 103, .external_lex_state = 12}, [3043] = {.lex_state = 101, .external_lex_state = 20}, - [3044] = {.lex_state = 103, .external_lex_state = 13}, - [3045] = {.lex_state = 103, .external_lex_state = 13}, - [3046] = {.lex_state = 103, .external_lex_state = 13}, + [3044] = {.lex_state = 103, .external_lex_state = 12}, + [3045] = {.lex_state = 103, .external_lex_state = 12}, + [3046] = {.lex_state = 101, .external_lex_state = 20}, [3047] = {.lex_state = 101, .external_lex_state = 20}, - [3048] = {.lex_state = 103, .external_lex_state = 13}, - [3049] = {.lex_state = 101, .external_lex_state = 20}, - [3050] = {.lex_state = 103, .external_lex_state = 13}, + [3048] = {.lex_state = 103, .external_lex_state = 12}, + [3049] = {.lex_state = 103, .external_lex_state = 12}, + [3050] = {.lex_state = 103, .external_lex_state = 12}, [3051] = {.lex_state = 101, .external_lex_state = 17}, - [3052] = {.lex_state = 103, .external_lex_state = 13}, - [3053] = {.lex_state = 101, .external_lex_state = 20}, - [3054] = {.lex_state = 101, .external_lex_state = 20}, - [3055] = {.lex_state = 199}, + [3052] = {.lex_state = 101, .external_lex_state = 20}, + [3053] = {.lex_state = 103, .external_lex_state = 12}, + [3054] = {.lex_state = 103, .external_lex_state = 12}, + [3055] = {.lex_state = 101, .external_lex_state = 20}, [3056] = {.lex_state = 101, .external_lex_state = 17}, - [3057] = {.lex_state = 102}, - [3058] = {.lex_state = 101, .external_lex_state = 20}, + [3057] = {.lex_state = 101, .external_lex_state = 20}, + [3058] = {.lex_state = 199}, [3059] = {.lex_state = 102}, - [3060] = {.lex_state = 103, .external_lex_state = 13}, - [3061] = {.lex_state = 101, .external_lex_state = 20}, - [3062] = {.lex_state = 102}, - [3063] = {.lex_state = 101, .external_lex_state = 20}, - [3064] = {.lex_state = 102}, - [3065] = {.lex_state = 103, .external_lex_state = 13}, - [3066] = {.lex_state = 92, .external_lex_state = 19}, + [3060] = {.lex_state = 102}, + [3061] = {.lex_state = 199}, + [3062] = {.lex_state = 101, .external_lex_state = 20}, + [3063] = {.lex_state = 102}, + [3064] = {.lex_state = 103, .external_lex_state = 12}, + [3065] = {.lex_state = 103, .external_lex_state = 12}, + [3066] = {.lex_state = 101, .external_lex_state = 20}, [3067] = {.lex_state = 101, .external_lex_state = 20}, [3068] = {.lex_state = 102}, - [3069] = {.lex_state = 103, .external_lex_state = 13}, - [3070] = {.lex_state = 103, .external_lex_state = 13}, + [3069] = {.lex_state = 103, .external_lex_state = 12}, + [3070] = {.lex_state = 103, .external_lex_state = 12}, [3071] = {.lex_state = 101, .external_lex_state = 20}, - [3072] = {.lex_state = 199}, - [3073] = {.lex_state = 103, .external_lex_state = 13}, - [3074] = {.lex_state = 102}, + [3072] = {.lex_state = 101, .external_lex_state = 20}, + [3073] = {.lex_state = 92, .external_lex_state = 19}, + [3074] = {.lex_state = 103, .external_lex_state = 12}, [3075] = {.lex_state = 101, .external_lex_state = 20}, - [3076] = {.lex_state = 103, .external_lex_state = 13}, - [3077] = {.lex_state = 103, .external_lex_state = 13}, - [3078] = {.lex_state = 103, .external_lex_state = 13}, - [3079] = {.lex_state = 101, .external_lex_state = 20}, + [3076] = {.lex_state = 91}, + [3077] = {.lex_state = 102}, + [3078] = {.lex_state = 103, .external_lex_state = 12}, + [3079] = {.lex_state = 103, .external_lex_state = 12}, [3080] = {.lex_state = 101, .external_lex_state = 20}, [3081] = {.lex_state = 101, .external_lex_state = 17}, - [3082] = {.lex_state = 101, .external_lex_state = 20}, - [3083] = {.lex_state = 199}, - [3084] = {.lex_state = 103, .external_lex_state = 13}, - [3085] = {.lex_state = 101, .external_lex_state = 20}, - [3086] = {.lex_state = 91}, - [3087] = {.lex_state = 101, .external_lex_state = 17}, - [3088] = {.lex_state = 103, .external_lex_state = 13}, - [3089] = {.lex_state = 101, .external_lex_state = 20}, + [3082] = {.lex_state = 102}, + [3083] = {.lex_state = 101, .external_lex_state = 20}, + [3084] = {.lex_state = 199}, + [3085] = {.lex_state = 103, .external_lex_state = 12}, + [3086] = {.lex_state = 103, .external_lex_state = 12}, + [3087] = {.lex_state = 101, .external_lex_state = 20}, + [3088] = {.lex_state = 101, .external_lex_state = 20}, + [3089] = {.lex_state = 103, .external_lex_state = 12}, [3090] = {.lex_state = 91}, - [3091] = {.lex_state = 103, .external_lex_state = 13}, - [3092] = {.lex_state = 103, .external_lex_state = 13}, - [3093] = {.lex_state = 101, .external_lex_state = 20}, - [3094] = {.lex_state = 103, .external_lex_state = 13}, - [3095] = {.lex_state = 103, .external_lex_state = 13}, - [3096] = {.lex_state = 101, .external_lex_state = 20}, - [3097] = {.lex_state = 101, .external_lex_state = 20}, - [3098] = {.lex_state = 199}, - [3099] = {.lex_state = 103, .external_lex_state = 13}, + [3091] = {.lex_state = 101, .external_lex_state = 20}, + [3092] = {.lex_state = 103, .external_lex_state = 12}, + [3093] = {.lex_state = 103, .external_lex_state = 12}, + [3094] = {.lex_state = 103, .external_lex_state = 12}, + [3095] = {.lex_state = 101, .external_lex_state = 20}, + [3096] = {.lex_state = 103, .external_lex_state = 12}, + [3097] = {.lex_state = 199}, + [3098] = {.lex_state = 101, .external_lex_state = 20}, + [3099] = {.lex_state = 103, .external_lex_state = 12}, [3100] = {.lex_state = 102}, [3101] = {.lex_state = 92, .external_lex_state = 19}, [3102] = {.lex_state = 101, .external_lex_state = 20}, [3103] = {.lex_state = 101, .external_lex_state = 20}, - [3104] = {.lex_state = 103, .external_lex_state = 13}, + [3104] = {.lex_state = 103, .external_lex_state = 12}, [3105] = {.lex_state = 199}, [3106] = {.lex_state = 101, .external_lex_state = 20}, - [3107] = {.lex_state = 103, .external_lex_state = 13}, + [3107] = {.lex_state = 103, .external_lex_state = 12}, [3108] = {.lex_state = 101, .external_lex_state = 20}, - [3109] = {.lex_state = 101, .external_lex_state = 20}, - [3110] = {.lex_state = 103, .external_lex_state = 13}, - [3111] = {.lex_state = 102}, - [3112] = {.lex_state = 92, .external_lex_state = 19}, - [3113] = {.lex_state = 101, .external_lex_state = 20}, + [3109] = {.lex_state = 103, .external_lex_state = 12}, + [3110] = {.lex_state = 102}, + [3111] = {.lex_state = 101, .external_lex_state = 20}, + [3112] = {.lex_state = 101, .external_lex_state = 20}, + [3113] = {.lex_state = 92, .external_lex_state = 19}, [3114] = {.lex_state = 101, .external_lex_state = 20}, - [3115] = {.lex_state = 103, .external_lex_state = 13}, - [3116] = {.lex_state = 101, .external_lex_state = 20}, - [3117] = {.lex_state = 91}, - [3118] = {.lex_state = 92, .external_lex_state = 19}, - [3119] = {.lex_state = 103, .external_lex_state = 13}, - [3120] = {.lex_state = 103, .external_lex_state = 13}, - [3121] = {.lex_state = 101, .external_lex_state = 20}, - [3122] = {.lex_state = 103, .external_lex_state = 13}, - [3123] = {.lex_state = 103, .external_lex_state = 13}, + [3115] = {.lex_state = 101, .external_lex_state = 20}, + [3116] = {.lex_state = 103, .external_lex_state = 12}, + [3117] = {.lex_state = 103, .external_lex_state = 12}, + [3118] = {.lex_state = 101, .external_lex_state = 20}, + [3119] = {.lex_state = 101, .external_lex_state = 17}, + [3120] = {.lex_state = 103, .external_lex_state = 12}, + [3121] = {.lex_state = 103, .external_lex_state = 12}, + [3122] = {.lex_state = 103, .external_lex_state = 12}, + [3123] = {.lex_state = 103, .external_lex_state = 12}, [3124] = {.lex_state = 101, .external_lex_state = 20}, - [3125] = {.lex_state = 103, .external_lex_state = 13}, - [3126] = {.lex_state = 101, .external_lex_state = 20}, - [3127] = {.lex_state = 103, .external_lex_state = 13}, - [3128] = {.lex_state = 101, .external_lex_state = 20}, - [3129] = {.lex_state = 103, .external_lex_state = 13}, + [3125] = {.lex_state = 101, .external_lex_state = 20}, + [3126] = {.lex_state = 103, .external_lex_state = 12}, + [3127] = {.lex_state = 101, .external_lex_state = 20}, + [3128] = {.lex_state = 92, .external_lex_state = 19}, + [3129] = {.lex_state = 103, .external_lex_state = 12}, [3130] = {.lex_state = 101, .external_lex_state = 20}, - [3131] = {.lex_state = 103, .external_lex_state = 13}, + [3131] = {.lex_state = 101, .external_lex_state = 20}, [3132] = {.lex_state = 101, .external_lex_state = 20}, - [3133] = {.lex_state = 101, .external_lex_state = 20}, - [3134] = {.lex_state = 103, .external_lex_state = 13}, - [3135] = {.lex_state = 103, .external_lex_state = 13}, - [3136] = {.lex_state = 101, .external_lex_state = 20}, - [3137] = {.lex_state = 91}, + [3133] = {.lex_state = 103, .external_lex_state = 12}, + [3134] = {.lex_state = 103, .external_lex_state = 12}, + [3135] = {.lex_state = 101, .external_lex_state = 20}, + [3136] = {.lex_state = 103, .external_lex_state = 12}, + [3137] = {.lex_state = 101, .external_lex_state = 20}, [3138] = {.lex_state = 91}, - [3139] = {.lex_state = 101, .external_lex_state = 20}, - [3140] = {.lex_state = 103, .external_lex_state = 13}, + [3139] = {.lex_state = 91}, + [3140] = {.lex_state = 91}, [3141] = {.lex_state = 101, .external_lex_state = 20}, - [3142] = {.lex_state = 103, .external_lex_state = 13}, - [3143] = {.lex_state = 103, .external_lex_state = 13}, - [3144] = {.lex_state = 103, .external_lex_state = 13}, - [3145] = {.lex_state = 101, .external_lex_state = 20}, - [3146] = {.lex_state = 103, .external_lex_state = 13}, + [3142] = {.lex_state = 103, .external_lex_state = 12}, + [3143] = {.lex_state = 101, .external_lex_state = 20}, + [3144] = {.lex_state = 103, .external_lex_state = 12}, + [3145] = {.lex_state = 103, .external_lex_state = 12}, + [3146] = {.lex_state = 103, .external_lex_state = 12}, [3147] = {.lex_state = 101, .external_lex_state = 20}, - [3148] = {.lex_state = 103, .external_lex_state = 13}, - [3149] = {.lex_state = 101, .external_lex_state = 20}, - [3150] = {.lex_state = 101, .external_lex_state = 20}, - [3151] = {.lex_state = 103, .external_lex_state = 13}, + [3148] = {.lex_state = 101, .external_lex_state = 20}, + [3149] = {.lex_state = 103, .external_lex_state = 12}, + [3150] = {.lex_state = 103, .external_lex_state = 12}, + [3151] = {.lex_state = 101, .external_lex_state = 20}, [3152] = {.lex_state = 102}, [3153] = {.lex_state = 101, .external_lex_state = 20}, [3154] = {.lex_state = 101, .external_lex_state = 20}, - [3155] = {.lex_state = 90}, - [3156] = {.lex_state = 101}, - [3157] = {.lex_state = 101}, - [3158] = {.lex_state = 101, .external_lex_state = 20}, - [3159] = {.lex_state = 90}, - [3160] = {.lex_state = 90}, - [3161] = {.lex_state = 102}, - [3162] = {.lex_state = 102}, - [3163] = {.lex_state = 199}, + [3155] = {.lex_state = 101, .external_lex_state = 20}, + [3156] = {.lex_state = 90}, + [3157] = {.lex_state = 101, .external_lex_state = 20}, + [3158] = {.lex_state = 101}, + [3159] = {.lex_state = 101}, + [3160] = {.lex_state = 101, .external_lex_state = 20}, + [3161] = {.lex_state = 90}, + [3162] = {.lex_state = 90}, + [3163] = {.lex_state = 102}, [3164] = {.lex_state = 102}, [3165] = {.lex_state = 102}, [3166] = {.lex_state = 102}, [3167] = {.lex_state = 102}, [3168] = {.lex_state = 102}, - [3169] = {.lex_state = 102}, - [3170] = {.lex_state = 199}, + [3169] = {.lex_state = 199}, + [3170] = {.lex_state = 102}, [3171] = {.lex_state = 102}, [3172] = {.lex_state = 102}, - [3173] = {.lex_state = 101}, + [3173] = {.lex_state = 102}, [3174] = {.lex_state = 102}, [3175] = {.lex_state = 102}, - [3176] = {.lex_state = 103, .external_lex_state = 13}, + [3176] = {.lex_state = 101}, [3177] = {.lex_state = 102}, [3178] = {.lex_state = 102}, [3179] = {.lex_state = 102}, [3180] = {.lex_state = 102}, [3181] = {.lex_state = 101, .external_lex_state = 20}, - [3182] = {.lex_state = 102}, + [3182] = {.lex_state = 103, .external_lex_state = 12}, [3183] = {.lex_state = 102}, [3184] = {.lex_state = 102}, [3185] = {.lex_state = 102}, - [3186] = {.lex_state = 199}, + [3186] = {.lex_state = 102}, [3187] = {.lex_state = 102}, [3188] = {.lex_state = 102}, - [3189] = {.lex_state = 102}, + [3189] = {.lex_state = 199}, [3190] = {.lex_state = 102}, [3191] = {.lex_state = 102}, [3192] = {.lex_state = 102}, [3193] = {.lex_state = 102}, - [3194] = {.lex_state = 102}, - [3195] = {.lex_state = 102}, - [3196] = {.lex_state = 102}, + [3194] = {.lex_state = 199}, + [3195] = {.lex_state = 92, .external_lex_state = 19}, + [3196] = {.lex_state = 91}, [3197] = {.lex_state = 102}, [3198] = {.lex_state = 102}, [3199] = {.lex_state = 102}, [3200] = {.lex_state = 102}, [3201] = {.lex_state = 102}, - [3202] = {.lex_state = 92, .external_lex_state = 19}, + [3202] = {.lex_state = 101, .external_lex_state = 20}, [3203] = {.lex_state = 101, .external_lex_state = 20}, [3204] = {.lex_state = 101, .external_lex_state = 20}, - [3205] = {.lex_state = 199}, - [3206] = {.lex_state = 101, .external_lex_state = 20}, - [3207] = {.lex_state = 102}, - [3208] = {.lex_state = 91}, - [3209] = {.lex_state = 101, .external_lex_state = 20}, - [3210] = {.lex_state = 101, .external_lex_state = 20}, - [3211] = {.lex_state = 102}, + [3205] = {.lex_state = 101, .external_lex_state = 20}, + [3206] = {.lex_state = 102}, + [3207] = {.lex_state = 101, .external_lex_state = 20}, + [3208] = {.lex_state = 199}, + [3209] = {.lex_state = 102}, + [3210] = {.lex_state = 102}, + [3211] = {.lex_state = 101}, [3212] = {.lex_state = 102}, - [3213] = {.lex_state = 101, .external_lex_state = 20}, + [3213] = {.lex_state = 102}, [3214] = {.lex_state = 102}, - [3215] = {.lex_state = 101}, - [3216] = {.lex_state = 102}, - [3217] = {.lex_state = 101, .external_lex_state = 20}, - [3218] = {.lex_state = 199}, - [3219] = {.lex_state = 102}, + [3215] = {.lex_state = 199}, + [3216] = {.lex_state = 101}, + [3217] = {.lex_state = 102}, + [3218] = {.lex_state = 102}, + [3219] = {.lex_state = 199}, [3220] = {.lex_state = 102}, - [3221] = {.lex_state = 101, .external_lex_state = 20}, - [3222] = {.lex_state = 101}, - [3223] = {.lex_state = 101, .external_lex_state = 20}, - [3224] = {.lex_state = 102}, + [3221] = {.lex_state = 102}, + [3222] = {.lex_state = 102}, + [3223] = {.lex_state = 102}, + [3224] = {.lex_state = 101, .external_lex_state = 20}, [3225] = {.lex_state = 102}, - [3226] = {.lex_state = 102}, - [3227] = {.lex_state = 101}, + [3226] = {.lex_state = 101, .external_lex_state = 20}, + [3227] = {.lex_state = 102}, [3228] = {.lex_state = 102}, - [3229] = {.lex_state = 102}, + [3229] = {.lex_state = 101}, [3230] = {.lex_state = 102}, [3231] = {.lex_state = 101, .external_lex_state = 20}, - [3232] = {.lex_state = 102}, - [3233] = {.lex_state = 101}, - [3234] = {.lex_state = 101, .external_lex_state = 20}, + [3232] = {.lex_state = 101, .external_lex_state = 20}, + [3233] = {.lex_state = 102}, + [3234] = {.lex_state = 101}, [3235] = {.lex_state = 102}, [3236] = {.lex_state = 102}, [3237] = {.lex_state = 101}, [3238] = {.lex_state = 101, .external_lex_state = 20}, [3239] = {.lex_state = 101, .external_lex_state = 20}, - [3240] = {.lex_state = 199}, - [3241] = {.lex_state = 101, .external_lex_state = 20}, - [3242] = {.lex_state = 102}, + [3240] = {.lex_state = 101, .external_lex_state = 20}, + [3241] = {.lex_state = 102}, + [3242] = {.lex_state = 199}, [3243] = {.lex_state = 102}, - [3244] = {.lex_state = 101, .external_lex_state = 20}, - [3245] = {.lex_state = 101, .external_lex_state = 20}, - [3246] = {.lex_state = 101}, - [3247] = {.lex_state = 102}, + [3244] = {.lex_state = 101}, + [3245] = {.lex_state = 102}, + [3246] = {.lex_state = 101, .external_lex_state = 20}, + [3247] = {.lex_state = 199}, [3248] = {.lex_state = 102}, - [3249] = {.lex_state = 199}, - [3250] = {.lex_state = 101}, + [3249] = {.lex_state = 101}, + [3250] = {.lex_state = 101, .external_lex_state = 20}, [3251] = {.lex_state = 102}, - [3252] = {.lex_state = 102}, - [3253] = {.lex_state = 101}, - [3254] = {.lex_state = 199}, - [3255] = {.lex_state = 92, .external_lex_state = 19}, + [3252] = {.lex_state = 101, .external_lex_state = 20}, + [3253] = {.lex_state = 102}, + [3254] = {.lex_state = 101}, + [3255] = {.lex_state = 102}, [3256] = {.lex_state = 102}, [3257] = {.lex_state = 199}, - [3258] = {.lex_state = 102}, - [3259] = {.lex_state = 101}, + [3258] = {.lex_state = 101}, + [3259] = {.lex_state = 92, .external_lex_state = 19}, [3260] = {.lex_state = 101, .external_lex_state = 20}, [3261] = {.lex_state = 101, .external_lex_state = 20}, - [3262] = {.lex_state = 101}, - [3263] = {.lex_state = 101, .external_lex_state = 20}, + [3262] = {.lex_state = 102}, + [3263] = {.lex_state = 101}, [3264] = {.lex_state = 101, .external_lex_state = 20}, - [3265] = {.lex_state = 101, .external_lex_state = 20}, - [3266] = {.lex_state = 102}, + [3265] = {.lex_state = 199}, + [3266] = {.lex_state = 101, .external_lex_state = 20}, [3267] = {.lex_state = 102}, - [3268] = {.lex_state = 199}, + [3268] = {.lex_state = 102}, [3269] = {.lex_state = 101, .external_lex_state = 20}, - [3270] = {.lex_state = 91}, - [3271] = {.lex_state = 199}, - [3272] = {.lex_state = 101, .external_lex_state = 13}, - [3273] = {.lex_state = 91}, + [3270] = {.lex_state = 199}, + [3271] = {.lex_state = 101, .external_lex_state = 12}, + [3272] = {.lex_state = 91}, + [3273] = {.lex_state = 199}, [3274] = {.lex_state = 199}, - [3275] = {.lex_state = 199}, - [3276] = {.lex_state = 101, .external_lex_state = 13}, - [3277] = {.lex_state = 91}, + [3275] = {.lex_state = 91}, + [3276] = {.lex_state = 101, .external_lex_state = 12}, + [3277] = {.lex_state = 199}, [3278] = {.lex_state = 199}, - [3279] = {.lex_state = 92, .external_lex_state = 11}, - [3280] = {.lex_state = 199}, - [3281] = {.lex_state = 101, .external_lex_state = 13}, - [3282] = {.lex_state = 101, .external_lex_state = 13}, - [3283] = {.lex_state = 101, .external_lex_state = 13}, - [3284] = {.lex_state = 91}, + [3279] = {.lex_state = 199}, + [3280] = {.lex_state = 91}, + [3281] = {.lex_state = 101, .external_lex_state = 12}, + [3282] = {.lex_state = 199}, + [3283] = {.lex_state = 91}, + [3284] = {.lex_state = 199}, [3285] = {.lex_state = 199}, - [3286] = {.lex_state = 91}, + [3286] = {.lex_state = 92, .external_lex_state = 11}, [3287] = {.lex_state = 91}, - [3288] = {.lex_state = 199}, - [3289] = {.lex_state = 199}, - [3290] = {.lex_state = 91}, - [3291] = {.lex_state = 91}, - [3292] = {.lex_state = 101, .external_lex_state = 13}, - [3293] = {.lex_state = 101, .external_lex_state = 13}, - [3294] = {.lex_state = 101, .external_lex_state = 13}, - [3295] = {.lex_state = 101, .external_lex_state = 13}, - [3296] = {.lex_state = 101, .external_lex_state = 13}, - [3297] = {.lex_state = 199}, - [3298] = {.lex_state = 91}, - [3299] = {.lex_state = 91}, - [3300] = {.lex_state = 101, .external_lex_state = 13}, + [3288] = {.lex_state = 101, .external_lex_state = 12}, + [3289] = {.lex_state = 101, .external_lex_state = 12}, + [3290] = {.lex_state = 101, .external_lex_state = 12}, + [3291] = {.lex_state = 92, .external_lex_state = 11}, + [3292] = {.lex_state = 101, .external_lex_state = 12}, + [3293] = {.lex_state = 91}, + [3294] = {.lex_state = 101, .external_lex_state = 12}, + [3295] = {.lex_state = 101, .external_lex_state = 12}, + [3296] = {.lex_state = 199}, + [3297] = {.lex_state = 95}, + [3298] = {.lex_state = 199}, + [3299] = {.lex_state = 101, .external_lex_state = 12}, + [3300] = {.lex_state = 199}, [3301] = {.lex_state = 199}, - [3302] = {.lex_state = 95}, - [3303] = {.lex_state = 101, .external_lex_state = 13}, - [3304] = {.lex_state = 91}, - [3305] = {.lex_state = 101, .external_lex_state = 13}, - [3306] = {.lex_state = 199}, - [3307] = {.lex_state = 101, .external_lex_state = 13}, + [3302] = {.lex_state = 101, .external_lex_state = 12}, + [3303] = {.lex_state = 91}, + [3304] = {.lex_state = 101, .external_lex_state = 12}, + [3305] = {.lex_state = 91}, + [3306] = {.lex_state = 101, .external_lex_state = 12}, + [3307] = {.lex_state = 199}, [3308] = {.lex_state = 91}, - [3309] = {.lex_state = 91}, - [3310] = {.lex_state = 199}, - [3311] = {.lex_state = 91}, - [3312] = {.lex_state = 199}, + [3309] = {.lex_state = 101, .external_lex_state = 12}, + [3310] = {.lex_state = 91}, + [3311] = {.lex_state = 199}, + [3312] = {.lex_state = 91}, [3313] = {.lex_state = 91}, - [3314] = {.lex_state = 199}, - [3315] = {.lex_state = 101, .external_lex_state = 13}, + [3314] = {.lex_state = 101, .external_lex_state = 12}, + [3315] = {.lex_state = 91}, [3316] = {.lex_state = 199}, [3317] = {.lex_state = 91}, - [3318] = {.lex_state = 199}, - [3319] = {.lex_state = 91}, - [3320] = {.lex_state = 91}, - [3321] = {.lex_state = 199}, - [3322] = {.lex_state = 91}, - [3323] = {.lex_state = 101, .external_lex_state = 13}, + [3318] = {.lex_state = 91}, + [3319] = {.lex_state = 199}, + [3320] = {.lex_state = 199}, + [3321] = {.lex_state = 199, .external_lex_state = 23}, + [3322] = {.lex_state = 199}, + [3323] = {.lex_state = 101, .external_lex_state = 12}, [3324] = {.lex_state = 91}, - [3325] = {.lex_state = 199, .external_lex_state = 23}, - [3326] = {.lex_state = 199}, + [3325] = {.lex_state = 91}, + [3326] = {.lex_state = 91}, [3327] = {.lex_state = 91}, [3328] = {.lex_state = 199}, [3329] = {.lex_state = 199, .external_lex_state = 23}, - [3330] = {.lex_state = 101, .external_lex_state = 13}, - [3331] = {.lex_state = 199}, + [3330] = {.lex_state = 91}, + [3331] = {.lex_state = 91}, [3332] = {.lex_state = 91}, - [3333] = {.lex_state = 91}, - [3334] = {.lex_state = 199}, + [3333] = {.lex_state = 199}, + [3334] = {.lex_state = 91}, [3335] = {.lex_state = 199}, [3336] = {.lex_state = 91}, - [3337] = {.lex_state = 91}, + [3337] = {.lex_state = 101, .external_lex_state = 12}, [3338] = {.lex_state = 199}, - [3339] = {.lex_state = 91}, - [3340] = {.lex_state = 101, .external_lex_state = 13}, - [3341] = {.lex_state = 91}, - [3342] = {.lex_state = 91}, - [3343] = {.lex_state = 199}, - [3344] = {.lex_state = 101, .external_lex_state = 13}, - [3345] = {.lex_state = 101, .external_lex_state = 13}, + [3339] = {.lex_state = 199}, + [3340] = {.lex_state = 101, .external_lex_state = 12}, + [3341] = {.lex_state = 101, .external_lex_state = 12}, + [3342] = {.lex_state = 199}, + [3343] = {.lex_state = 91}, + [3344] = {.lex_state = 199}, + [3345] = {.lex_state = 101, .external_lex_state = 12}, [3346] = {.lex_state = 91}, [3347] = {.lex_state = 199}, - [3348] = {.lex_state = 91}, - [3349] = {.lex_state = 91}, - [3350] = {.lex_state = 199}, - [3351] = {.lex_state = 91}, + [3348] = {.lex_state = 199}, + [3349] = {.lex_state = 101, .external_lex_state = 12}, + [3350] = {.lex_state = 91}, + [3351] = {.lex_state = 101, .external_lex_state = 12}, [3352] = {.lex_state = 91}, - [3353] = {.lex_state = 101, .external_lex_state = 13}, - [3354] = {.lex_state = 101, .external_lex_state = 13}, + [3353] = {.lex_state = 199}, + [3354] = {.lex_state = 91}, [3355] = {.lex_state = 91}, - [3356] = {.lex_state = 199, .external_lex_state = 23}, - [3357] = {.lex_state = 95}, + [3356] = {.lex_state = 199}, + [3357] = {.lex_state = 91}, [3358] = {.lex_state = 199}, [3359] = {.lex_state = 91}, [3360] = {.lex_state = 91}, - [3361] = {.lex_state = 101, .external_lex_state = 13}, - [3362] = {.lex_state = 101, .external_lex_state = 13}, - [3363] = {.lex_state = 199}, + [3361] = {.lex_state = 199}, + [3362] = {.lex_state = 101, .external_lex_state = 12}, + [3363] = {.lex_state = 91}, [3364] = {.lex_state = 91}, - [3365] = {.lex_state = 101, .external_lex_state = 13}, - [3366] = {.lex_state = 91}, - [3367] = {.lex_state = 101, .external_lex_state = 13}, - [3368] = {.lex_state = 101, .external_lex_state = 13}, - [3369] = {.lex_state = 199}, - [3370] = {.lex_state = 101, .external_lex_state = 13}, - [3371] = {.lex_state = 91}, - [3372] = {.lex_state = 101, .external_lex_state = 13}, - [3373] = {.lex_state = 91}, - [3374] = {.lex_state = 101, .external_lex_state = 13}, - [3375] = {.lex_state = 101, .external_lex_state = 13}, - [3376] = {.lex_state = 92, .external_lex_state = 11}, - [3377] = {.lex_state = 101, .external_lex_state = 13}, - [3378] = {.lex_state = 199}, - [3379] = {.lex_state = 101, .external_lex_state = 13}, + [3365] = {.lex_state = 101, .external_lex_state = 12}, + [3366] = {.lex_state = 95}, + [3367] = {.lex_state = 199}, + [3368] = {.lex_state = 91}, + [3369] = {.lex_state = 101, .external_lex_state = 12}, + [3370] = {.lex_state = 199}, + [3371] = {.lex_state = 101, .external_lex_state = 12}, + [3372] = {.lex_state = 101, .external_lex_state = 12}, + [3373] = {.lex_state = 199, .external_lex_state = 23}, + [3374] = {.lex_state = 101, .external_lex_state = 12}, + [3375] = {.lex_state = 199}, + [3376] = {.lex_state = 101, .external_lex_state = 12}, + [3377] = {.lex_state = 101, .external_lex_state = 12}, + [3378] = {.lex_state = 101, .external_lex_state = 12}, + [3379] = {.lex_state = 199}, [3380] = {.lex_state = 91}, - [3381] = {.lex_state = 101, .external_lex_state = 13}, - [3382] = {.lex_state = 199}, - [3383] = {.lex_state = 199}, - [3384] = {.lex_state = 199}, + [3381] = {.lex_state = 101, .external_lex_state = 12}, + [3382] = {.lex_state = 101, .external_lex_state = 12}, + [3383] = {.lex_state = 101, .external_lex_state = 12}, + [3384] = {.lex_state = 101, .external_lex_state = 12}, [3385] = {.lex_state = 199}, - [3386] = {.lex_state = 199}, - [3387] = {.lex_state = 91}, - [3388] = {.lex_state = 101, .external_lex_state = 13}, + [3386] = {.lex_state = 91}, + [3387] = {.lex_state = 199}, + [3388] = {.lex_state = 199}, [3389] = {.lex_state = 199}, [3390] = {.lex_state = 91}, - [3391] = {.lex_state = 101, .external_lex_state = 13}, - [3392] = {.lex_state = 199}, - [3393] = {.lex_state = 91}, - [3394] = {.lex_state = 91}, - [3395] = {.lex_state = 199}, - [3396] = {.lex_state = 101, .external_lex_state = 13}, - [3397] = {.lex_state = 199}, - [3398] = {.lex_state = 91}, - [3399] = {.lex_state = 91}, - [3400] = {.lex_state = 199}, - [3401] = {.lex_state = 101, .external_lex_state = 13}, - [3402] = {.lex_state = 92, .external_lex_state = 11}, - [3403] = {.lex_state = 91}, - [3404] = {.lex_state = 101, .external_lex_state = 13}, - [3405] = {.lex_state = 199}, - [3406] = {.lex_state = 91}, - [3407] = {.lex_state = 199}, - [3408] = {.lex_state = 101, .external_lex_state = 13}, - [3409] = {.lex_state = 101, .external_lex_state = 13}, + [3391] = {.lex_state = 91}, + [3392] = {.lex_state = 91}, + [3393] = {.lex_state = 199}, + [3394] = {.lex_state = 199}, + [3395] = {.lex_state = 91}, + [3396] = {.lex_state = 91}, + [3397] = {.lex_state = 91}, + [3398] = {.lex_state = 101, .external_lex_state = 12}, + [3399] = {.lex_state = 199}, + [3400] = {.lex_state = 91}, + [3401] = {.lex_state = 101, .external_lex_state = 12}, + [3402] = {.lex_state = 101, .external_lex_state = 12}, + [3403] = {.lex_state = 199}, + [3404] = {.lex_state = 91}, + [3405] = {.lex_state = 101, .external_lex_state = 12}, + [3406] = {.lex_state = 199}, + [3407] = {.lex_state = 91}, + [3408] = {.lex_state = 199}, + [3409] = {.lex_state = 91}, [3410] = {.lex_state = 91}, - [3411] = {.lex_state = 199}, - [3412] = {.lex_state = 91}, - [3413] = {.lex_state = 101, .external_lex_state = 13}, - [3414] = {.lex_state = 101, .external_lex_state = 13}, - [3415] = {.lex_state = 199}, + [3411] = {.lex_state = 101, .external_lex_state = 12}, + [3412] = {.lex_state = 199}, + [3413] = {.lex_state = 91}, + [3414] = {.lex_state = 101, .external_lex_state = 12}, + [3415] = {.lex_state = 91}, [3416] = {.lex_state = 199}, [3417] = {.lex_state = 199}, - [3418] = {.lex_state = 92, .external_lex_state = 11}, - [3419] = {.lex_state = 101, .external_lex_state = 13}, + [3418] = {.lex_state = 199}, + [3419] = {.lex_state = 101, .external_lex_state = 12}, [3420] = {.lex_state = 199}, - [3421] = {.lex_state = 91}, - [3422] = {.lex_state = 199}, - [3423] = {.lex_state = 199}, - [3424] = {.lex_state = 101, .external_lex_state = 13}, - [3425] = {.lex_state = 91}, - [3426] = {.lex_state = 101, .external_lex_state = 13}, - [3427] = {.lex_state = 199}, - [3428] = {.lex_state = 101, .external_lex_state = 13}, + [3421] = {.lex_state = 199}, + [3422] = {.lex_state = 91}, + [3423] = {.lex_state = 101, .external_lex_state = 12}, + [3424] = {.lex_state = 101, .external_lex_state = 12}, + [3425] = {.lex_state = 101, .external_lex_state = 12}, + [3426] = {.lex_state = 91}, + [3427] = {.lex_state = 92, .external_lex_state = 11}, + [3428] = {.lex_state = 92, .external_lex_state = 11}, [3429] = {.lex_state = 199}, [3430] = {.lex_state = 91}, - [3431] = {.lex_state = 101, .external_lex_state = 13}, - [3432] = {.lex_state = 101, .external_lex_state = 13}, - [3433] = {.lex_state = 91}, + [3431] = {.lex_state = 199}, + [3432] = {.lex_state = 101, .external_lex_state = 12}, + [3433] = {.lex_state = 101, .external_lex_state = 12}, [3434] = {.lex_state = 95}, - [3435] = {.lex_state = 101, .external_lex_state = 13}, - [3436] = {.lex_state = 101, .external_lex_state = 13}, - [3437] = {.lex_state = 199}, - [3438] = {.lex_state = 199}, - [3439] = {.lex_state = 101, .external_lex_state = 13}, - [3440] = {.lex_state = 199}, - [3441] = {.lex_state = 199}, - [3442] = {.lex_state = 101, .external_lex_state = 13}, - [3443] = {.lex_state = 91}, - [3444] = {.lex_state = 91}, - [3445] = {.lex_state = 91}, - [3446] = {.lex_state = 91}, - [3447] = {.lex_state = 101, .external_lex_state = 13}, + [3435] = {.lex_state = 91}, + [3436] = {.lex_state = 101, .external_lex_state = 12}, + [3437] = {.lex_state = 101, .external_lex_state = 12}, + [3438] = {.lex_state = 91}, + [3439] = {.lex_state = 90}, + [3440] = {.lex_state = 101, .external_lex_state = 12}, + [3441] = {.lex_state = 101, .external_lex_state = 12}, + [3442] = {.lex_state = 101, .external_lex_state = 12}, + [3443] = {.lex_state = 90}, + [3444] = {.lex_state = 199}, + [3445] = {.lex_state = 199}, + [3446] = {.lex_state = 101, .external_lex_state = 12}, + [3447] = {.lex_state = 91}, [3448] = {.lex_state = 91}, - [3449] = {.lex_state = 199}, + [3449] = {.lex_state = 101, .external_lex_state = 12}, [3450] = {.lex_state = 199}, [3451] = {.lex_state = 199}, - [3452] = {.lex_state = 101, .external_lex_state = 13}, - [3453] = {.lex_state = 101, .external_lex_state = 13}, - [3454] = {.lex_state = 199}, - [3455] = {.lex_state = 199}, - [3456] = {.lex_state = 101, .external_lex_state = 13}, - [3457] = {.lex_state = 199}, - [3458] = {.lex_state = 91}, - [3459] = {.lex_state = 101, .external_lex_state = 13}, + [3452] = {.lex_state = 199}, + [3453] = {.lex_state = 199}, + [3454] = {.lex_state = 101, .external_lex_state = 12}, + [3455] = {.lex_state = 101, .external_lex_state = 12}, + [3456] = {.lex_state = 101, .external_lex_state = 12}, + [3457] = {.lex_state = 91}, + [3458] = {.lex_state = 199}, + [3459] = {.lex_state = 199}, [3460] = {.lex_state = 199}, - [3461] = {.lex_state = 101, .external_lex_state = 13}, - [3462] = {.lex_state = 199}, - [3463] = {.lex_state = 199}, + [3461] = {.lex_state = 101, .external_lex_state = 12}, + [3462] = {.lex_state = 91}, + [3463] = {.lex_state = 90}, [3464] = {.lex_state = 91}, - [3465] = {.lex_state = 199}, - [3466] = {.lex_state = 91}, - [3467] = {.lex_state = 199}, + [3465] = {.lex_state = 101, .external_lex_state = 12}, + [3466] = {.lex_state = 199}, + [3467] = {.lex_state = 91}, [3468] = {.lex_state = 199}, [3469] = {.lex_state = 91}, - [3470] = {.lex_state = 101, .external_lex_state = 13}, + [3470] = {.lex_state = 199}, [3471] = {.lex_state = 199}, - [3472] = {.lex_state = 91}, - [3473] = {.lex_state = 199}, + [3472] = {.lex_state = 199}, + [3473] = {.lex_state = 101, .external_lex_state = 12}, [3474] = {.lex_state = 91}, - [3475] = {.lex_state = 101, .external_lex_state = 13}, - [3476] = {.lex_state = 101, .external_lex_state = 13}, - [3477] = {.lex_state = 199}, + [3475] = {.lex_state = 199}, + [3476] = {.lex_state = 91}, + [3477] = {.lex_state = 91}, + [3478] = {.lex_state = 101, .external_lex_state = 12}, + [3479] = {.lex_state = 101, .external_lex_state = 12}, + [3480] = {.lex_state = 199}, }; enum { @@ -9279,10 +9308,10 @@ static const bool ts_external_scanner_states[24][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACK] = true, }, [12] = { - [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, }, [13] = { + [ts_external_token_regex] = true, [ts_external_token_RBRACE] = true, }, [14] = { @@ -9329,6 +9358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_word] = ACTIONS(1), [anon_sym_for] = ACTIONS(1), + [anon_sym_select] = ACTIONS(1), [anon_sym_in] = ACTIONS(1), [anon_sym_LPAREN_LPAREN] = ACTIONS(1), [anon_sym_SEMI] = ACTIONS(1), @@ -9424,11155 +9454,947 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_regex] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(3423), + [sym_program] = STATE(3421), [sym__statements] = STATE(3420), - [sym_redirected_statement] = STATE(1665), - [sym_for_statement] = STATE(1665), - [sym_c_style_for_statement] = STATE(1665), - [sym_while_statement] = STATE(1665), - [sym_if_statement] = STATE(1665), - [sym_case_statement] = STATE(1665), - [sym_function_definition] = STATE(1665), - [sym_compound_statement] = STATE(1665), - [sym_subshell] = STATE(1665), - [sym_pipeline] = STATE(1665), - [sym_list] = STATE(1665), - [sym_negated_command] = STATE(1665), - [sym_test_command] = STATE(1665), - [sym_declaration_command] = STATE(1665), - [sym_unset_command] = STATE(1665), - [sym_command] = STATE(1665), - [sym_command_name] = STATE(218), - [sym_variable_assignment] = STATE(312), - [sym_subscript] = STATE(3173), - [sym_file_redirect] = STATE(782), - [sym_concatenation] = STATE(778), + [sym_redirected_statement] = STATE(1680), + [sym_for_statement] = STATE(1680), + [sym_c_style_for_statement] = STATE(1680), + [sym_while_statement] = STATE(1680), + [sym_if_statement] = STATE(1680), + [sym_case_statement] = STATE(1680), + [sym_function_definition] = STATE(1680), + [sym_compound_statement] = STATE(1680), + [sym_subshell] = STATE(1680), + [sym_pipeline] = STATE(1680), + [sym_list] = STATE(1680), + [sym_negated_command] = STATE(1680), + [sym_test_command] = STATE(1680), + [sym_declaration_command] = STATE(1680), + [sym_unset_command] = STATE(1680), + [sym_command] = STATE(1680), + [sym_command_name] = STATE(224), + [sym_variable_assignment] = STATE(313), + [sym_subscript] = STATE(3176), + [sym_file_redirect] = STATE(763), + [sym_concatenation] = STATE(757), [sym_string] = STATE(515), [sym_simple_expansion] = STATE(515), [sym_string_expansion] = STATE(515), [sym_expansion] = STATE(515), [sym_command_substitution] = STATE(515), [sym_process_substitution] = STATE(515), - [aux_sym__statements_repeat1] = STATE(140), - [aux_sym_command_repeat1] = STATE(782), - [aux_sym__literal_repeat1] = STATE(700), + [aux_sym__statements_repeat1] = STATE(147), + [aux_sym_command_repeat1] = STATE(763), + [aux_sym__literal_repeat1] = STATE(735), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), - [anon_sym_LPAREN_LPAREN] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_declare] = ACTIONS(31), - [anon_sym_typeset] = ACTIONS(31), - [anon_sym_export] = ACTIONS(31), - [anon_sym_readonly] = ACTIONS(31), - [anon_sym_local] = ACTIONS(31), - [anon_sym_unset] = ACTIONS(33), - [anon_sym_unsetenv] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(37), - [sym__special_character] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [sym_ansii_c_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(39), + [sym__special_character] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [sym_ansii_c_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(57), }, [2] = { - [aux_sym__statements2] = STATE(19), - [sym_redirected_statement] = STATE(1702), - [sym_for_statement] = STATE(1702), - [sym_c_style_for_statement] = STATE(1702), - [sym_while_statement] = STATE(1702), - [sym_if_statement] = STATE(1702), - [sym_elif_clause] = STATE(2876), - [sym_else_clause] = STATE(3271), - [sym_case_statement] = STATE(1702), - [sym_function_definition] = STATE(1702), - [sym_compound_statement] = STATE(1702), - [sym_subshell] = STATE(1702), - [sym_pipeline] = STATE(1702), - [sym_list] = STATE(1702), - [sym_negated_command] = STATE(1702), - [sym_test_command] = STATE(1702), - [sym_declaration_command] = STATE(1702), - [sym_unset_command] = STATE(1702), - [sym_command] = STATE(1702), - [sym_command_name] = STATE(202), + [aux_sym__statements2] = STATE(20), + [sym_redirected_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_c_style_for_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_if_statement] = STATE(1689), + [sym_elif_clause] = STATE(2841), + [sym_else_clause] = STATE(3379), + [sym_case_statement] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_compound_statement] = STATE(1689), + [sym_subshell] = STATE(1689), + [sym_pipeline] = STATE(1689), + [sym_list] = STATE(1689), + [sym_negated_command] = STATE(1689), + [sym_test_command] = STATE(1689), + [sym_declaration_command] = STATE(1689), + [sym_unset_command] = STATE(1689), + [sym_command] = STATE(1689), + [sym_command_name] = STATE(227), [sym_variable_assignment] = STATE(452), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_if_statement_repeat1] = STATE(2876), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(67), - [anon_sym_elif] = ACTIONS(69), - [anon_sym_else] = ACTIONS(71), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_if_statement_repeat1] = STATE(2841), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(71), + [anon_sym_elif] = ACTIONS(73), + [anon_sym_else] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), }, [3] = { - [aux_sym__statements2] = STATE(2), - [sym_redirected_statement] = STATE(1702), - [sym_for_statement] = STATE(1702), - [sym_c_style_for_statement] = STATE(1702), - [sym_while_statement] = STATE(1702), - [sym_if_statement] = STATE(1702), + [aux_sym__statements2] = STATE(20), + [sym_redirected_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_c_style_for_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_if_statement] = STATE(1689), [sym_elif_clause] = STATE(2880), - [sym_else_clause] = STATE(3288), - [sym_case_statement] = STATE(1702), - [sym_function_definition] = STATE(1702), - [sym_compound_statement] = STATE(1702), - [sym_subshell] = STATE(1702), - [sym_pipeline] = STATE(1702), - [sym_list] = STATE(1702), - [sym_negated_command] = STATE(1702), - [sym_test_command] = STATE(1702), - [sym_declaration_command] = STATE(1702), - [sym_unset_command] = STATE(1702), - [sym_command] = STATE(1702), - [sym_command_name] = STATE(202), + [sym_else_clause] = STATE(3273), + [sym_case_statement] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_compound_statement] = STATE(1689), + [sym_subshell] = STATE(1689), + [sym_pipeline] = STATE(1689), + [sym_list] = STATE(1689), + [sym_negated_command] = STATE(1689), + [sym_test_command] = STATE(1689), + [sym_declaration_command] = STATE(1689), + [sym_unset_command] = STATE(1689), + [sym_command] = STATE(1689), + [sym_command_name] = STATE(227), [sym_variable_assignment] = STATE(452), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), [aux_sym_if_statement_repeat1] = STATE(2880), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(109), - [anon_sym_elif] = ACTIONS(69), - [anon_sym_else] = ACTIONS(71), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(113), + [anon_sym_elif] = ACTIONS(73), + [anon_sym_else] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), }, [4] = { - [aux_sym__statements2] = STATE(7), - [sym_redirected_statement] = STATE(1702), - [sym_for_statement] = STATE(1702), - [sym_c_style_for_statement] = STATE(1702), - [sym_while_statement] = STATE(1702), - [sym_if_statement] = STATE(1702), - [sym_elif_clause] = STATE(2875), - [sym_else_clause] = STATE(3310), - [sym_case_statement] = STATE(1702), - [sym_function_definition] = STATE(1702), - [sym_compound_statement] = STATE(1702), - [sym_subshell] = STATE(1702), - [sym_pipeline] = STATE(1702), - [sym_list] = STATE(1702), - [sym_negated_command] = STATE(1702), - [sym_test_command] = STATE(1702), - [sym_declaration_command] = STATE(1702), - [sym_unset_command] = STATE(1702), - [sym_command] = STATE(1702), - [sym_command_name] = STATE(202), + [aux_sym__statements2] = STATE(3), + [sym_redirected_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_c_style_for_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_if_statement] = STATE(1689), + [sym_elif_clause] = STATE(2843), + [sym_else_clause] = STATE(3307), + [sym_case_statement] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_compound_statement] = STATE(1689), + [sym_subshell] = STATE(1689), + [sym_pipeline] = STATE(1689), + [sym_list] = STATE(1689), + [sym_negated_command] = STATE(1689), + [sym_test_command] = STATE(1689), + [sym_declaration_command] = STATE(1689), + [sym_unset_command] = STATE(1689), + [sym_command] = STATE(1689), + [sym_command_name] = STATE(227), [sym_variable_assignment] = STATE(452), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_if_statement_repeat1] = STATE(2875), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(111), - [anon_sym_elif] = ACTIONS(69), - [anon_sym_else] = ACTIONS(71), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_if_statement_repeat1] = STATE(2843), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(115), + [anon_sym_elif] = ACTIONS(73), + [anon_sym_else] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), }, [5] = { - [aux_sym__statements2] = STATE(19), - [sym_redirected_statement] = STATE(1702), - [sym_for_statement] = STATE(1702), - [sym_c_style_for_statement] = STATE(1702), - [sym_while_statement] = STATE(1702), - [sym_if_statement] = STATE(1702), + [aux_sym__statements2] = STATE(2), + [sym_redirected_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_c_style_for_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_if_statement] = STATE(1689), [sym_elif_clause] = STATE(2861), - [sym_else_clause] = STATE(3463), - [sym_case_statement] = STATE(1702), - [sym_function_definition] = STATE(1702), - [sym_compound_statement] = STATE(1702), - [sym_subshell] = STATE(1702), - [sym_pipeline] = STATE(1702), - [sym_list] = STATE(1702), - [sym_negated_command] = STATE(1702), - [sym_test_command] = STATE(1702), - [sym_declaration_command] = STATE(1702), - [sym_unset_command] = STATE(1702), - [sym_command] = STATE(1702), - [sym_command_name] = STATE(202), + [sym_else_clause] = STATE(3300), + [sym_case_statement] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_compound_statement] = STATE(1689), + [sym_subshell] = STATE(1689), + [sym_pipeline] = STATE(1689), + [sym_list] = STATE(1689), + [sym_negated_command] = STATE(1689), + [sym_test_command] = STATE(1689), + [sym_declaration_command] = STATE(1689), + [sym_unset_command] = STATE(1689), + [sym_command] = STATE(1689), + [sym_command_name] = STATE(227), [sym_variable_assignment] = STATE(452), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), [aux_sym_if_statement_repeat1] = STATE(2861), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(113), - [anon_sym_elif] = ACTIONS(69), - [anon_sym_else] = ACTIONS(71), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(117), + [anon_sym_elif] = ACTIONS(73), + [anon_sym_else] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), }, [6] = { - [aux_sym__statements2] = STATE(5), - [sym_redirected_statement] = STATE(1702), - [sym_for_statement] = STATE(1702), - [sym_c_style_for_statement] = STATE(1702), - [sym_while_statement] = STATE(1702), - [sym_if_statement] = STATE(1702), - [sym_elif_clause] = STATE(2873), - [sym_else_clause] = STATE(3397), - [sym_case_statement] = STATE(1702), - [sym_function_definition] = STATE(1702), - [sym_compound_statement] = STATE(1702), - [sym_subshell] = STATE(1702), - [sym_pipeline] = STATE(1702), - [sym_list] = STATE(1702), - [sym_negated_command] = STATE(1702), - [sym_test_command] = STATE(1702), - [sym_declaration_command] = STATE(1702), - [sym_unset_command] = STATE(1702), - [sym_command] = STATE(1702), - [sym_command_name] = STATE(202), + [aux_sym__statements2] = STATE(20), + [sym_redirected_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_c_style_for_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_if_statement] = STATE(1689), + [sym_elif_clause] = STATE(2888), + [sym_else_clause] = STATE(3353), + [sym_case_statement] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_compound_statement] = STATE(1689), + [sym_subshell] = STATE(1689), + [sym_pipeline] = STATE(1689), + [sym_list] = STATE(1689), + [sym_negated_command] = STATE(1689), + [sym_test_command] = STATE(1689), + [sym_declaration_command] = STATE(1689), + [sym_unset_command] = STATE(1689), + [sym_command] = STATE(1689), + [sym_command_name] = STATE(227), [sym_variable_assignment] = STATE(452), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_if_statement_repeat1] = STATE(2873), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(115), - [anon_sym_elif] = ACTIONS(69), - [anon_sym_else] = ACTIONS(71), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_if_statement_repeat1] = STATE(2888), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(119), + [anon_sym_elif] = ACTIONS(73), + [anon_sym_else] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), }, [7] = { - [aux_sym__statements2] = STATE(19), - [sym_redirected_statement] = STATE(1702), - [sym_for_statement] = STATE(1702), - [sym_c_style_for_statement] = STATE(1702), - [sym_while_statement] = STATE(1702), - [sym_if_statement] = STATE(1702), - [sym_elif_clause] = STATE(2867), - [sym_else_clause] = STATE(3274), - [sym_case_statement] = STATE(1702), - [sym_function_definition] = STATE(1702), - [sym_compound_statement] = STATE(1702), - [sym_subshell] = STATE(1702), - [sym_pipeline] = STATE(1702), - [sym_list] = STATE(1702), - [sym_negated_command] = STATE(1702), - [sym_test_command] = STATE(1702), - [sym_declaration_command] = STATE(1702), - [sym_unset_command] = STATE(1702), - [sym_command] = STATE(1702), - [sym_command_name] = STATE(202), + [aux_sym__statements2] = STATE(6), + [sym_redirected_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_c_style_for_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_if_statement] = STATE(1689), + [sym_elif_clause] = STATE(2886), + [sym_else_clause] = STATE(3403), + [sym_case_statement] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_compound_statement] = STATE(1689), + [sym_subshell] = STATE(1689), + [sym_pipeline] = STATE(1689), + [sym_list] = STATE(1689), + [sym_negated_command] = STATE(1689), + [sym_test_command] = STATE(1689), + [sym_declaration_command] = STATE(1689), + [sym_unset_command] = STATE(1689), + [sym_command] = STATE(1689), + [sym_command_name] = STATE(227), [sym_variable_assignment] = STATE(452), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_if_statement_repeat1] = STATE(2867), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(117), - [anon_sym_elif] = ACTIONS(69), - [anon_sym_else] = ACTIONS(71), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_if_statement_repeat1] = STATE(2886), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(121), + [anon_sym_elif] = ACTIONS(73), + [anon_sym_else] = ACTIONS(75), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), }, [8] = { - [sym__statements] = STATE(2980), - [sym_redirected_statement] = STATE(1649), - [sym_for_statement] = STATE(1649), - [sym_c_style_for_statement] = STATE(1649), - [sym_while_statement] = STATE(1649), - [sym_if_statement] = STATE(1649), - [sym_case_statement] = STATE(1649), - [sym_function_definition] = STATE(1649), - [sym_compound_statement] = STATE(1649), - [sym_subshell] = STATE(1649), - [sym_pipeline] = STATE(1649), - [sym_list] = STATE(1649), - [sym_negated_command] = STATE(1649), - [sym_test_command] = STATE(1649), - [sym_declaration_command] = STATE(1649), - [sym_unset_command] = STATE(1649), - [sym_command] = STATE(1649), - [sym_command_name] = STATE(170), + [sym__statements] = STATE(2965), + [sym_redirected_statement] = STATE(1652), + [sym_for_statement] = STATE(1652), + [sym_c_style_for_statement] = STATE(1652), + [sym_while_statement] = STATE(1652), + [sym_if_statement] = STATE(1652), + [sym_case_statement] = STATE(1652), + [sym_function_definition] = STATE(1652), + [sym_compound_statement] = STATE(1652), + [sym_subshell] = STATE(1652), + [sym_pipeline] = STATE(1652), + [sym_list] = STATE(1652), + [sym_negated_command] = STATE(1652), + [sym_test_command] = STATE(1652), + [sym_declaration_command] = STATE(1652), + [sym_unset_command] = STATE(1652), + [sym_command] = STATE(1652), + [sym_command_name] = STATE(173), [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(3250), + [sym_subscript] = STATE(3249), [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(534), - [sym_string] = STATE(281), - [sym_simple_expansion] = STATE(281), - [sym_string_expansion] = STATE(281), - [sym_expansion] = STATE(281), - [sym_command_substitution] = STATE(281), - [sym_process_substitution] = STATE(281), - [aux_sym__statements_repeat1] = STATE(147), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym__statements_repeat1] = STATE(143), [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(358), - [sym_word] = ACTIONS(119), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_esac] = ACTIONS(131), - [anon_sym_SEMI_SEMI] = ACTIONS(133), - [anon_sym_SEMI_AMP] = ACTIONS(135), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(135), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(149), - [anon_sym_typeset] = ACTIONS(149), - [anon_sym_export] = ACTIONS(149), - [anon_sym_readonly] = ACTIONS(149), - [anon_sym_local] = ACTIONS(149), - [anon_sym_unset] = ACTIONS(151), - [anon_sym_unsetenv] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(153), - [sym__special_character] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_raw_string] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(163), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LT_LPAREN] = ACTIONS(167), - [anon_sym_GT_LPAREN] = ACTIONS(167), + [aux_sym__literal_repeat1] = STATE(349), + [sym_word] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_esac] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(139), + [anon_sym_SEMI_AMP] = ACTIONS(141), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_typeset] = ACTIONS(157), + [anon_sym_export] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(157), + [anon_sym_local] = ACTIONS(157), + [anon_sym_unset] = ACTIONS(159), + [anon_sym_unsetenv] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(161), + [sym__special_character] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [sym_raw_string] = ACTIONS(167), + [sym_ansii_c_string] = ACTIONS(167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(175), + [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(169), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(177), }, [9] = { - [sym__statements] = STATE(2969), - [sym_redirected_statement] = STATE(1649), - [sym_for_statement] = STATE(1649), - [sym_c_style_for_statement] = STATE(1649), - [sym_while_statement] = STATE(1649), - [sym_if_statement] = STATE(1649), - [sym_case_statement] = STATE(1649), - [sym_function_definition] = STATE(1649), - [sym_compound_statement] = STATE(1649), - [sym_subshell] = STATE(1649), - [sym_pipeline] = STATE(1649), - [sym_list] = STATE(1649), - [sym_negated_command] = STATE(1649), - [sym_test_command] = STATE(1649), - [sym_declaration_command] = STATE(1649), - [sym_unset_command] = STATE(1649), - [sym_command] = STATE(1649), - [sym_command_name] = STATE(170), + [sym__statements] = STATE(2958), + [sym_redirected_statement] = STATE(1652), + [sym_for_statement] = STATE(1652), + [sym_c_style_for_statement] = STATE(1652), + [sym_while_statement] = STATE(1652), + [sym_if_statement] = STATE(1652), + [sym_case_statement] = STATE(1652), + [sym_function_definition] = STATE(1652), + [sym_compound_statement] = STATE(1652), + [sym_subshell] = STATE(1652), + [sym_pipeline] = STATE(1652), + [sym_list] = STATE(1652), + [sym_negated_command] = STATE(1652), + [sym_test_command] = STATE(1652), + [sym_declaration_command] = STATE(1652), + [sym_unset_command] = STATE(1652), + [sym_command] = STATE(1652), + [sym_command_name] = STATE(173), [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(3250), + [sym_subscript] = STATE(3249), [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(534), - [sym_string] = STATE(281), - [sym_simple_expansion] = STATE(281), - [sym_string_expansion] = STATE(281), - [sym_expansion] = STATE(281), - [sym_command_substitution] = STATE(281), - [sym_process_substitution] = STATE(281), - [aux_sym__statements_repeat1] = STATE(147), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym__statements_repeat1] = STATE(143), [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(358), - [sym_word] = ACTIONS(119), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_esac] = ACTIONS(171), - [anon_sym_SEMI_SEMI] = ACTIONS(173), - [anon_sym_SEMI_AMP] = ACTIONS(175), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(175), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(149), - [anon_sym_typeset] = ACTIONS(149), - [anon_sym_export] = ACTIONS(149), - [anon_sym_readonly] = ACTIONS(149), - [anon_sym_local] = ACTIONS(149), - [anon_sym_unset] = ACTIONS(151), - [anon_sym_unsetenv] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(153), - [sym__special_character] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_raw_string] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(163), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LT_LPAREN] = ACTIONS(167), - [anon_sym_GT_LPAREN] = ACTIONS(167), + [aux_sym__literal_repeat1] = STATE(349), + [sym_word] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_esac] = ACTIONS(179), + [anon_sym_SEMI_SEMI] = ACTIONS(181), + [anon_sym_SEMI_AMP] = ACTIONS(183), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(185), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_typeset] = ACTIONS(157), + [anon_sym_export] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(157), + [anon_sym_local] = ACTIONS(157), + [anon_sym_unset] = ACTIONS(159), + [anon_sym_unsetenv] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(161), + [sym__special_character] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [sym_raw_string] = ACTIONS(167), + [sym_ansii_c_string] = ACTIONS(167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(175), + [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(169), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(177), }, [10] = { - [sym__statements] = STATE(2959), - [sym_redirected_statement] = STATE(1649), - [sym_for_statement] = STATE(1649), - [sym_c_style_for_statement] = STATE(1649), - [sym_while_statement] = STATE(1649), - [sym_if_statement] = STATE(1649), - [sym_case_statement] = STATE(1649), - [sym_function_definition] = STATE(1649), - [sym_compound_statement] = STATE(1649), - [sym_subshell] = STATE(1649), - [sym_pipeline] = STATE(1649), - [sym_list] = STATE(1649), - [sym_negated_command] = STATE(1649), - [sym_test_command] = STATE(1649), - [sym_declaration_command] = STATE(1649), - [sym_unset_command] = STATE(1649), - [sym_command] = STATE(1649), - [sym_command_name] = STATE(170), + [sym__statements] = STATE(2954), + [sym_redirected_statement] = STATE(1652), + [sym_for_statement] = STATE(1652), + [sym_c_style_for_statement] = STATE(1652), + [sym_while_statement] = STATE(1652), + [sym_if_statement] = STATE(1652), + [sym_case_statement] = STATE(1652), + [sym_function_definition] = STATE(1652), + [sym_compound_statement] = STATE(1652), + [sym_subshell] = STATE(1652), + [sym_pipeline] = STATE(1652), + [sym_list] = STATE(1652), + [sym_negated_command] = STATE(1652), + [sym_test_command] = STATE(1652), + [sym_declaration_command] = STATE(1652), + [sym_unset_command] = STATE(1652), + [sym_command] = STATE(1652), + [sym_command_name] = STATE(173), [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(3250), + [sym_subscript] = STATE(3249), [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(534), - [sym_string] = STATE(281), - [sym_simple_expansion] = STATE(281), - [sym_string_expansion] = STATE(281), - [sym_expansion] = STATE(281), - [sym_command_substitution] = STATE(281), - [sym_process_substitution] = STATE(281), - [aux_sym__statements_repeat1] = STATE(147), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym__statements_repeat1] = STATE(143), [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(358), - [sym_word] = ACTIONS(119), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_esac] = ACTIONS(177), - [anon_sym_SEMI_SEMI] = ACTIONS(179), - [anon_sym_SEMI_AMP] = ACTIONS(181), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(183), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(149), - [anon_sym_typeset] = ACTIONS(149), - [anon_sym_export] = ACTIONS(149), - [anon_sym_readonly] = ACTIONS(149), - [anon_sym_local] = ACTIONS(149), - [anon_sym_unset] = ACTIONS(151), - [anon_sym_unsetenv] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(153), - [sym__special_character] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_raw_string] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(163), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LT_LPAREN] = ACTIONS(167), - [anon_sym_GT_LPAREN] = ACTIONS(167), + [aux_sym__literal_repeat1] = STATE(349), + [sym_word] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_esac] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_SEMI_AMP] = ACTIONS(189), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(191), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_typeset] = ACTIONS(157), + [anon_sym_export] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(157), + [anon_sym_local] = ACTIONS(157), + [anon_sym_unset] = ACTIONS(159), + [anon_sym_unsetenv] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(161), + [sym__special_character] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [sym_raw_string] = ACTIONS(167), + [sym_ansii_c_string] = ACTIONS(167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(175), + [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(169), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(177), }, [11] = { - [sym__statements] = STATE(2960), - [sym_redirected_statement] = STATE(1649), - [sym_for_statement] = STATE(1649), - [sym_c_style_for_statement] = STATE(1649), - [sym_while_statement] = STATE(1649), - [sym_if_statement] = STATE(1649), - [sym_case_statement] = STATE(1649), - [sym_function_definition] = STATE(1649), - [sym_compound_statement] = STATE(1649), - [sym_subshell] = STATE(1649), - [sym_pipeline] = STATE(1649), - [sym_list] = STATE(1649), - [sym_negated_command] = STATE(1649), - [sym_test_command] = STATE(1649), - [sym_declaration_command] = STATE(1649), - [sym_unset_command] = STATE(1649), - [sym_command] = STATE(1649), - [sym_command_name] = STATE(170), + [sym__statements] = STATE(2969), + [sym_redirected_statement] = STATE(1652), + [sym_for_statement] = STATE(1652), + [sym_c_style_for_statement] = STATE(1652), + [sym_while_statement] = STATE(1652), + [sym_if_statement] = STATE(1652), + [sym_case_statement] = STATE(1652), + [sym_function_definition] = STATE(1652), + [sym_compound_statement] = STATE(1652), + [sym_subshell] = STATE(1652), + [sym_pipeline] = STATE(1652), + [sym_list] = STATE(1652), + [sym_negated_command] = STATE(1652), + [sym_test_command] = STATE(1652), + [sym_declaration_command] = STATE(1652), + [sym_unset_command] = STATE(1652), + [sym_command] = STATE(1652), + [sym_command_name] = STATE(173), [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(3250), + [sym_subscript] = STATE(3249), [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(534), - [sym_string] = STATE(281), - [sym_simple_expansion] = STATE(281), - [sym_string_expansion] = STATE(281), - [sym_expansion] = STATE(281), - [sym_command_substitution] = STATE(281), - [sym_process_substitution] = STATE(281), - [aux_sym__statements_repeat1] = STATE(147), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym__statements_repeat1] = STATE(143), [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(358), - [sym_word] = ACTIONS(119), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_esac] = ACTIONS(177), - [anon_sym_SEMI_SEMI] = ACTIONS(185), - [anon_sym_SEMI_AMP] = ACTIONS(187), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(189), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(149), - [anon_sym_typeset] = ACTIONS(149), - [anon_sym_export] = ACTIONS(149), - [anon_sym_readonly] = ACTIONS(149), - [anon_sym_local] = ACTIONS(149), - [anon_sym_unset] = ACTIONS(151), - [anon_sym_unsetenv] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(153), - [sym__special_character] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_raw_string] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(163), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LT_LPAREN] = ACTIONS(167), - [anon_sym_GT_LPAREN] = ACTIONS(167), + [aux_sym__literal_repeat1] = STATE(349), + [sym_word] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_esac] = ACTIONS(193), + [anon_sym_SEMI_SEMI] = ACTIONS(195), + [anon_sym_SEMI_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(197), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_typeset] = ACTIONS(157), + [anon_sym_export] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(157), + [anon_sym_local] = ACTIONS(157), + [anon_sym_unset] = ACTIONS(159), + [anon_sym_unsetenv] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(161), + [sym__special_character] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [sym_raw_string] = ACTIONS(167), + [sym_ansii_c_string] = ACTIONS(167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(175), + [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(169), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(177), }, [12] = { - [sym__statements] = STATE(2958), - [sym_redirected_statement] = STATE(1649), - [sym_for_statement] = STATE(1649), - [sym_c_style_for_statement] = STATE(1649), - [sym_while_statement] = STATE(1649), - [sym_if_statement] = STATE(1649), - [sym_case_statement] = STATE(1649), - [sym_function_definition] = STATE(1649), - [sym_compound_statement] = STATE(1649), - [sym_subshell] = STATE(1649), - [sym_pipeline] = STATE(1649), - [sym_list] = STATE(1649), - [sym_negated_command] = STATE(1649), - [sym_test_command] = STATE(1649), - [sym_declaration_command] = STATE(1649), - [sym_unset_command] = STATE(1649), - [sym_command] = STATE(1649), - [sym_command_name] = STATE(170), + [sym__statements] = STATE(2974), + [sym_redirected_statement] = STATE(1652), + [sym_for_statement] = STATE(1652), + [sym_c_style_for_statement] = STATE(1652), + [sym_while_statement] = STATE(1652), + [sym_if_statement] = STATE(1652), + [sym_case_statement] = STATE(1652), + [sym_function_definition] = STATE(1652), + [sym_compound_statement] = STATE(1652), + [sym_subshell] = STATE(1652), + [sym_pipeline] = STATE(1652), + [sym_list] = STATE(1652), + [sym_negated_command] = STATE(1652), + [sym_test_command] = STATE(1652), + [sym_declaration_command] = STATE(1652), + [sym_unset_command] = STATE(1652), + [sym_command] = STATE(1652), + [sym_command_name] = STATE(173), [sym_variable_assignment] = STATE(275), - [sym_subscript] = STATE(3250), + [sym_subscript] = STATE(3249), [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(534), - [sym_string] = STATE(281), - [sym_simple_expansion] = STATE(281), - [sym_string_expansion] = STATE(281), - [sym_expansion] = STATE(281), - [sym_command_substitution] = STATE(281), - [sym_process_substitution] = STATE(281), - [aux_sym__statements_repeat1] = STATE(147), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym__statements_repeat1] = STATE(143), [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(358), - [sym_word] = ACTIONS(119), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_esac] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(193), - [anon_sym_SEMI_AMP] = ACTIONS(195), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(197), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(149), - [anon_sym_typeset] = ACTIONS(149), - [anon_sym_export] = ACTIONS(149), - [anon_sym_readonly] = ACTIONS(149), - [anon_sym_local] = ACTIONS(149), - [anon_sym_unset] = ACTIONS(151), - [anon_sym_unsetenv] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(153), - [sym__special_character] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_raw_string] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(163), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LT_LPAREN] = ACTIONS(167), - [anon_sym_GT_LPAREN] = ACTIONS(167), + [aux_sym__literal_repeat1] = STATE(349), + [sym_word] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_esac] = ACTIONS(199), + [anon_sym_SEMI_SEMI] = ACTIONS(201), + [anon_sym_SEMI_AMP] = ACTIONS(203), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(203), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_typeset] = ACTIONS(157), + [anon_sym_export] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(157), + [anon_sym_local] = ACTIONS(157), + [anon_sym_unset] = ACTIONS(159), + [anon_sym_unsetenv] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(161), + [sym__special_character] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [sym_raw_string] = ACTIONS(167), + [sym_ansii_c_string] = ACTIONS(167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(175), + [anon_sym_GT_LPAREN] = ACTIONS(175), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(169), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(177), }, [13] = { - [sym__statements] = STATE(3083), - [sym_redirected_statement] = STATE(1658), - [sym_for_statement] = STATE(1658), - [sym_c_style_for_statement] = STATE(1658), - [sym_while_statement] = STATE(1658), - [sym_if_statement] = STATE(1658), - [sym_case_statement] = STATE(1658), - [sym_function_definition] = STATE(1658), - [sym_compound_statement] = STATE(1658), - [sym_subshell] = STATE(1658), - [sym_pipeline] = STATE(1658), - [sym_list] = STATE(1658), - [sym_negated_command] = STATE(1658), - [sym_test_command] = STATE(1658), - [sym_declaration_command] = STATE(1658), - [sym_unset_command] = STATE(1658), - [sym_command] = STATE(1658), - [sym_command_name] = STATE(194), - [sym_variable_assignment] = STATE(279), - [sym_subscript] = STATE(3237), - [sym_file_redirect] = STATE(784), - [sym_concatenation] = STATE(699), - [sym_string] = STATE(328), - [sym_simple_expansion] = STATE(328), - [sym_string_expansion] = STATE(328), - [sym_expansion] = STATE(328), - [sym_command_substitution] = STATE(328), - [sym_process_substitution] = STATE(328), - [aux_sym__statements_repeat1] = STATE(137), - [aux_sym_command_repeat1] = STATE(784), - [aux_sym__literal_repeat1] = STATE(469), - [sym_word] = ACTIONS(199), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_SEMI_SEMI] = ACTIONS(201), - [anon_sym_SEMI_AMP] = ACTIONS(181), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(183), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(205), - [anon_sym_typeset] = ACTIONS(205), - [anon_sym_export] = ACTIONS(205), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_local] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(207), - [anon_sym_unsetenv] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym__special_character] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym_raw_string] = ACTIONS(215), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(225), - }, - [14] = { - [sym__statements] = STATE(3072), - [sym_redirected_statement] = STATE(1658), - [sym_for_statement] = STATE(1658), - [sym_c_style_for_statement] = STATE(1658), - [sym_while_statement] = STATE(1658), - [sym_if_statement] = STATE(1658), - [sym_case_statement] = STATE(1658), - [sym_function_definition] = STATE(1658), - [sym_compound_statement] = STATE(1658), - [sym_subshell] = STATE(1658), - [sym_pipeline] = STATE(1658), - [sym_list] = STATE(1658), - [sym_negated_command] = STATE(1658), - [sym_test_command] = STATE(1658), - [sym_declaration_command] = STATE(1658), - [sym_unset_command] = STATE(1658), - [sym_command] = STATE(1658), - [sym_command_name] = STATE(194), - [sym_variable_assignment] = STATE(279), - [sym_subscript] = STATE(3237), - [sym_file_redirect] = STATE(784), - [sym_concatenation] = STATE(699), - [sym_string] = STATE(328), - [sym_simple_expansion] = STATE(328), - [sym_string_expansion] = STATE(328), - [sym_expansion] = STATE(328), - [sym_command_substitution] = STATE(328), - [sym_process_substitution] = STATE(328), - [aux_sym__statements_repeat1] = STATE(137), - [aux_sym_command_repeat1] = STATE(784), - [aux_sym__literal_repeat1] = STATE(469), - [sym_word] = ACTIONS(199), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_SEMI_SEMI] = ACTIONS(227), - [anon_sym_SEMI_AMP] = ACTIONS(187), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(189), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(205), - [anon_sym_typeset] = ACTIONS(205), - [anon_sym_export] = ACTIONS(205), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_local] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(207), - [anon_sym_unsetenv] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym__special_character] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym_raw_string] = ACTIONS(215), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(225), - }, - [15] = { - [sym__statements] = STATE(3055), - [sym_redirected_statement] = STATE(1658), - [sym_for_statement] = STATE(1658), - [sym_c_style_for_statement] = STATE(1658), - [sym_while_statement] = STATE(1658), - [sym_if_statement] = STATE(1658), - [sym_case_statement] = STATE(1658), - [sym_function_definition] = STATE(1658), - [sym_compound_statement] = STATE(1658), - [sym_subshell] = STATE(1658), - [sym_pipeline] = STATE(1658), - [sym_list] = STATE(1658), - [sym_negated_command] = STATE(1658), - [sym_test_command] = STATE(1658), - [sym_declaration_command] = STATE(1658), - [sym_unset_command] = STATE(1658), - [sym_command] = STATE(1658), - [sym_command_name] = STATE(194), - [sym_variable_assignment] = STATE(279), - [sym_subscript] = STATE(3237), - [sym_file_redirect] = STATE(784), - [sym_concatenation] = STATE(699), - [sym_string] = STATE(328), - [sym_simple_expansion] = STATE(328), - [sym_string_expansion] = STATE(328), - [sym_expansion] = STATE(328), - [sym_command_substitution] = STATE(328), - [sym_process_substitution] = STATE(328), - [aux_sym__statements_repeat1] = STATE(137), - [aux_sym_command_repeat1] = STATE(784), - [aux_sym__literal_repeat1] = STATE(469), - [sym_word] = ACTIONS(199), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_SEMI_SEMI] = ACTIONS(229), - [anon_sym_SEMI_AMP] = ACTIONS(195), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(197), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(205), - [anon_sym_typeset] = ACTIONS(205), - [anon_sym_export] = ACTIONS(205), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_local] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(207), - [anon_sym_unsetenv] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym__special_character] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym_raw_string] = ACTIONS(215), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(225), - }, - [16] = { - [sym__statements] = STATE(3098), - [sym_redirected_statement] = STATE(1658), - [sym_for_statement] = STATE(1658), - [sym_c_style_for_statement] = STATE(1658), - [sym_while_statement] = STATE(1658), - [sym_if_statement] = STATE(1658), - [sym_case_statement] = STATE(1658), - [sym_function_definition] = STATE(1658), - [sym_compound_statement] = STATE(1658), - [sym_subshell] = STATE(1658), - [sym_pipeline] = STATE(1658), - [sym_list] = STATE(1658), - [sym_negated_command] = STATE(1658), - [sym_test_command] = STATE(1658), - [sym_declaration_command] = STATE(1658), - [sym_unset_command] = STATE(1658), - [sym_command] = STATE(1658), - [sym_command_name] = STATE(194), - [sym_variable_assignment] = STATE(279), - [sym_subscript] = STATE(3237), - [sym_file_redirect] = STATE(784), - [sym_concatenation] = STATE(699), - [sym_string] = STATE(328), - [sym_simple_expansion] = STATE(328), - [sym_string_expansion] = STATE(328), - [sym_expansion] = STATE(328), - [sym_command_substitution] = STATE(328), - [sym_process_substitution] = STATE(328), - [aux_sym__statements_repeat1] = STATE(137), - [aux_sym_command_repeat1] = STATE(784), - [aux_sym__literal_repeat1] = STATE(469), - [sym_word] = ACTIONS(199), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_SEMI_SEMI] = ACTIONS(231), - [anon_sym_SEMI_AMP] = ACTIONS(175), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(175), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(205), - [anon_sym_typeset] = ACTIONS(205), - [anon_sym_export] = ACTIONS(205), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_local] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(207), - [anon_sym_unsetenv] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym__special_character] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym_raw_string] = ACTIONS(215), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(225), - }, - [17] = { [sym__statements] = STATE(3105), - [sym_redirected_statement] = STATE(1658), - [sym_for_statement] = STATE(1658), - [sym_c_style_for_statement] = STATE(1658), - [sym_while_statement] = STATE(1658), - [sym_if_statement] = STATE(1658), - [sym_case_statement] = STATE(1658), - [sym_function_definition] = STATE(1658), - [sym_compound_statement] = STATE(1658), - [sym_subshell] = STATE(1658), - [sym_pipeline] = STATE(1658), - [sym_list] = STATE(1658), - [sym_negated_command] = STATE(1658), - [sym_test_command] = STATE(1658), - [sym_declaration_command] = STATE(1658), - [sym_unset_command] = STATE(1658), - [sym_command] = STATE(1658), - [sym_command_name] = STATE(194), - [sym_variable_assignment] = STATE(279), - [sym_subscript] = STATE(3237), - [sym_file_redirect] = STATE(784), - [sym_concatenation] = STATE(699), - [sym_string] = STATE(328), - [sym_simple_expansion] = STATE(328), - [sym_string_expansion] = STATE(328), - [sym_expansion] = STATE(328), - [sym_command_substitution] = STATE(328), - [sym_process_substitution] = STATE(328), - [aux_sym__statements_repeat1] = STATE(137), - [aux_sym_command_repeat1] = STATE(784), - [aux_sym__literal_repeat1] = STATE(469), - [sym_word] = ACTIONS(199), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_SEMI_SEMI] = ACTIONS(233), - [anon_sym_SEMI_AMP] = ACTIONS(135), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(135), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(205), - [anon_sym_typeset] = ACTIONS(205), - [anon_sym_export] = ACTIONS(205), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_local] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(207), - [anon_sym_unsetenv] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym__special_character] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym_raw_string] = ACTIONS(215), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(225), - }, - [18] = { - [aux_sym__statements2] = STATE(20), - [sym_redirected_statement] = STATE(1702), - [sym_for_statement] = STATE(1702), - [sym_c_style_for_statement] = STATE(1702), - [sym_while_statement] = STATE(1702), - [sym_if_statement] = STATE(1702), - [sym_case_statement] = STATE(1702), - [sym_function_definition] = STATE(1702), - [sym_compound_statement] = STATE(1702), - [sym_subshell] = STATE(1702), - [sym_pipeline] = STATE(1702), - [sym_list] = STATE(1702), - [sym_negated_command] = STATE(1702), - [sym_test_command] = STATE(1702), - [sym_declaration_command] = STATE(1702), - [sym_unset_command] = STATE(1702), - [sym_command] = STATE(1702), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(452), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(235), - [anon_sym_elif] = ACTIONS(235), - [anon_sym_else] = ACTIONS(235), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [19] = { - [aux_sym__statements2] = STATE(19), - [sym_redirected_statement] = STATE(1702), - [sym_for_statement] = STATE(1702), - [sym_c_style_for_statement] = STATE(1702), - [sym_while_statement] = STATE(1702), - [sym_if_statement] = STATE(1702), - [sym_case_statement] = STATE(1702), - [sym_function_definition] = STATE(1702), - [sym_compound_statement] = STATE(1702), - [sym_subshell] = STATE(1702), - [sym_pipeline] = STATE(1702), - [sym_list] = STATE(1702), - [sym_negated_command] = STATE(1702), - [sym_test_command] = STATE(1702), - [sym_declaration_command] = STATE(1702), - [sym_unset_command] = STATE(1702), - [sym_command] = STATE(1702), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(452), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(237), - [anon_sym_for] = ACTIONS(240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(243), - [anon_sym_while] = ACTIONS(246), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fi] = ACTIONS(252), - [anon_sym_elif] = ACTIONS(252), - [anon_sym_else] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_function] = ACTIONS(257), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(272), - [anon_sym_declare] = ACTIONS(275), - [anon_sym_typeset] = ACTIONS(275), - [anon_sym_export] = ACTIONS(275), - [anon_sym_readonly] = ACTIONS(275), - [anon_sym_local] = ACTIONS(275), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(281), - [anon_sym_GT_GT] = ACTIONS(281), - [anon_sym_AMP_GT] = ACTIONS(281), - [anon_sym_AMP_GT_GT] = ACTIONS(281), - [anon_sym_LT_AMP] = ACTIONS(281), - [anon_sym_GT_AMP] = ACTIONS(281), - [anon_sym_GT_PIPE] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym__special_character] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(290), - [sym_raw_string] = ACTIONS(293), - [sym_ansii_c_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_LT_LPAREN] = ACTIONS(305), - [anon_sym_GT_LPAREN] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(308), - [sym_variable_name] = ACTIONS(311), - }, - [20] = { - [aux_sym__statements2] = STATE(19), - [sym_redirected_statement] = STATE(1702), - [sym_for_statement] = STATE(1702), - [sym_c_style_for_statement] = STATE(1702), - [sym_while_statement] = STATE(1702), - [sym_if_statement] = STATE(1702), - [sym_case_statement] = STATE(1702), - [sym_function_definition] = STATE(1702), - [sym_compound_statement] = STATE(1702), - [sym_subshell] = STATE(1702), - [sym_pipeline] = STATE(1702), - [sym_list] = STATE(1702), - [sym_negated_command] = STATE(1702), - [sym_test_command] = STATE(1702), - [sym_declaration_command] = STATE(1702), - [sym_unset_command] = STATE(1702), - [sym_command] = STATE(1702), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(452), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(314), - [anon_sym_elif] = ACTIONS(314), - [anon_sym_else] = ACTIONS(314), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [21] = { - [sym__statements] = STATE(3299), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_RPAREN] = ACTIONS(316), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [22] = { - [sym__statements] = STATE(3380), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_RPAREN] = ACTIONS(318), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [23] = { - [sym__statements] = STATE(3348), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_RPAREN] = ACTIONS(320), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [24] = { - [aux_sym__statements2] = STATE(24), - [sym_redirected_statement] = STATE(1730), - [sym_for_statement] = STATE(1730), - [sym_c_style_for_statement] = STATE(1730), - [sym_while_statement] = STATE(1730), - [sym_if_statement] = STATE(1730), - [sym_case_statement] = STATE(1730), - [sym_function_definition] = STATE(1730), - [sym_compound_statement] = STATE(1730), - [sym_subshell] = STATE(1730), - [sym_pipeline] = STATE(1730), - [sym_list] = STATE(1730), - [sym_negated_command] = STATE(1730), - [sym_test_command] = STATE(1730), - [sym_declaration_command] = STATE(1730), - [sym_unset_command] = STATE(1730), - [sym_command] = STATE(1730), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(457), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(237), - [anon_sym_for] = ACTIONS(240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(243), - [anon_sym_while] = ACTIONS(246), - [anon_sym_if] = ACTIONS(249), - [anon_sym_fi] = ACTIONS(252), - [anon_sym_case] = ACTIONS(254), - [anon_sym_function] = ACTIONS(257), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(272), - [anon_sym_declare] = ACTIONS(275), - [anon_sym_typeset] = ACTIONS(275), - [anon_sym_export] = ACTIONS(275), - [anon_sym_readonly] = ACTIONS(275), - [anon_sym_local] = ACTIONS(275), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(281), - [anon_sym_GT_GT] = ACTIONS(281), - [anon_sym_AMP_GT] = ACTIONS(281), - [anon_sym_AMP_GT_GT] = ACTIONS(281), - [anon_sym_LT_AMP] = ACTIONS(281), - [anon_sym_GT_AMP] = ACTIONS(281), - [anon_sym_GT_PIPE] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym__special_character] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(290), - [sym_raw_string] = ACTIONS(293), - [sym_ansii_c_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_LT_LPAREN] = ACTIONS(305), - [anon_sym_GT_LPAREN] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(308), - [sym_variable_name] = ACTIONS(311), - }, - [25] = { - [sym__statements] = STATE(3317), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [26] = { - [aux_sym__statements2] = STATE(50), - [sym_redirected_statement] = STATE(1748), - [sym_for_statement] = STATE(1748), - [sym_c_style_for_statement] = STATE(1748), - [sym_while_statement] = STATE(1748), - [sym_if_statement] = STATE(1748), - [sym_case_statement] = STATE(1748), - [sym_function_definition] = STATE(1748), - [sym_compound_statement] = STATE(1748), - [sym_subshell] = STATE(1748), - [sym_pipeline] = STATE(1748), - [sym_list] = STATE(1748), - [sym_negated_command] = STATE(1748), - [sym_test_command] = STATE(1748), - [sym_declaration_command] = STATE(1748), - [sym_unset_command] = STATE(1748), - [sym_command] = STATE(1748), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_done] = ACTIONS(322), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [27] = { - [sym__statements] = STATE(3425), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [28] = { - [sym__statements] = STATE(3429), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [29] = { - [sym__statements] = STATE(3446), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2060), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [30] = { - [aux_sym__statements2] = STATE(31), - [sym_redirected_statement] = STATE(1730), - [sym_for_statement] = STATE(1730), - [sym_c_style_for_statement] = STATE(1730), - [sym_while_statement] = STATE(1730), - [sym_if_statement] = STATE(1730), - [sym_case_statement] = STATE(1730), - [sym_function_definition] = STATE(1730), - [sym_compound_statement] = STATE(1730), - [sym_subshell] = STATE(1730), - [sym_pipeline] = STATE(1730), - [sym_list] = STATE(1730), - [sym_negated_command] = STATE(1730), - [sym_test_command] = STATE(1730), - [sym_declaration_command] = STATE(1730), - [sym_unset_command] = STATE(1730), - [sym_command] = STATE(1730), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(457), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(330), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [31] = { - [aux_sym__statements2] = STATE(24), - [sym_redirected_statement] = STATE(1730), - [sym_for_statement] = STATE(1730), - [sym_c_style_for_statement] = STATE(1730), - [sym_while_statement] = STATE(1730), - [sym_if_statement] = STATE(1730), - [sym_case_statement] = STATE(1730), - [sym_function_definition] = STATE(1730), - [sym_compound_statement] = STATE(1730), - [sym_subshell] = STATE(1730), - [sym_pipeline] = STATE(1730), - [sym_list] = STATE(1730), - [sym_negated_command] = STATE(1730), - [sym_test_command] = STATE(1730), - [sym_declaration_command] = STATE(1730), - [sym_unset_command] = STATE(1730), - [sym_command] = STATE(1730), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(457), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_fi] = ACTIONS(332), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [32] = { - [sym__statements] = STATE(3327), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [33] = { - [sym__statements] = STATE(3326), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [34] = { - [sym__statements] = STATE(3417), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [35] = { - [sym__statements] = STATE(3298), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2062), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [36] = { - [sym__statements] = STATE(3366), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [37] = { - [sym__statements] = STATE(3343), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [38] = { - [sym__statements] = STATE(3286), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2078), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [39] = { - [sym__statements] = STATE(3393), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [40] = { - [sym__statements] = STATE(3392), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [41] = { - [sym__statements] = STATE(3387), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2075), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [42] = { - [sym__statements] = STATE(3309), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [43] = { - [sym__statements] = STATE(3477), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [44] = { - [sym__statements] = STATE(3342), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2064), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [45] = { - [sym__statements] = STATE(3371), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [46] = { - [sym__statements] = STATE(3378), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [47] = { - [sym__statements] = STATE(3290), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2055), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [48] = { - [sym__statements] = STATE(3469), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [49] = { - [sym__statements] = STATE(3462), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [50] = { - [aux_sym__statements2] = STATE(50), - [sym_redirected_statement] = STATE(1748), - [sym_for_statement] = STATE(1748), - [sym_c_style_for_statement] = STATE(1748), - [sym_while_statement] = STATE(1748), - [sym_if_statement] = STATE(1748), - [sym_case_statement] = STATE(1748), - [sym_function_definition] = STATE(1748), - [sym_compound_statement] = STATE(1748), - [sym_subshell] = STATE(1748), - [sym_pipeline] = STATE(1748), - [sym_list] = STATE(1748), - [sym_negated_command] = STATE(1748), - [sym_test_command] = STATE(1748), - [sym_declaration_command] = STATE(1748), - [sym_unset_command] = STATE(1748), - [sym_command] = STATE(1748), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(237), - [anon_sym_for] = ACTIONS(240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(243), - [anon_sym_while] = ACTIONS(246), - [anon_sym_done] = ACTIONS(252), - [anon_sym_if] = ACTIONS(249), - [anon_sym_case] = ACTIONS(254), - [anon_sym_function] = ACTIONS(257), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(263), - [anon_sym_BANG] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(272), - [anon_sym_declare] = ACTIONS(275), - [anon_sym_typeset] = ACTIONS(275), - [anon_sym_export] = ACTIONS(275), - [anon_sym_readonly] = ACTIONS(275), - [anon_sym_local] = ACTIONS(275), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(281), - [anon_sym_GT_GT] = ACTIONS(281), - [anon_sym_AMP_GT] = ACTIONS(281), - [anon_sym_AMP_GT_GT] = ACTIONS(281), - [anon_sym_LT_AMP] = ACTIONS(281), - [anon_sym_GT_AMP] = ACTIONS(281), - [anon_sym_GT_PIPE] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym__special_character] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(290), - [sym_raw_string] = ACTIONS(293), - [sym_ansii_c_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_LT_LPAREN] = ACTIONS(305), - [anon_sym_GT_LPAREN] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(308), - [sym_variable_name] = ACTIONS(311), - }, - [51] = { - [sym__statements] = STATE(3458), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2046), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [52] = { - [sym__statements] = STATE(3410), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [53] = { - [sym__statements] = STATE(3405), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [54] = { - [sym__statements] = STATE(3390), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2010), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [55] = { - [sym__statements] = STATE(3319), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [56] = { - [sym__statements] = STATE(3312), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [57] = { - [sym__statements] = STATE(3308), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1992), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [58] = { - [aux_sym__statements2] = STATE(133), - [sym_redirected_statement] = STATE(1719), - [sym_for_statement] = STATE(1719), - [sym_c_style_for_statement] = STATE(1719), - [sym_while_statement] = STATE(1719), - [sym_if_statement] = STATE(1719), - [sym_case_statement] = STATE(1719), - [sym_function_definition] = STATE(1719), - [sym_compound_statement] = STATE(1719), - [sym_subshell] = STATE(1719), - [sym_pipeline] = STATE(1719), - [sym_list] = STATE(1719), - [sym_negated_command] = STATE(1719), - [sym_test_command] = STATE(1719), - [sym_declaration_command] = STATE(1719), - [sym_unset_command] = STATE(1719), - [sym_command] = STATE(1719), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(500), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(334), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [59] = { - [sym__statements] = STATE(3277), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [60] = { - [sym__statements] = STATE(3421), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2063), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [61] = { - [sym__statements] = STATE(3275), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [62] = { - [sym__statements] = STATE(3273), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1967), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [63] = { - [sym__statements] = STATE(3324), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [64] = { - [sym__statements] = STATE(3441), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [65] = { - [sym__statements] = STATE(3448), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2067), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [66] = { - [sym__statements] = STATE(3328), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [67] = { - [sym__statements] = STATE(3341), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1939), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [68] = { - [sym__statements] = STATE(3380), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [69] = { - [sym__statements] = STATE(3336), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [70] = { - [sym__statements] = STATE(3451), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [71] = { - [sym__statements] = STATE(3444), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1920), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [72] = { - [sym__statements] = STATE(3412), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [73] = { - [sym__statements] = STATE(3411), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [74] = { - [sym__statements] = STATE(3406), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1916), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [75] = { - [sym__statements] = STATE(3351), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [76] = { - [sym__statements] = STATE(3350), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [77] = { - [aux_sym__statements2] = STATE(58), - [sym_redirected_statement] = STATE(1719), - [sym_for_statement] = STATE(1719), - [sym_c_style_for_statement] = STATE(1719), - [sym_while_statement] = STATE(1719), - [sym_if_statement] = STATE(1719), - [sym_case_statement] = STATE(1719), - [sym_function_definition] = STATE(1719), - [sym_compound_statement] = STATE(1719), - [sym_subshell] = STATE(1719), - [sym_pipeline] = STATE(1719), - [sym_list] = STATE(1719), - [sym_negated_command] = STATE(1719), - [sym_test_command] = STATE(1719), - [sym_declaration_command] = STATE(1719), - [sym_unset_command] = STATE(1719), - [sym_command] = STATE(1719), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(500), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(336), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [78] = { - [sym__statements] = STATE(3352), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1910), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [79] = { - [sym__statements] = STATE(3313), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [80] = { - [sym__statements] = STATE(3316), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [81] = { - [sym__statements] = STATE(3311), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1942), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [82] = { - [sym__statements] = STATE(3284), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [83] = { - [sym__statements] = STATE(3285), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [84] = { - [sym__statements] = STATE(3287), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1984), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [85] = { - [sym__statements] = STATE(3355), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [86] = { - [sym__statements] = STATE(3358), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [87] = { - [sym__statements] = STATE(3349), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2016), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [88] = { - [sym__statements] = STATE(3394), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [89] = { - [sym__statements] = STATE(3395), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [90] = { - [sym__statements] = STATE(3398), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2069), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [91] = { - [sym__statements] = STATE(3433), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [92] = { - [sym__statements] = STATE(3322), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [93] = { - [sym__statements] = STATE(3318), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [94] = { - [aux_sym__statements2] = STATE(95), - [sym_redirected_statement] = STATE(1719), - [sym_for_statement] = STATE(1719), - [sym_c_style_for_statement] = STATE(1719), - [sym_while_statement] = STATE(1719), - [sym_if_statement] = STATE(1719), - [sym_case_statement] = STATE(1719), - [sym_function_definition] = STATE(1719), - [sym_compound_statement] = STATE(1719), - [sym_subshell] = STATE(1719), - [sym_pipeline] = STATE(1719), - [sym_list] = STATE(1719), - [sym_negated_command] = STATE(1719), - [sym_test_command] = STATE(1719), - [sym_declaration_command] = STATE(1719), - [sym_unset_command] = STATE(1719), - [sym_command] = STATE(1719), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(500), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(338), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [95] = { - [aux_sym__statements2] = STATE(133), - [sym_redirected_statement] = STATE(1719), - [sym_for_statement] = STATE(1719), - [sym_c_style_for_statement] = STATE(1719), - [sym_while_statement] = STATE(1719), - [sym_if_statement] = STATE(1719), - [sym_case_statement] = STATE(1719), - [sym_function_definition] = STATE(1719), - [sym_compound_statement] = STATE(1719), - [sym_subshell] = STATE(1719), - [sym_pipeline] = STATE(1719), - [sym_list] = STATE(1719), - [sym_negated_command] = STATE(1719), - [sym_test_command] = STATE(1719), - [sym_declaration_command] = STATE(1719), - [sym_unset_command] = STATE(1719), - [sym_command] = STATE(1719), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(500), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(340), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [96] = { - [sym__statements] = STATE(3437), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [97] = { - [sym__statements] = STATE(3443), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2013), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [98] = { - [sym__statements] = STATE(3472), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [99] = { - [sym__statements] = STATE(3473), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [100] = { - [aux_sym__statements2] = STATE(134), - [sym_redirected_statement] = STATE(1748), - [sym_for_statement] = STATE(1748), - [sym_c_style_for_statement] = STATE(1748), - [sym_while_statement] = STATE(1748), - [sym_if_statement] = STATE(1748), - [sym_case_statement] = STATE(1748), - [sym_function_definition] = STATE(1748), - [sym_compound_statement] = STATE(1748), - [sym_subshell] = STATE(1748), - [sym_pipeline] = STATE(1748), - [sym_list] = STATE(1748), - [sym_negated_command] = STATE(1748), - [sym_test_command] = STATE(1748), - [sym_declaration_command] = STATE(1748), - [sym_unset_command] = STATE(1748), - [sym_command] = STATE(1748), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_done] = ACTIONS(342), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [101] = { - [sym__statements] = STATE(3474), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1922), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [102] = { - [sym__statements] = STATE(3304), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1957), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [103] = { - [sym__statements] = STATE(3466), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [104] = { - [sym__statements] = STATE(3465), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [105] = { - [sym__statements] = STATE(3464), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1951), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [106] = { - [sym__statements] = STATE(3445), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [107] = { - [sym__statements] = STATE(3438), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [108] = { - [sym__statements] = STATE(3430), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2009), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [109] = { - [sym__statements] = STATE(3403), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [110] = { - [sym__statements] = STATE(3400), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [111] = { - [sym__statements] = STATE(3399), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2076), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [112] = { - [sym__statements] = STATE(3364), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [113] = { - [sym__statements] = STATE(3363), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [114] = { - [sym__statements] = STATE(3360), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(2030), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [115] = { - [sym__statements] = STATE(3270), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [116] = { - [sym__statements] = STATE(3331), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [117] = { - [sym__statements] = STATE(3332), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1931), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [118] = { - [sym__statements] = STATE(3348), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [119] = { - [sym__statements] = STATE(3291), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [120] = { - [sym__statements] = STATE(3382), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [121] = { - [sym__statements] = STATE(3337), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1934), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [122] = { - [sym__statements] = STATE(3299), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [123] = { - [aux_sym__statements2] = STATE(26), - [sym_redirected_statement] = STATE(1748), - [sym_for_statement] = STATE(1748), - [sym_c_style_for_statement] = STATE(1748), - [sym_while_statement] = STATE(1748), - [sym_if_statement] = STATE(1748), - [sym_case_statement] = STATE(1748), - [sym_function_definition] = STATE(1748), - [sym_compound_statement] = STATE(1748), - [sym_subshell] = STATE(1748), - [sym_pipeline] = STATE(1748), - [sym_list] = STATE(1748), - [sym_negated_command] = STATE(1748), - [sym_test_command] = STATE(1748), - [sym_declaration_command] = STATE(1748), - [sym_unset_command] = STATE(1748), - [sym_command] = STATE(1748), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_done] = ACTIONS(344), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [124] = { - [aux_sym__statements2] = STATE(50), - [sym_redirected_statement] = STATE(1748), - [sym_for_statement] = STATE(1748), - [sym_c_style_for_statement] = STATE(1748), - [sym_while_statement] = STATE(1748), - [sym_if_statement] = STATE(1748), - [sym_case_statement] = STATE(1748), - [sym_function_definition] = STATE(1748), - [sym_compound_statement] = STATE(1748), - [sym_subshell] = STATE(1748), - [sym_pipeline] = STATE(1748), - [sym_list] = STATE(1748), - [sym_negated_command] = STATE(1748), - [sym_test_command] = STATE(1748), - [sym_declaration_command] = STATE(1748), - [sym_unset_command] = STATE(1748), - [sym_command] = STATE(1748), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_done] = ACTIONS(346), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [125] = { - [sym__statements] = STATE(3335), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [126] = { - [sym__statements] = STATE(3339), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1987), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [127] = { - [sym__statements] = STATE(3320), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(1982), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [128] = { - [aux_sym__statements2] = STATE(124), - [sym_redirected_statement] = STATE(1748), - [sym_for_statement] = STATE(1748), - [sym_c_style_for_statement] = STATE(1748), - [sym_while_statement] = STATE(1748), - [sym_if_statement] = STATE(1748), - [sym_case_statement] = STATE(1748), - [sym_function_definition] = STATE(1748), - [sym_compound_statement] = STATE(1748), - [sym_subshell] = STATE(1748), - [sym_pipeline] = STATE(1748), - [sym_list] = STATE(1748), - [sym_negated_command] = STATE(1748), - [sym_test_command] = STATE(1748), - [sym_declaration_command] = STATE(1748), - [sym_unset_command] = STATE(1748), - [sym_command] = STATE(1748), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_done] = ACTIONS(348), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [129] = { - [aux_sym__statements2] = STATE(133), - [sym_redirected_statement] = STATE(1719), - [sym_for_statement] = STATE(1719), - [sym_c_style_for_statement] = STATE(1719), - [sym_while_statement] = STATE(1719), - [sym_if_statement] = STATE(1719), - [sym_case_statement] = STATE(1719), - [sym_function_definition] = STATE(1719), - [sym_compound_statement] = STATE(1719), - [sym_subshell] = STATE(1719), - [sym_pipeline] = STATE(1719), - [sym_list] = STATE(1719), - [sym_negated_command] = STATE(1719), - [sym_test_command] = STATE(1719), - [sym_declaration_command] = STATE(1719), - [sym_unset_command] = STATE(1719), - [sym_command] = STATE(1719), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(500), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(350), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [130] = { - [sym__statements] = STATE(3314), - [sym_redirected_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_c_style_for_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_case_statement] = STATE(1686), - [sym_function_definition] = STATE(1686), - [sym_compound_statement] = STATE(1686), - [sym_subshell] = STATE(1686), - [sym_pipeline] = STATE(1686), - [sym_list] = STATE(1686), - [sym_negated_command] = STATE(1686), - [sym_test_command] = STATE(1686), - [sym_declaration_command] = STATE(1686), - [sym_unset_command] = STATE(1686), - [sym_command] = STATE(1686), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(533), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(142), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [131] = { - [sym__statements] = STATE(3359), - [sym_redirected_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_c_style_for_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_case_statement] = STATE(1681), - [sym_function_definition] = STATE(1681), - [sym_compound_statement] = STATE(1681), - [sym_subshell] = STATE(1681), - [sym_pipeline] = STATE(1681), - [sym_list] = STATE(1681), - [sym_negated_command] = STATE(1681), - [sym_test_command] = STATE(1681), - [sym_declaration_command] = STATE(1681), - [sym_unset_command] = STATE(1681), - [sym_command] = STATE(1681), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(360), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(135), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [132] = { - [aux_sym__statements2] = STATE(129), - [sym_redirected_statement] = STATE(1719), - [sym_for_statement] = STATE(1719), - [sym_c_style_for_statement] = STATE(1719), - [sym_while_statement] = STATE(1719), - [sym_if_statement] = STATE(1719), - [sym_case_statement] = STATE(1719), - [sym_function_definition] = STATE(1719), - [sym_compound_statement] = STATE(1719), - [sym_subshell] = STATE(1719), - [sym_pipeline] = STATE(1719), - [sym_list] = STATE(1719), - [sym_negated_command] = STATE(1719), - [sym_test_command] = STATE(1719), - [sym_declaration_command] = STATE(1719), - [sym_unset_command] = STATE(1719), - [sym_command] = STATE(1719), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(500), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_RBRACE] = ACTIONS(352), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [133] = { - [aux_sym__statements2] = STATE(133), - [sym_redirected_statement] = STATE(1719), - [sym_for_statement] = STATE(1719), - [sym_c_style_for_statement] = STATE(1719), - [sym_while_statement] = STATE(1719), - [sym_if_statement] = STATE(1719), - [sym_case_statement] = STATE(1719), - [sym_function_definition] = STATE(1719), - [sym_compound_statement] = STATE(1719), - [sym_subshell] = STATE(1719), - [sym_pipeline] = STATE(1719), - [sym_list] = STATE(1719), - [sym_negated_command] = STATE(1719), - [sym_test_command] = STATE(1719), - [sym_declaration_command] = STATE(1719), - [sym_unset_command] = STATE(1719), - [sym_command] = STATE(1719), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(500), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(237), - [anon_sym_for] = ACTIONS(240), - [anon_sym_LPAREN_LPAREN] = ACTIONS(243), - [anon_sym_while] = ACTIONS(246), - [anon_sym_if] = ACTIONS(249), - [anon_sym_case] = ACTIONS(254), - [anon_sym_function] = ACTIONS(257), - [anon_sym_LPAREN] = ACTIONS(260), - [anon_sym_LBRACE] = ACTIONS(263), - [anon_sym_RBRACE] = ACTIONS(252), - [anon_sym_BANG] = ACTIONS(266), - [anon_sym_LBRACK] = ACTIONS(269), - [anon_sym_LBRACK_LBRACK] = ACTIONS(272), - [anon_sym_declare] = ACTIONS(275), - [anon_sym_typeset] = ACTIONS(275), - [anon_sym_export] = ACTIONS(275), - [anon_sym_readonly] = ACTIONS(275), - [anon_sym_local] = ACTIONS(275), - [anon_sym_unset] = ACTIONS(278), - [anon_sym_unsetenv] = ACTIONS(278), - [anon_sym_LT] = ACTIONS(281), - [anon_sym_GT] = ACTIONS(281), - [anon_sym_GT_GT] = ACTIONS(281), - [anon_sym_AMP_GT] = ACTIONS(281), - [anon_sym_AMP_GT_GT] = ACTIONS(281), - [anon_sym_LT_AMP] = ACTIONS(281), - [anon_sym_GT_AMP] = ACTIONS(281), - [anon_sym_GT_PIPE] = ACTIONS(281), - [anon_sym_DOLLAR] = ACTIONS(284), - [sym__special_character] = ACTIONS(287), - [anon_sym_DQUOTE] = ACTIONS(290), - [sym_raw_string] = ACTIONS(293), - [sym_ansii_c_string] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), - [anon_sym_BQUOTE] = ACTIONS(302), - [anon_sym_LT_LPAREN] = ACTIONS(305), - [anon_sym_GT_LPAREN] = ACTIONS(305), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(308), - [sym_variable_name] = ACTIONS(311), - }, - [134] = { - [aux_sym__statements2] = STATE(50), - [sym_redirected_statement] = STATE(1748), - [sym_for_statement] = STATE(1748), - [sym_c_style_for_statement] = STATE(1748), - [sym_while_statement] = STATE(1748), - [sym_if_statement] = STATE(1748), - [sym_case_statement] = STATE(1748), - [sym_function_definition] = STATE(1748), - [sym_compound_statement] = STATE(1748), - [sym_subshell] = STATE(1748), - [sym_pipeline] = STATE(1748), - [sym_list] = STATE(1748), - [sym_negated_command] = STATE(1748), - [sym_test_command] = STATE(1748), - [sym_declaration_command] = STATE(1748), - [sym_unset_command] = STATE(1748), - [sym_command] = STATE(1748), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(431), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_done] = ACTIONS(354), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [135] = { - [sym_redirected_statement] = STATE(1677), - [sym_for_statement] = STATE(1677), - [sym_c_style_for_statement] = STATE(1677), - [sym_while_statement] = STATE(1677), - [sym_if_statement] = STATE(1677), - [sym_case_statement] = STATE(1677), - [sym_function_definition] = STATE(1677), - [sym_compound_statement] = STATE(1677), - [sym_subshell] = STATE(1677), - [sym_pipeline] = STATE(1677), - [sym_list] = STATE(1677), - [sym_negated_command] = STATE(1677), - [sym_test_command] = STATE(1677), - [sym_declaration_command] = STATE(1677), - [sym_unset_command] = STATE(1677), - [sym_command] = STATE(1677), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(336), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(144), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [136] = { - [sym__terminated_statement] = STATE(3257), - [sym_redirected_statement] = STATE(1731), - [sym_for_statement] = STATE(1731), - [sym_c_style_for_statement] = STATE(1731), - [sym_while_statement] = STATE(1731), - [sym_if_statement] = STATE(1731), - [sym_case_statement] = STATE(1731), - [sym_function_definition] = STATE(1731), - [sym_compound_statement] = STATE(1731), - [sym_subshell] = STATE(1731), - [sym_pipeline] = STATE(1731), - [sym_list] = STATE(1731), - [sym_negated_command] = STATE(1731), - [sym_test_command] = STATE(1731), - [sym_declaration_command] = STATE(1731), - [sym_unset_command] = STATE(1731), - [sym_command] = STATE(1731), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(503), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [137] = { - [sym_redirected_statement] = STATE(1656), - [sym_for_statement] = STATE(1656), - [sym_c_style_for_statement] = STATE(1656), - [sym_while_statement] = STATE(1656), - [sym_if_statement] = STATE(1656), - [sym_case_statement] = STATE(1656), - [sym_function_definition] = STATE(1656), - [sym_compound_statement] = STATE(1656), - [sym_subshell] = STATE(1656), - [sym_pipeline] = STATE(1656), - [sym_list] = STATE(1656), - [sym_negated_command] = STATE(1656), - [sym_test_command] = STATE(1656), - [sym_declaration_command] = STATE(1656), - [sym_unset_command] = STATE(1656), - [sym_command] = STATE(1656), - [sym_command_name] = STATE(194), - [sym_variable_assignment] = STATE(291), - [sym_subscript] = STATE(3237), - [sym_file_redirect] = STATE(784), - [sym_concatenation] = STATE(699), - [sym_string] = STATE(328), - [sym_simple_expansion] = STATE(328), - [sym_string_expansion] = STATE(328), - [sym_expansion] = STATE(328), - [sym_command_substitution] = STATE(328), - [sym_process_substitution] = STATE(328), - [aux_sym__statements_repeat1] = STATE(144), - [aux_sym_command_repeat1] = STATE(784), - [aux_sym__literal_repeat1] = STATE(469), - [sym_word] = ACTIONS(199), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(205), - [anon_sym_typeset] = ACTIONS(205), - [anon_sym_export] = ACTIONS(205), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_local] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(207), - [anon_sym_unsetenv] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym__special_character] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym_raw_string] = ACTIONS(215), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(225), - }, - [138] = { - [sym__terminated_statement] = STATE(3347), - [sym_redirected_statement] = STATE(1731), - [sym_for_statement] = STATE(1731), - [sym_c_style_for_statement] = STATE(1731), - [sym_while_statement] = STATE(1731), - [sym_if_statement] = STATE(1731), - [sym_case_statement] = STATE(1731), - [sym_function_definition] = STATE(1731), - [sym_compound_statement] = STATE(1731), - [sym_subshell] = STATE(1731), - [sym_pipeline] = STATE(1731), - [sym_list] = STATE(1731), - [sym_negated_command] = STATE(1731), - [sym_test_command] = STATE(1731), - [sym_declaration_command] = STATE(1731), - [sym_unset_command] = STATE(1731), - [sym_command] = STATE(1731), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(503), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [139] = { - [sym__terminated_statement] = STATE(3369), - [sym_redirected_statement] = STATE(1731), - [sym_for_statement] = STATE(1731), - [sym_c_style_for_statement] = STATE(1731), - [sym_while_statement] = STATE(1731), - [sym_if_statement] = STATE(1731), - [sym_case_statement] = STATE(1731), - [sym_function_definition] = STATE(1731), - [sym_compound_statement] = STATE(1731), - [sym_subshell] = STATE(1731), - [sym_pipeline] = STATE(1731), - [sym_list] = STATE(1731), - [sym_negated_command] = STATE(1731), - [sym_test_command] = STATE(1731), - [sym_declaration_command] = STATE(1731), - [sym_unset_command] = STATE(1731), - [sym_command] = STATE(1731), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(503), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [140] = { - [sym_redirected_statement] = STATE(1669), - [sym_for_statement] = STATE(1669), - [sym_c_style_for_statement] = STATE(1669), - [sym_while_statement] = STATE(1669), - [sym_if_statement] = STATE(1669), - [sym_case_statement] = STATE(1669), - [sym_function_definition] = STATE(1669), - [sym_compound_statement] = STATE(1669), - [sym_subshell] = STATE(1669), - [sym_pipeline] = STATE(1669), - [sym_list] = STATE(1669), - [sym_negated_command] = STATE(1669), - [sym_test_command] = STATE(1669), - [sym_declaration_command] = STATE(1669), - [sym_unset_command] = STATE(1669), - [sym_command] = STATE(1669), - [sym_command_name] = STATE(218), - [sym_variable_assignment] = STATE(324), - [sym_subscript] = STATE(3173), - [sym_file_redirect] = STATE(782), - [sym_concatenation] = STATE(778), - [sym_string] = STATE(515), - [sym_simple_expansion] = STATE(515), - [sym_string_expansion] = STATE(515), - [sym_expansion] = STATE(515), - [sym_command_substitution] = STATE(515), - [sym_process_substitution] = STATE(515), - [aux_sym__statements_repeat1] = STATE(144), - [aux_sym_command_repeat1] = STATE(782), - [aux_sym__literal_repeat1] = STATE(700), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_LPAREN_LPAREN] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_declare] = ACTIONS(31), - [anon_sym_typeset] = ACTIONS(31), - [anon_sym_export] = ACTIONS(31), - [anon_sym_readonly] = ACTIONS(31), - [anon_sym_local] = ACTIONS(31), - [anon_sym_unset] = ACTIONS(33), - [anon_sym_unsetenv] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(37), - [sym__special_character] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [sym_ansii_c_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(55), - }, - [141] = { - [sym__terminated_statement] = STATE(3289), - [sym_redirected_statement] = STATE(1731), - [sym_for_statement] = STATE(1731), - [sym_c_style_for_statement] = STATE(1731), - [sym_while_statement] = STATE(1731), - [sym_if_statement] = STATE(1731), - [sym_case_statement] = STATE(1731), - [sym_function_definition] = STATE(1731), - [sym_compound_statement] = STATE(1731), - [sym_subshell] = STATE(1731), - [sym_pipeline] = STATE(1731), - [sym_list] = STATE(1731), - [sym_negated_command] = STATE(1731), - [sym_test_command] = STATE(1731), - [sym_declaration_command] = STATE(1731), - [sym_unset_command] = STATE(1731), - [sym_command] = STATE(1731), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(503), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [142] = { - [sym_redirected_statement] = STATE(1676), - [sym_for_statement] = STATE(1676), - [sym_c_style_for_statement] = STATE(1676), - [sym_while_statement] = STATE(1676), - [sym_if_statement] = STATE(1676), - [sym_case_statement] = STATE(1676), - [sym_function_definition] = STATE(1676), - [sym_compound_statement] = STATE(1676), - [sym_subshell] = STATE(1676), - [sym_pipeline] = STATE(1676), - [sym_list] = STATE(1676), - [sym_negated_command] = STATE(1676), - [sym_test_command] = STATE(1676), - [sym_declaration_command] = STATE(1676), - [sym_unset_command] = STATE(1676), - [sym_command] = STATE(1676), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(510), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(144), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [143] = { - [sym__terminated_statement] = STATE(3218), - [sym_redirected_statement] = STATE(1731), - [sym_for_statement] = STATE(1731), - [sym_c_style_for_statement] = STATE(1731), - [sym_while_statement] = STATE(1731), - [sym_if_statement] = STATE(1731), - [sym_case_statement] = STATE(1731), - [sym_function_definition] = STATE(1731), - [sym_compound_statement] = STATE(1731), - [sym_subshell] = STATE(1731), - [sym_pipeline] = STATE(1731), - [sym_list] = STATE(1731), - [sym_negated_command] = STATE(1731), - [sym_test_command] = STATE(1731), - [sym_declaration_command] = STATE(1731), - [sym_unset_command] = STATE(1731), - [sym_command] = STATE(1731), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(503), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [144] = { - [sym_redirected_statement] = STATE(1721), - [sym_for_statement] = STATE(1721), - [sym_c_style_for_statement] = STATE(1721), - [sym_while_statement] = STATE(1721), - [sym_if_statement] = STATE(1721), - [sym_case_statement] = STATE(1721), - [sym_function_definition] = STATE(1721), - [sym_compound_statement] = STATE(1721), - [sym_subshell] = STATE(1721), - [sym_pipeline] = STATE(1721), - [sym_list] = STATE(1721), - [sym_negated_command] = STATE(1721), - [sym_test_command] = STATE(1721), - [sym_declaration_command] = STATE(1721), - [sym_unset_command] = STATE(1721), - [sym_command] = STATE(1721), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(532), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym__statements_repeat1] = STATE(144), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(356), - [anon_sym_for] = ACTIONS(359), - [anon_sym_LPAREN_LPAREN] = ACTIONS(362), - [anon_sym_while] = ACTIONS(365), - [anon_sym_if] = ACTIONS(368), - [anon_sym_case] = ACTIONS(371), - [anon_sym_function] = ACTIONS(374), - [anon_sym_LPAREN] = ACTIONS(377), - [anon_sym_LBRACE] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(383), - [anon_sym_LBRACK] = ACTIONS(386), - [anon_sym_LBRACK_LBRACK] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(392), - [anon_sym_typeset] = ACTIONS(392), - [anon_sym_export] = ACTIONS(392), - [anon_sym_readonly] = ACTIONS(392), - [anon_sym_local] = ACTIONS(392), - [anon_sym_unset] = ACTIONS(395), - [anon_sym_unsetenv] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(398), - [anon_sym_GT] = ACTIONS(398), - [anon_sym_GT_GT] = ACTIONS(398), - [anon_sym_AMP_GT] = ACTIONS(398), - [anon_sym_AMP_GT_GT] = ACTIONS(398), - [anon_sym_LT_AMP] = ACTIONS(398), - [anon_sym_GT_AMP] = ACTIONS(398), - [anon_sym_GT_PIPE] = ACTIONS(398), - [anon_sym_DOLLAR] = ACTIONS(401), - [sym__special_character] = ACTIONS(404), - [anon_sym_DQUOTE] = ACTIONS(407), - [sym_raw_string] = ACTIONS(410), - [sym_ansii_c_string] = ACTIONS(410), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(413), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(416), - [anon_sym_BQUOTE] = ACTIONS(419), - [anon_sym_LT_LPAREN] = ACTIONS(422), - [anon_sym_GT_LPAREN] = ACTIONS(422), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(425), - [sym_variable_name] = ACTIONS(428), - }, - [145] = { - [sym__terminated_statement] = STATE(3186), - [sym_redirected_statement] = STATE(1731), - [sym_for_statement] = STATE(1731), - [sym_c_style_for_statement] = STATE(1731), - [sym_while_statement] = STATE(1731), - [sym_if_statement] = STATE(1731), - [sym_case_statement] = STATE(1731), - [sym_function_definition] = STATE(1731), - [sym_compound_statement] = STATE(1731), - [sym_subshell] = STATE(1731), - [sym_pipeline] = STATE(1731), - [sym_list] = STATE(1731), - [sym_negated_command] = STATE(1731), - [sym_test_command] = STATE(1731), - [sym_declaration_command] = STATE(1731), - [sym_unset_command] = STATE(1731), - [sym_command] = STATE(1731), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(503), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [146] = { - [sym__terminated_statement] = STATE(3389), - [sym_redirected_statement] = STATE(1731), - [sym_for_statement] = STATE(1731), - [sym_c_style_for_statement] = STATE(1731), - [sym_while_statement] = STATE(1731), - [sym_if_statement] = STATE(1731), - [sym_case_statement] = STATE(1731), - [sym_function_definition] = STATE(1731), - [sym_compound_statement] = STATE(1731), - [sym_subshell] = STATE(1731), - [sym_pipeline] = STATE(1731), - [sym_list] = STATE(1731), - [sym_negated_command] = STATE(1731), - [sym_test_command] = STATE(1731), - [sym_declaration_command] = STATE(1731), - [sym_unset_command] = STATE(1731), - [sym_command] = STATE(1731), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(503), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [147] = { - [sym_redirected_statement] = STATE(1651), - [sym_for_statement] = STATE(1651), - [sym_c_style_for_statement] = STATE(1651), - [sym_while_statement] = STATE(1651), - [sym_if_statement] = STATE(1651), - [sym_case_statement] = STATE(1651), - [sym_function_definition] = STATE(1651), - [sym_compound_statement] = STATE(1651), - [sym_subshell] = STATE(1651), - [sym_pipeline] = STATE(1651), - [sym_list] = STATE(1651), - [sym_negated_command] = STATE(1651), - [sym_test_command] = STATE(1651), - [sym_declaration_command] = STATE(1651), - [sym_unset_command] = STATE(1651), - [sym_command] = STATE(1651), - [sym_command_name] = STATE(170), - [sym_variable_assignment] = STATE(271), - [sym_subscript] = STATE(3250), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(534), - [sym_string] = STATE(281), - [sym_simple_expansion] = STATE(281), - [sym_string_expansion] = STATE(281), - [sym_expansion] = STATE(281), - [sym_command_substitution] = STATE(281), - [sym_process_substitution] = STATE(281), - [aux_sym__statements_repeat1] = STATE(144), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(358), - [sym_word] = ACTIONS(119), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(149), - [anon_sym_typeset] = ACTIONS(149), - [anon_sym_export] = ACTIONS(149), - [anon_sym_readonly] = ACTIONS(149), - [anon_sym_local] = ACTIONS(149), - [anon_sym_unset] = ACTIONS(151), - [anon_sym_unsetenv] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(153), - [sym__special_character] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_raw_string] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(163), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LT_LPAREN] = ACTIONS(167), - [anon_sym_GT_LPAREN] = ACTIONS(167), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(169), - }, - [148] = { - [sym_redirected_statement] = STATE(1647), - [sym_for_statement] = STATE(1647), - [sym_c_style_for_statement] = STATE(1647), - [sym_while_statement] = STATE(1647), - [sym_if_statement] = STATE(1647), - [sym_case_statement] = STATE(1647), - [sym_function_definition] = STATE(1647), - [sym_compound_statement] = STATE(1647), - [sym_subshell] = STATE(1647), - [sym_pipeline] = STATE(1647), - [sym_list] = STATE(1647), - [sym_negated_command] = STATE(1647), - [sym_test_command] = STATE(1647), - [sym_declaration_command] = STATE(1647), - [sym_unset_command] = STATE(1647), - [sym_command] = STATE(1647), - [sym_command_name] = STATE(170), - [sym_variable_assignment] = STATE(273), - [sym_subscript] = STATE(3250), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(534), - [sym_string] = STATE(281), - [sym_simple_expansion] = STATE(281), - [sym_string_expansion] = STATE(281), - [sym_expansion] = STATE(281), - [sym_command_substitution] = STATE(281), - [sym_process_substitution] = STATE(281), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(358), - [sym_word] = ACTIONS(119), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(149), - [anon_sym_typeset] = ACTIONS(149), - [anon_sym_export] = ACTIONS(149), - [anon_sym_readonly] = ACTIONS(149), - [anon_sym_local] = ACTIONS(149), - [anon_sym_unset] = ACTIONS(151), - [anon_sym_unsetenv] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(153), - [sym__special_character] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_raw_string] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(163), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LT_LPAREN] = ACTIONS(167), - [anon_sym_GT_LPAREN] = ACTIONS(167), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(169), - }, - [149] = { - [sym_redirected_statement] = STATE(1663), - [sym_for_statement] = STATE(1663), - [sym_c_style_for_statement] = STATE(1663), - [sym_while_statement] = STATE(1663), - [sym_if_statement] = STATE(1663), - [sym_case_statement] = STATE(1663), - [sym_function_definition] = STATE(1663), - [sym_compound_statement] = STATE(1663), - [sym_subshell] = STATE(1663), - [sym_pipeline] = STATE(1663), - [sym_list] = STATE(1663), - [sym_negated_command] = STATE(1663), - [sym_test_command] = STATE(1663), - [sym_declaration_command] = STATE(1663), - [sym_unset_command] = STATE(1663), - [sym_command] = STATE(1663), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(496), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [150] = { - [sym_redirected_statement] = STATE(1683), - [sym_for_statement] = STATE(1683), - [sym_c_style_for_statement] = STATE(1683), - [sym_while_statement] = STATE(1683), - [sym_if_statement] = STATE(1683), - [sym_case_statement] = STATE(1683), - [sym_function_definition] = STATE(1683), - [sym_compound_statement] = STATE(1683), - [sym_subshell] = STATE(1683), - [sym_pipeline] = STATE(1683), - [sym_list] = STATE(1683), - [sym_negated_command] = STATE(1683), - [sym_test_command] = STATE(1683), - [sym_declaration_command] = STATE(1683), - [sym_unset_command] = STATE(1683), - [sym_command] = STATE(1683), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(325), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), - }, - [151] = { - [sym_redirected_statement] = STATE(1648), - [sym_for_statement] = STATE(1648), - [sym_c_style_for_statement] = STATE(1648), - [sym_while_statement] = STATE(1648), - [sym_if_statement] = STATE(1648), - [sym_case_statement] = STATE(1648), - [sym_function_definition] = STATE(1648), - [sym_compound_statement] = STATE(1648), - [sym_subshell] = STATE(1648), - [sym_pipeline] = STATE(1648), - [sym_list] = STATE(1648), - [sym_negated_command] = STATE(1648), - [sym_test_command] = STATE(1648), - [sym_declaration_command] = STATE(1648), - [sym_unset_command] = STATE(1648), - [sym_command] = STATE(1648), - [sym_command_name] = STATE(170), - [sym_variable_assignment] = STATE(276), - [sym_subscript] = STATE(3250), - [sym_file_redirect] = STATE(831), - [sym_concatenation] = STATE(534), - [sym_string] = STATE(281), - [sym_simple_expansion] = STATE(281), - [sym_string_expansion] = STATE(281), - [sym_expansion] = STATE(281), - [sym_command_substitution] = STATE(281), - [sym_process_substitution] = STATE(281), - [aux_sym_command_repeat1] = STATE(831), - [aux_sym__literal_repeat1] = STATE(358), - [sym_word] = ACTIONS(119), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(143), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(149), - [anon_sym_typeset] = ACTIONS(149), - [anon_sym_export] = ACTIONS(149), - [anon_sym_readonly] = ACTIONS(149), - [anon_sym_local] = ACTIONS(149), - [anon_sym_unset] = ACTIONS(151), - [anon_sym_unsetenv] = ACTIONS(151), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(153), - [sym__special_character] = ACTIONS(155), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_raw_string] = ACTIONS(159), - [sym_ansii_c_string] = ACTIONS(159), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(161), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(163), - [anon_sym_BQUOTE] = ACTIONS(165), - [anon_sym_LT_LPAREN] = ACTIONS(167), - [anon_sym_GT_LPAREN] = ACTIONS(167), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(169), - }, - [152] = { - [sym_redirected_statement] = STATE(1657), - [sym_for_statement] = STATE(1657), - [sym_c_style_for_statement] = STATE(1657), - [sym_while_statement] = STATE(1657), - [sym_if_statement] = STATE(1657), - [sym_case_statement] = STATE(1657), - [sym_function_definition] = STATE(1657), - [sym_compound_statement] = STATE(1657), - [sym_subshell] = STATE(1657), - [sym_pipeline] = STATE(1657), - [sym_list] = STATE(1657), - [sym_negated_command] = STATE(1657), - [sym_test_command] = STATE(1657), - [sym_declaration_command] = STATE(1657), - [sym_unset_command] = STATE(1657), - [sym_command] = STATE(1657), - [sym_command_name] = STATE(194), - [sym_variable_assignment] = STATE(284), - [sym_subscript] = STATE(3237), - [sym_file_redirect] = STATE(784), - [sym_concatenation] = STATE(699), - [sym_string] = STATE(328), - [sym_simple_expansion] = STATE(328), - [sym_string_expansion] = STATE(328), - [sym_expansion] = STATE(328), - [sym_command_substitution] = STATE(328), - [sym_process_substitution] = STATE(328), - [aux_sym_command_repeat1] = STATE(784), - [aux_sym__literal_repeat1] = STATE(469), - [sym_word] = ACTIONS(199), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(205), - [anon_sym_typeset] = ACTIONS(205), - [anon_sym_export] = ACTIONS(205), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_local] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(207), - [anon_sym_unsetenv] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym__special_character] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym_raw_string] = ACTIONS(215), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(225), - }, - [153] = { [sym_redirected_statement] = STATE(1655), [sym_for_statement] = STATE(1655), [sym_c_style_for_statement] = STATE(1655), @@ -20589,132 +10411,603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1655), [sym_unset_command] = STATE(1655), [sym_command] = STATE(1655), - [sym_command_name] = STATE(194), - [sym_variable_assignment] = STATE(285), + [sym_command_name] = STATE(205), + [sym_variable_assignment] = STATE(291), [sym_subscript] = STATE(3237), - [sym_file_redirect] = STATE(784), - [sym_concatenation] = STATE(699), - [sym_string] = STATE(328), - [sym_simple_expansion] = STATE(328), - [sym_string_expansion] = STATE(328), - [sym_expansion] = STATE(328), - [sym_command_substitution] = STATE(328), - [sym_process_substitution] = STATE(328), - [aux_sym_command_repeat1] = STATE(784), + [sym_file_redirect] = STATE(771), + [sym_concatenation] = STATE(736), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym__statements_repeat1] = STATE(141), + [aux_sym_command_repeat1] = STATE(771), [aux_sym__literal_repeat1] = STATE(469), - [sym_word] = ACTIONS(199), - [anon_sym_for] = ACTIONS(121), - [anon_sym_LPAREN_LPAREN] = ACTIONS(123), - [anon_sym_while] = ACTIONS(125), - [anon_sym_if] = ACTIONS(127), - [anon_sym_case] = ACTIONS(129), - [anon_sym_function] = ACTIONS(137), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym_LBRACE] = ACTIONS(141), - [anon_sym_BANG] = ACTIONS(203), - [anon_sym_LBRACK] = ACTIONS(145), - [anon_sym_LBRACK_LBRACK] = ACTIONS(147), - [anon_sym_declare] = ACTIONS(205), - [anon_sym_typeset] = ACTIONS(205), - [anon_sym_export] = ACTIONS(205), - [anon_sym_readonly] = ACTIONS(205), - [anon_sym_local] = ACTIONS(205), - [anon_sym_unset] = ACTIONS(207), - [anon_sym_unsetenv] = ACTIONS(207), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(209), - [sym__special_character] = ACTIONS(211), - [anon_sym_DQUOTE] = ACTIONS(213), - [sym_raw_string] = ACTIONS(215), - [sym_ansii_c_string] = ACTIONS(215), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(217), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(219), - [anon_sym_BQUOTE] = ACTIONS(221), - [anon_sym_LT_LPAREN] = ACTIONS(223), - [anon_sym_GT_LPAREN] = ACTIONS(223), + [sym_word] = ACTIONS(205), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_SEMI_SEMI] = ACTIONS(207), + [anon_sym_SEMI_AMP] = ACTIONS(203), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(203), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(211), + [anon_sym_typeset] = ACTIONS(211), + [anon_sym_export] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(211), + [anon_sym_local] = ACTIONS(211), + [anon_sym_unset] = ACTIONS(213), + [anon_sym_unsetenv] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(221), + [sym_ansii_c_string] = ACTIONS(221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(229), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(225), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(231), }, - [154] = { - [sym_redirected_statement] = STATE(1653), - [sym_for_statement] = STATE(1653), - [sym_c_style_for_statement] = STATE(1653), - [sym_while_statement] = STATE(1653), - [sym_if_statement] = STATE(1653), - [sym_case_statement] = STATE(1653), - [sym_function_definition] = STATE(1653), - [sym_compound_statement] = STATE(1653), - [sym_subshell] = STATE(1653), - [sym_pipeline] = STATE(1653), - [sym_list] = STATE(1653), - [sym_negated_command] = STATE(1653), - [sym_test_command] = STATE(1653), - [sym_declaration_command] = STATE(1653), - [sym_unset_command] = STATE(1653), - [sym_command] = STATE(1653), - [sym_command_name] = STATE(202), - [sym_variable_assignment] = STATE(322), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(815), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(815), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(81), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(87), - [anon_sym_typeset] = ACTIONS(87), - [anon_sym_export] = ACTIONS(87), - [anon_sym_readonly] = ACTIONS(87), - [anon_sym_local] = ACTIONS(87), - [anon_sym_unset] = ACTIONS(89), - [anon_sym_unsetenv] = ACTIONS(89), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), + [14] = { + [sym__statements] = STATE(3097), + [sym_redirected_statement] = STATE(1655), + [sym_for_statement] = STATE(1655), + [sym_c_style_for_statement] = STATE(1655), + [sym_while_statement] = STATE(1655), + [sym_if_statement] = STATE(1655), + [sym_case_statement] = STATE(1655), + [sym_function_definition] = STATE(1655), + [sym_compound_statement] = STATE(1655), + [sym_subshell] = STATE(1655), + [sym_pipeline] = STATE(1655), + [sym_list] = STATE(1655), + [sym_negated_command] = STATE(1655), + [sym_test_command] = STATE(1655), + [sym_declaration_command] = STATE(1655), + [sym_unset_command] = STATE(1655), + [sym_command] = STATE(1655), + [sym_command_name] = STATE(205), + [sym_variable_assignment] = STATE(291), + [sym_subscript] = STATE(3237), + [sym_file_redirect] = STATE(771), + [sym_concatenation] = STATE(736), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym__statements_repeat1] = STATE(141), + [aux_sym_command_repeat1] = STATE(771), + [aux_sym__literal_repeat1] = STATE(469), + [sym_word] = ACTIONS(205), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_SEMI_SEMI] = ACTIONS(233), + [anon_sym_SEMI_AMP] = ACTIONS(197), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(197), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(211), + [anon_sym_typeset] = ACTIONS(211), + [anon_sym_export] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(211), + [anon_sym_local] = ACTIONS(211), + [anon_sym_unset] = ACTIONS(213), + [anon_sym_unsetenv] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(221), + [sym_ansii_c_string] = ACTIONS(221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(229), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(231), }, - [155] = { + [15] = { + [sym__statements] = STATE(3084), + [sym_redirected_statement] = STATE(1655), + [sym_for_statement] = STATE(1655), + [sym_c_style_for_statement] = STATE(1655), + [sym_while_statement] = STATE(1655), + [sym_if_statement] = STATE(1655), + [sym_case_statement] = STATE(1655), + [sym_function_definition] = STATE(1655), + [sym_compound_statement] = STATE(1655), + [sym_subshell] = STATE(1655), + [sym_pipeline] = STATE(1655), + [sym_list] = STATE(1655), + [sym_negated_command] = STATE(1655), + [sym_test_command] = STATE(1655), + [sym_declaration_command] = STATE(1655), + [sym_unset_command] = STATE(1655), + [sym_command] = STATE(1655), + [sym_command_name] = STATE(205), + [sym_variable_assignment] = STATE(291), + [sym_subscript] = STATE(3237), + [sym_file_redirect] = STATE(771), + [sym_concatenation] = STATE(736), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym__statements_repeat1] = STATE(141), + [aux_sym_command_repeat1] = STATE(771), + [aux_sym__literal_repeat1] = STATE(469), + [sym_word] = ACTIONS(205), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_SEMI_SEMI] = ACTIONS(235), + [anon_sym_SEMI_AMP] = ACTIONS(141), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(211), + [anon_sym_typeset] = ACTIONS(211), + [anon_sym_export] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(211), + [anon_sym_local] = ACTIONS(211), + [anon_sym_unset] = ACTIONS(213), + [anon_sym_unsetenv] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(221), + [sym_ansii_c_string] = ACTIONS(221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(231), + }, + [16] = { + [sym__statements] = STATE(3061), + [sym_redirected_statement] = STATE(1655), + [sym_for_statement] = STATE(1655), + [sym_c_style_for_statement] = STATE(1655), + [sym_while_statement] = STATE(1655), + [sym_if_statement] = STATE(1655), + [sym_case_statement] = STATE(1655), + [sym_function_definition] = STATE(1655), + [sym_compound_statement] = STATE(1655), + [sym_subshell] = STATE(1655), + [sym_pipeline] = STATE(1655), + [sym_list] = STATE(1655), + [sym_negated_command] = STATE(1655), + [sym_test_command] = STATE(1655), + [sym_declaration_command] = STATE(1655), + [sym_unset_command] = STATE(1655), + [sym_command] = STATE(1655), + [sym_command_name] = STATE(205), + [sym_variable_assignment] = STATE(291), + [sym_subscript] = STATE(3237), + [sym_file_redirect] = STATE(771), + [sym_concatenation] = STATE(736), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym__statements_repeat1] = STATE(141), + [aux_sym_command_repeat1] = STATE(771), + [aux_sym__literal_repeat1] = STATE(469), + [sym_word] = ACTIONS(205), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_SEMI_SEMI] = ACTIONS(237), + [anon_sym_SEMI_AMP] = ACTIONS(189), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(191), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(211), + [anon_sym_typeset] = ACTIONS(211), + [anon_sym_export] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(211), + [anon_sym_local] = ACTIONS(211), + [anon_sym_unset] = ACTIONS(213), + [anon_sym_unsetenv] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(221), + [sym_ansii_c_string] = ACTIONS(221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(231), + }, + [17] = { + [sym__statements] = STATE(3058), + [sym_redirected_statement] = STATE(1655), + [sym_for_statement] = STATE(1655), + [sym_c_style_for_statement] = STATE(1655), + [sym_while_statement] = STATE(1655), + [sym_if_statement] = STATE(1655), + [sym_case_statement] = STATE(1655), + [sym_function_definition] = STATE(1655), + [sym_compound_statement] = STATE(1655), + [sym_subshell] = STATE(1655), + [sym_pipeline] = STATE(1655), + [sym_list] = STATE(1655), + [sym_negated_command] = STATE(1655), + [sym_test_command] = STATE(1655), + [sym_declaration_command] = STATE(1655), + [sym_unset_command] = STATE(1655), + [sym_command] = STATE(1655), + [sym_command_name] = STATE(205), + [sym_variable_assignment] = STATE(291), + [sym_subscript] = STATE(3237), + [sym_file_redirect] = STATE(771), + [sym_concatenation] = STATE(736), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym__statements_repeat1] = STATE(141), + [aux_sym_command_repeat1] = STATE(771), + [aux_sym__literal_repeat1] = STATE(469), + [sym_word] = ACTIONS(205), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_SEMI_SEMI] = ACTIONS(239), + [anon_sym_SEMI_AMP] = ACTIONS(183), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(185), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(211), + [anon_sym_typeset] = ACTIONS(211), + [anon_sym_export] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(211), + [anon_sym_local] = ACTIONS(211), + [anon_sym_unset] = ACTIONS(213), + [anon_sym_unsetenv] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(221), + [sym_ansii_c_string] = ACTIONS(221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(231), + }, + [18] = { + [aux_sym__statements2] = STATE(19), + [sym_redirected_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_c_style_for_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_if_statement] = STATE(1689), + [sym_case_statement] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_compound_statement] = STATE(1689), + [sym_subshell] = STATE(1689), + [sym_pipeline] = STATE(1689), + [sym_list] = STATE(1689), + [sym_negated_command] = STATE(1689), + [sym_test_command] = STATE(1689), + [sym_declaration_command] = STATE(1689), + [sym_unset_command] = STATE(1689), + [sym_command] = STATE(1689), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(452), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(241), + [anon_sym_elif] = ACTIONS(241), + [anon_sym_else] = ACTIONS(241), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [19] = { + [aux_sym__statements2] = STATE(20), + [sym_redirected_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_c_style_for_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_if_statement] = STATE(1689), + [sym_case_statement] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_compound_statement] = STATE(1689), + [sym_subshell] = STATE(1689), + [sym_pipeline] = STATE(1689), + [sym_list] = STATE(1689), + [sym_negated_command] = STATE(1689), + [sym_test_command] = STATE(1689), + [sym_declaration_command] = STATE(1689), + [sym_unset_command] = STATE(1689), + [sym_command] = STATE(1689), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(452), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(243), + [anon_sym_elif] = ACTIONS(243), + [anon_sym_else] = ACTIONS(243), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [20] = { + [aux_sym__statements2] = STATE(20), + [sym_redirected_statement] = STATE(1689), + [sym_for_statement] = STATE(1689), + [sym_c_style_for_statement] = STATE(1689), + [sym_while_statement] = STATE(1689), + [sym_if_statement] = STATE(1689), + [sym_case_statement] = STATE(1689), + [sym_function_definition] = STATE(1689), + [sym_compound_statement] = STATE(1689), + [sym_subshell] = STATE(1689), + [sym_pipeline] = STATE(1689), + [sym_list] = STATE(1689), + [sym_negated_command] = STATE(1689), + [sym_test_command] = STATE(1689), + [sym_declaration_command] = STATE(1689), + [sym_unset_command] = STATE(1689), + [sym_command] = STATE(1689), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(452), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(245), + [anon_sym_for] = ACTIONS(248), + [anon_sym_select] = ACTIONS(251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(257), + [anon_sym_if] = ACTIONS(260), + [anon_sym_fi] = ACTIONS(263), + [anon_sym_elif] = ACTIONS(263), + [anon_sym_else] = ACTIONS(263), + [anon_sym_case] = ACTIONS(265), + [anon_sym_function] = ACTIONS(268), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(283), + [anon_sym_declare] = ACTIONS(286), + [anon_sym_typeset] = ACTIONS(286), + [anon_sym_export] = ACTIONS(286), + [anon_sym_readonly] = ACTIONS(286), + [anon_sym_local] = ACTIONS(286), + [anon_sym_unset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(292), + [anon_sym_GT] = ACTIONS(292), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_AMP_GT] = ACTIONS(292), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(292), + [anon_sym_GT_AMP] = ACTIONS(292), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(295), + [sym__special_character] = ACTIONS(298), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_raw_string] = ACTIONS(304), + [sym_ansii_c_string] = ACTIONS(304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(310), + [anon_sym_BQUOTE] = ACTIONS(313), + [anon_sym_LT_LPAREN] = ACTIONS(316), + [anon_sym_GT_LPAREN] = ACTIONS(316), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(319), + [sym_variable_name] = ACTIONS(322), + }, + [21] = { + [sym__statements] = STATE(3303), [sym_redirected_statement] = STATE(1687), [sym_for_statement] = STATE(1687), [sym_c_style_for_statement] = STATE(1687), @@ -20731,61 +11024,8866 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1687), [sym_unset_command] = STATE(1687), [sym_command] = STATE(1687), - [sym_command_name] = STATE(218), - [sym_variable_assignment] = STATE(357), - [sym_subscript] = STATE(3173), - [sym_file_redirect] = STATE(782), - [sym_concatenation] = STATE(778), - [sym_string] = STATE(515), - [sym_simple_expansion] = STATE(515), - [sym_string_expansion] = STATE(515), - [sym_expansion] = STATE(515), - [sym_command_substitution] = STATE(515), - [sym_process_substitution] = STATE(515), - [aux_sym_command_repeat1] = STATE(782), - [aux_sym__literal_repeat1] = STATE(700), - [sym_word] = ACTIONS(7), - [anon_sym_for] = ACTIONS(9), - [anon_sym_LPAREN_LPAREN] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_declare] = ACTIONS(31), - [anon_sym_typeset] = ACTIONS(31), - [anon_sym_export] = ACTIONS(31), - [anon_sym_readonly] = ACTIONS(31), - [anon_sym_local] = ACTIONS(31), - [anon_sym_unset] = ACTIONS(33), - [anon_sym_unsetenv] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(37), - [sym__special_character] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [sym_ansii_c_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_RPAREN] = ACTIONS(325), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), }, - [156] = { + [22] = { + [sym__statements] = STATE(3380), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_RPAREN] = ACTIONS(327), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [23] = { + [sym__statements] = STATE(3368), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_RPAREN] = ACTIONS(329), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [24] = { + [sym__statements] = STATE(3431), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [25] = { + [sym__statements] = STATE(3468), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [26] = { + [sym__statements] = STATE(3334), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [27] = { + [sym__statements] = STATE(3417), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [28] = { + [sym__statements] = STATE(3429), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [29] = { + [sym__statements] = STATE(3448), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2038), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [30] = { + [sym__statements] = STATE(3364), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [31] = { + [aux_sym__statements2] = STATE(35), + [sym_redirected_statement] = STATE(1730), + [sym_for_statement] = STATE(1730), + [sym_c_style_for_statement] = STATE(1730), + [sym_while_statement] = STATE(1730), + [sym_if_statement] = STATE(1730), + [sym_case_statement] = STATE(1730), + [sym_function_definition] = STATE(1730), + [sym_compound_statement] = STATE(1730), + [sym_subshell] = STATE(1730), + [sym_pipeline] = STATE(1730), + [sym_list] = STATE(1730), + [sym_negated_command] = STATE(1730), + [sym_test_command] = STATE(1730), + [sym_declaration_command] = STATE(1730), + [sym_unset_command] = STATE(1730), + [sym_command] = STATE(1730), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(457), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(337), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [32] = { + [aux_sym__statements2] = STATE(32), + [sym_redirected_statement] = STATE(1747), + [sym_for_statement] = STATE(1747), + [sym_c_style_for_statement] = STATE(1747), + [sym_while_statement] = STATE(1747), + [sym_if_statement] = STATE(1747), + [sym_case_statement] = STATE(1747), + [sym_function_definition] = STATE(1747), + [sym_compound_statement] = STATE(1747), + [sym_subshell] = STATE(1747), + [sym_pipeline] = STATE(1747), + [sym_list] = STATE(1747), + [sym_negated_command] = STATE(1747), + [sym_test_command] = STATE(1747), + [sym_declaration_command] = STATE(1747), + [sym_unset_command] = STATE(1747), + [sym_command] = STATE(1747), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(431), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(245), + [anon_sym_for] = ACTIONS(248), + [anon_sym_select] = ACTIONS(251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(257), + [anon_sym_done] = ACTIONS(263), + [anon_sym_if] = ACTIONS(260), + [anon_sym_case] = ACTIONS(265), + [anon_sym_function] = ACTIONS(268), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(283), + [anon_sym_declare] = ACTIONS(286), + [anon_sym_typeset] = ACTIONS(286), + [anon_sym_export] = ACTIONS(286), + [anon_sym_readonly] = ACTIONS(286), + [anon_sym_local] = ACTIONS(286), + [anon_sym_unset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(292), + [anon_sym_GT] = ACTIONS(292), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_AMP_GT] = ACTIONS(292), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(292), + [anon_sym_GT_AMP] = ACTIONS(292), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(295), + [sym__special_character] = ACTIONS(298), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_raw_string] = ACTIONS(304), + [sym_ansii_c_string] = ACTIONS(304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(310), + [anon_sym_BQUOTE] = ACTIONS(313), + [anon_sym_LT_LPAREN] = ACTIONS(316), + [anon_sym_GT_LPAREN] = ACTIONS(316), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(319), + [sym_variable_name] = ACTIONS(322), + }, + [33] = { + [sym__statements] = STATE(3344), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [34] = { + [sym__statements] = STATE(3308), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2033), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [35] = { + [aux_sym__statements2] = STATE(128), + [sym_redirected_statement] = STATE(1730), + [sym_for_statement] = STATE(1730), + [sym_c_style_for_statement] = STATE(1730), + [sym_while_statement] = STATE(1730), + [sym_if_statement] = STATE(1730), + [sym_case_statement] = STATE(1730), + [sym_function_definition] = STATE(1730), + [sym_compound_statement] = STATE(1730), + [sym_subshell] = STATE(1730), + [sym_pipeline] = STATE(1730), + [sym_list] = STATE(1730), + [sym_negated_command] = STATE(1730), + [sym_test_command] = STATE(1730), + [sym_declaration_command] = STATE(1730), + [sym_unset_command] = STATE(1730), + [sym_command] = STATE(1730), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(457), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_fi] = ACTIONS(339), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [36] = { + [sym__statements] = STATE(3343), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [37] = { + [sym__statements] = STATE(3342), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [38] = { + [sym__statements] = STATE(3305), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2022), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [39] = { + [sym__statements] = STATE(3397), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [40] = { + [sym__statements] = STATE(3393), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [41] = { + [sym__statements] = STATE(3391), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1952), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [42] = { + [sym__statements] = STATE(3350), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [43] = { + [sym__statements] = STATE(3348), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [44] = { + [sym__statements] = STATE(3317), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1934), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [45] = { + [sym__statements] = STATE(3415), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [46] = { + [sym__statements] = STATE(3274), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [47] = { + [sym__statements] = STATE(3404), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1924), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [48] = { + [sym__statements] = STATE(3476), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [49] = { + [sym__statements] = STATE(3472), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [50] = { + [sym__statements] = STATE(3464), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1919), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [51] = { + [sym__statements] = STATE(3422), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1930), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [52] = { + [sym__statements] = STATE(3410), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [53] = { + [sym__statements] = STATE(3406), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [54] = { + [sym__statements] = STATE(3386), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1974), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [55] = { + [sym__statements] = STATE(3336), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [56] = { + [sym__statements] = STATE(3320), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [57] = { + [sym__statements] = STATE(3313), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2001), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [58] = { + [sym__statements] = STATE(3280), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [59] = { + [aux_sym__statements2] = STATE(106), + [sym_redirected_statement] = STATE(1698), + [sym_for_statement] = STATE(1698), + [sym_c_style_for_statement] = STATE(1698), + [sym_while_statement] = STATE(1698), + [sym_if_statement] = STATE(1698), + [sym_case_statement] = STATE(1698), + [sym_function_definition] = STATE(1698), + [sym_compound_statement] = STATE(1698), + [sym_subshell] = STATE(1698), + [sym_pipeline] = STATE(1698), + [sym_list] = STATE(1698), + [sym_negated_command] = STATE(1698), + [sym_test_command] = STATE(1698), + [sym_declaration_command] = STATE(1698), + [sym_unset_command] = STATE(1698), + [sym_command] = STATE(1698), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(500), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(341), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [60] = { + [sym__statements] = STATE(3277), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [61] = { + [sym__statements] = STATE(3450), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [62] = { + [sym__statements] = STATE(3275), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2073), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [63] = { + [sym__statements] = STATE(3325), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [64] = { + [sym__statements] = STATE(3333), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [65] = { + [sym__statements] = STATE(3462), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2032), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [66] = { + [sym__statements] = STATE(3324), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [67] = { + [sym__statements] = STATE(3392), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2013), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [68] = { + [sym__statements] = STATE(3331), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [69] = { + [sym__statements] = STATE(3380), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [70] = { + [sym__statements] = STATE(3466), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [71] = { + [sym__statements] = STATE(3457), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2009), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [72] = { + [sym__statements] = STATE(3413), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [73] = { + [sym__statements] = STATE(3412), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [74] = { + [sym__statements] = STATE(3407), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1946), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [75] = { + [sym__statements] = STATE(3357), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [76] = { + [sym__statements] = STATE(3285), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [77] = { + [sym__statements] = STATE(3352), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1912), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [78] = { + [aux_sym__statements2] = STATE(59), + [sym_redirected_statement] = STATE(1698), + [sym_for_statement] = STATE(1698), + [sym_c_style_for_statement] = STATE(1698), + [sym_while_statement] = STATE(1698), + [sym_if_statement] = STATE(1698), + [sym_case_statement] = STATE(1698), + [sym_function_definition] = STATE(1698), + [sym_compound_statement] = STATE(1698), + [sym_subshell] = STATE(1698), + [sym_pipeline] = STATE(1698), + [sym_list] = STATE(1698), + [sym_negated_command] = STATE(1698), + [sym_test_command] = STATE(1698), + [sym_declaration_command] = STATE(1698), + [sym_unset_command] = STATE(1698), + [sym_command] = STATE(1698), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(500), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(343), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [79] = { + [sym__statements] = STATE(3312), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [80] = { + [sym__statements] = STATE(3311), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [81] = { + [sym__statements] = STATE(3310), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1942), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [82] = { + [sym__statements] = STATE(3283), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [83] = { + [sym__statements] = STATE(3284), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [84] = { + [sym__statements] = STATE(3287), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1985), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [85] = { + [sym__statements] = STATE(3355), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [86] = { + [sym__statements] = STATE(3356), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [87] = { + [sym__statements] = STATE(3359), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2016), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [88] = { + [sym__statements] = STATE(3390), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [89] = { + [sym__statements] = STATE(3394), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [90] = { + [sym__statements] = STATE(3395), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2069), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [91] = { + [sym__statements] = STATE(3430), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [92] = { + [aux_sym__statements2] = STATE(32), + [sym_redirected_statement] = STATE(1747), + [sym_for_statement] = STATE(1747), + [sym_c_style_for_statement] = STATE(1747), + [sym_while_statement] = STATE(1747), + [sym_if_statement] = STATE(1747), + [sym_case_statement] = STATE(1747), + [sym_function_definition] = STATE(1747), + [sym_compound_statement] = STATE(1747), + [sym_subshell] = STATE(1747), + [sym_pipeline] = STATE(1747), + [sym_list] = STATE(1747), + [sym_negated_command] = STATE(1747), + [sym_test_command] = STATE(1747), + [sym_declaration_command] = STATE(1747), + [sym_unset_command] = STATE(1747), + [sym_command] = STATE(1747), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(431), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(345), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [93] = { + [sym__statements] = STATE(3322), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [94] = { + [aux_sym__statements2] = STATE(96), + [sym_redirected_statement] = STATE(1698), + [sym_for_statement] = STATE(1698), + [sym_c_style_for_statement] = STATE(1698), + [sym_while_statement] = STATE(1698), + [sym_if_statement] = STATE(1698), + [sym_case_statement] = STATE(1698), + [sym_function_definition] = STATE(1698), + [sym_compound_statement] = STATE(1698), + [sym_subshell] = STATE(1698), + [sym_pipeline] = STATE(1698), + [sym_list] = STATE(1698), + [sym_negated_command] = STATE(1698), + [sym_test_command] = STATE(1698), + [sym_declaration_command] = STATE(1698), + [sym_unset_command] = STATE(1698), + [sym_command] = STATE(1698), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(500), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(347), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [95] = { + [sym__statements] = STATE(3318), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1943), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [96] = { + [aux_sym__statements2] = STATE(106), + [sym_redirected_statement] = STATE(1698), + [sym_for_statement] = STATE(1698), + [sym_c_style_for_statement] = STATE(1698), + [sym_while_statement] = STATE(1698), + [sym_if_statement] = STATE(1698), + [sym_case_statement] = STATE(1698), + [sym_function_definition] = STATE(1698), + [sym_compound_statement] = STATE(1698), + [sym_subshell] = STATE(1698), + [sym_pipeline] = STATE(1698), + [sym_list] = STATE(1698), + [sym_negated_command] = STATE(1698), + [sym_test_command] = STATE(1698), + [sym_declaration_command] = STATE(1698), + [sym_unset_command] = STATE(1698), + [sym_command] = STATE(1698), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(500), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(349), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [97] = { + [sym__statements] = STATE(3438), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1986), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [98] = { + [sym__statements] = STATE(3474), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [99] = { + [sym__statements] = STATE(3475), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [100] = { + [sym__statements] = STATE(3477), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1917), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [101] = { + [aux_sym__statements2] = STATE(103), + [sym_redirected_statement] = STATE(1747), + [sym_for_statement] = STATE(1747), + [sym_c_style_for_statement] = STATE(1747), + [sym_while_statement] = STATE(1747), + [sym_if_statement] = STATE(1747), + [sym_case_statement] = STATE(1747), + [sym_function_definition] = STATE(1747), + [sym_compound_statement] = STATE(1747), + [sym_subshell] = STATE(1747), + [sym_pipeline] = STATE(1747), + [sym_list] = STATE(1747), + [sym_negated_command] = STATE(1747), + [sym_test_command] = STATE(1747), + [sym_declaration_command] = STATE(1747), + [sym_unset_command] = STATE(1747), + [sym_command] = STATE(1747), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(431), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(351), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [102] = { + [sym__statements] = STATE(3469), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [103] = { + [aux_sym__statements2] = STATE(32), + [sym_redirected_statement] = STATE(1747), + [sym_for_statement] = STATE(1747), + [sym_c_style_for_statement] = STATE(1747), + [sym_while_statement] = STATE(1747), + [sym_if_statement] = STATE(1747), + [sym_case_statement] = STATE(1747), + [sym_function_definition] = STATE(1747), + [sym_compound_statement] = STATE(1747), + [sym_subshell] = STATE(1747), + [sym_pipeline] = STATE(1747), + [sym_list] = STATE(1747), + [sym_negated_command] = STATE(1747), + [sym_test_command] = STATE(1747), + [sym_declaration_command] = STATE(1747), + [sym_unset_command] = STATE(1747), + [sym_command] = STATE(1747), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(431), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(353), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [104] = { + [sym__statements] = STATE(3335), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [105] = { + [sym__statements] = STATE(3467), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1923), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [106] = { + [aux_sym__statements2] = STATE(106), + [sym_redirected_statement] = STATE(1698), + [sym_for_statement] = STATE(1698), + [sym_c_style_for_statement] = STATE(1698), + [sym_while_statement] = STATE(1698), + [sym_if_statement] = STATE(1698), + [sym_case_statement] = STATE(1698), + [sym_function_definition] = STATE(1698), + [sym_compound_statement] = STATE(1698), + [sym_subshell] = STATE(1698), + [sym_pipeline] = STATE(1698), + [sym_list] = STATE(1698), + [sym_negated_command] = STATE(1698), + [sym_test_command] = STATE(1698), + [sym_declaration_command] = STATE(1698), + [sym_unset_command] = STATE(1698), + [sym_command] = STATE(1698), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(500), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(245), + [anon_sym_for] = ACTIONS(248), + [anon_sym_select] = ACTIONS(251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(257), + [anon_sym_if] = ACTIONS(260), + [anon_sym_case] = ACTIONS(265), + [anon_sym_function] = ACTIONS(268), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(283), + [anon_sym_declare] = ACTIONS(286), + [anon_sym_typeset] = ACTIONS(286), + [anon_sym_export] = ACTIONS(286), + [anon_sym_readonly] = ACTIONS(286), + [anon_sym_local] = ACTIONS(286), + [anon_sym_unset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(292), + [anon_sym_GT] = ACTIONS(292), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_AMP_GT] = ACTIONS(292), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(292), + [anon_sym_GT_AMP] = ACTIONS(292), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(295), + [sym__special_character] = ACTIONS(298), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_raw_string] = ACTIONS(304), + [sym_ansii_c_string] = ACTIONS(304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(310), + [anon_sym_BQUOTE] = ACTIONS(313), + [anon_sym_LT_LPAREN] = ACTIONS(316), + [anon_sym_GT_LPAREN] = ACTIONS(316), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(319), + [sym_variable_name] = ACTIONS(322), + }, + [107] = { + [sym__statements] = STATE(3315), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [108] = { + [aux_sym__statements2] = STATE(127), + [sym_redirected_statement] = STATE(1698), + [sym_for_statement] = STATE(1698), + [sym_c_style_for_statement] = STATE(1698), + [sym_while_statement] = STATE(1698), + [sym_if_statement] = STATE(1698), + [sym_case_statement] = STATE(1698), + [sym_function_definition] = STATE(1698), + [sym_compound_statement] = STATE(1698), + [sym_subshell] = STATE(1698), + [sym_pipeline] = STATE(1698), + [sym_list] = STATE(1698), + [sym_negated_command] = STATE(1698), + [sym_test_command] = STATE(1698), + [sym_declaration_command] = STATE(1698), + [sym_unset_command] = STATE(1698), + [sym_command] = STATE(1698), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(500), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [109] = { + [sym__statements] = STATE(3447), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [110] = { + [sym__statements] = STATE(3445), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [111] = { + [sym__statements] = STATE(3435), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1971), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [112] = { + [sym__statements] = STATE(3400), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [113] = { + [sym__statements] = STATE(3399), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [114] = { + [sym__statements] = STATE(3396), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2081), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [115] = { + [sym__statements] = STATE(3409), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [116] = { + [sym__statements] = STATE(3361), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [117] = { + [sym__statements] = STATE(3354), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2031), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [118] = { + [sym__statements] = STATE(3326), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [119] = { + [sym__statements] = STATE(3270), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [120] = { + [sym__statements] = STATE(3332), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(1932), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [121] = { + [sym__statements] = STATE(3368), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [122] = { + [sym__statements] = STATE(3316), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [123] = { + [sym__statements] = STATE(3293), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [124] = { + [sym__statements] = STATE(3367), + [sym_redirected_statement] = STATE(1685), + [sym_for_statement] = STATE(1685), + [sym_c_style_for_statement] = STATE(1685), + [sym_while_statement] = STATE(1685), + [sym_if_statement] = STATE(1685), + [sym_case_statement] = STATE(1685), + [sym_function_definition] = STATE(1685), + [sym_compound_statement] = STATE(1685), + [sym_subshell] = STATE(1685), + [sym_pipeline] = STATE(1685), + [sym_list] = STATE(1685), + [sym_negated_command] = STATE(1685), + [sym_test_command] = STATE(1685), + [sym_declaration_command] = STATE(1685), + [sym_unset_command] = STATE(1685), + [sym_command] = STATE(1685), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(535), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(146), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [125] = { + [sym__statements] = STATE(3360), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2044), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [126] = { + [sym__statements] = STATE(3303), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [127] = { + [aux_sym__statements2] = STATE(106), + [sym_redirected_statement] = STATE(1698), + [sym_for_statement] = STATE(1698), + [sym_c_style_for_statement] = STATE(1698), + [sym_while_statement] = STATE(1698), + [sym_if_statement] = STATE(1698), + [sym_case_statement] = STATE(1698), + [sym_function_definition] = STATE(1698), + [sym_compound_statement] = STATE(1698), + [sym_subshell] = STATE(1698), + [sym_pipeline] = STATE(1698), + [sym_list] = STATE(1698), + [sym_negated_command] = STATE(1698), + [sym_test_command] = STATE(1698), + [sym_declaration_command] = STATE(1698), + [sym_unset_command] = STATE(1698), + [sym_command] = STATE(1698), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(500), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_RBRACE] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [128] = { + [aux_sym__statements2] = STATE(128), + [sym_redirected_statement] = STATE(1730), + [sym_for_statement] = STATE(1730), + [sym_c_style_for_statement] = STATE(1730), + [sym_while_statement] = STATE(1730), + [sym_if_statement] = STATE(1730), + [sym_case_statement] = STATE(1730), + [sym_function_definition] = STATE(1730), + [sym_compound_statement] = STATE(1730), + [sym_subshell] = STATE(1730), + [sym_pipeline] = STATE(1730), + [sym_list] = STATE(1730), + [sym_negated_command] = STATE(1730), + [sym_test_command] = STATE(1730), + [sym_declaration_command] = STATE(1730), + [sym_unset_command] = STATE(1730), + [sym_command] = STATE(1730), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(457), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(245), + [anon_sym_for] = ACTIONS(248), + [anon_sym_select] = ACTIONS(251), + [anon_sym_LPAREN_LPAREN] = ACTIONS(254), + [anon_sym_while] = ACTIONS(257), + [anon_sym_if] = ACTIONS(260), + [anon_sym_fi] = ACTIONS(263), + [anon_sym_case] = ACTIONS(265), + [anon_sym_function] = ACTIONS(268), + [anon_sym_LPAREN] = ACTIONS(271), + [anon_sym_LBRACE] = ACTIONS(274), + [anon_sym_BANG] = ACTIONS(277), + [anon_sym_LBRACK] = ACTIONS(280), + [anon_sym_LBRACK_LBRACK] = ACTIONS(283), + [anon_sym_declare] = ACTIONS(286), + [anon_sym_typeset] = ACTIONS(286), + [anon_sym_export] = ACTIONS(286), + [anon_sym_readonly] = ACTIONS(286), + [anon_sym_local] = ACTIONS(286), + [anon_sym_unset] = ACTIONS(289), + [anon_sym_unsetenv] = ACTIONS(289), + [anon_sym_LT] = ACTIONS(292), + [anon_sym_GT] = ACTIONS(292), + [anon_sym_GT_GT] = ACTIONS(292), + [anon_sym_AMP_GT] = ACTIONS(292), + [anon_sym_AMP_GT_GT] = ACTIONS(292), + [anon_sym_LT_AMP] = ACTIONS(292), + [anon_sym_GT_AMP] = ACTIONS(292), + [anon_sym_GT_PIPE] = ACTIONS(292), + [anon_sym_DOLLAR] = ACTIONS(295), + [sym__special_character] = ACTIONS(298), + [anon_sym_DQUOTE] = ACTIONS(301), + [sym_raw_string] = ACTIONS(304), + [sym_ansii_c_string] = ACTIONS(304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(307), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(310), + [anon_sym_BQUOTE] = ACTIONS(313), + [anon_sym_LT_LPAREN] = ACTIONS(316), + [anon_sym_GT_LPAREN] = ACTIONS(316), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(319), + [sym_variable_name] = ACTIONS(322), + }, + [129] = { + [aux_sym__statements2] = STATE(132), + [sym_redirected_statement] = STATE(1747), + [sym_for_statement] = STATE(1747), + [sym_c_style_for_statement] = STATE(1747), + [sym_while_statement] = STATE(1747), + [sym_if_statement] = STATE(1747), + [sym_case_statement] = STATE(1747), + [sym_function_definition] = STATE(1747), + [sym_compound_statement] = STATE(1747), + [sym_subshell] = STATE(1747), + [sym_pipeline] = STATE(1747), + [sym_list] = STATE(1747), + [sym_negated_command] = STATE(1747), + [sym_test_command] = STATE(1747), + [sym_declaration_command] = STATE(1747), + [sym_unset_command] = STATE(1747), + [sym_command] = STATE(1747), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(431), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(359), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [130] = { + [sym__statements] = STATE(3327), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2074), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [131] = { + [sym__statements] = STATE(3363), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(2003), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [132] = { + [aux_sym__statements2] = STATE(32), + [sym_redirected_statement] = STATE(1747), + [sym_for_statement] = STATE(1747), + [sym_c_style_for_statement] = STATE(1747), + [sym_while_statement] = STATE(1747), + [sym_if_statement] = STATE(1747), + [sym_case_statement] = STATE(1747), + [sym_function_definition] = STATE(1747), + [sym_compound_statement] = STATE(1747), + [sym_subshell] = STATE(1747), + [sym_pipeline] = STATE(1747), + [sym_list] = STATE(1747), + [sym_negated_command] = STATE(1747), + [sym_test_command] = STATE(1747), + [sym_declaration_command] = STATE(1747), + [sym_unset_command] = STATE(1747), + [sym_command] = STATE(1747), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(431), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(361), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [133] = { + [aux_sym__statements2] = STATE(92), + [sym_redirected_statement] = STATE(1747), + [sym_for_statement] = STATE(1747), + [sym_c_style_for_statement] = STATE(1747), + [sym_while_statement] = STATE(1747), + [sym_if_statement] = STATE(1747), + [sym_case_statement] = STATE(1747), + [sym_function_definition] = STATE(1747), + [sym_compound_statement] = STATE(1747), + [sym_subshell] = STATE(1747), + [sym_pipeline] = STATE(1747), + [sym_list] = STATE(1747), + [sym_negated_command] = STATE(1747), + [sym_test_command] = STATE(1747), + [sym_declaration_command] = STATE(1747), + [sym_unset_command] = STATE(1747), + [sym_command] = STATE(1747), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(431), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_done] = ACTIONS(363), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [134] = { + [sym__statements] = STATE(3426), + [sym_redirected_statement] = STATE(1687), + [sym_for_statement] = STATE(1687), + [sym_c_style_for_statement] = STATE(1687), + [sym_while_statement] = STATE(1687), + [sym_if_statement] = STATE(1687), + [sym_case_statement] = STATE(1687), + [sym_function_definition] = STATE(1687), + [sym_compound_statement] = STATE(1687), + [sym_subshell] = STATE(1687), + [sym_pipeline] = STATE(1687), + [sym_list] = STATE(1687), + [sym_negated_command] = STATE(1687), + [sym_test_command] = STATE(1687), + [sym_declaration_command] = STATE(1687), + [sym_unset_command] = STATE(1687), + [sym_command] = STATE(1687), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(374), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(140), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [135] = { + [sym__terminated_statement] = STATE(3375), + [sym_redirected_statement] = STATE(1704), + [sym_for_statement] = STATE(1704), + [sym_c_style_for_statement] = STATE(1704), + [sym_while_statement] = STATE(1704), + [sym_if_statement] = STATE(1704), + [sym_case_statement] = STATE(1704), + [sym_function_definition] = STATE(1704), + [sym_compound_statement] = STATE(1704), + [sym_subshell] = STATE(1704), + [sym_pipeline] = STATE(1704), + [sym_list] = STATE(1704), + [sym_negated_command] = STATE(1704), + [sym_test_command] = STATE(1704), + [sym_declaration_command] = STATE(1704), + [sym_unset_command] = STATE(1704), + [sym_command] = STATE(1704), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(501), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [136] = { + [sym__terminated_statement] = STATE(3189), + [sym_redirected_statement] = STATE(1704), + [sym_for_statement] = STATE(1704), + [sym_c_style_for_statement] = STATE(1704), + [sym_while_statement] = STATE(1704), + [sym_if_statement] = STATE(1704), + [sym_case_statement] = STATE(1704), + [sym_function_definition] = STATE(1704), + [sym_compound_statement] = STATE(1704), + [sym_subshell] = STATE(1704), + [sym_pipeline] = STATE(1704), + [sym_list] = STATE(1704), + [sym_negated_command] = STATE(1704), + [sym_test_command] = STATE(1704), + [sym_declaration_command] = STATE(1704), + [sym_unset_command] = STATE(1704), + [sym_command] = STATE(1704), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(501), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [137] = { + [sym__terminated_statement] = STATE(3347), + [sym_redirected_statement] = STATE(1704), + [sym_for_statement] = STATE(1704), + [sym_c_style_for_statement] = STATE(1704), + [sym_while_statement] = STATE(1704), + [sym_if_statement] = STATE(1704), + [sym_case_statement] = STATE(1704), + [sym_function_definition] = STATE(1704), + [sym_compound_statement] = STATE(1704), + [sym_subshell] = STATE(1704), + [sym_pipeline] = STATE(1704), + [sym_list] = STATE(1704), + [sym_negated_command] = STATE(1704), + [sym_test_command] = STATE(1704), + [sym_declaration_command] = STATE(1704), + [sym_unset_command] = STATE(1704), + [sym_command] = STATE(1704), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(501), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [138] = { + [sym__terminated_statement] = STATE(3370), + [sym_redirected_statement] = STATE(1704), + [sym_for_statement] = STATE(1704), + [sym_c_style_for_statement] = STATE(1704), + [sym_while_statement] = STATE(1704), + [sym_if_statement] = STATE(1704), + [sym_case_statement] = STATE(1704), + [sym_function_definition] = STATE(1704), + [sym_compound_statement] = STATE(1704), + [sym_subshell] = STATE(1704), + [sym_pipeline] = STATE(1704), + [sym_list] = STATE(1704), + [sym_negated_command] = STATE(1704), + [sym_test_command] = STATE(1704), + [sym_declaration_command] = STATE(1704), + [sym_unset_command] = STATE(1704), + [sym_command] = STATE(1704), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(501), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [139] = { + [sym__terminated_statement] = STATE(3257), + [sym_redirected_statement] = STATE(1704), + [sym_for_statement] = STATE(1704), + [sym_c_style_for_statement] = STATE(1704), + [sym_while_statement] = STATE(1704), + [sym_if_statement] = STATE(1704), + [sym_case_statement] = STATE(1704), + [sym_function_definition] = STATE(1704), + [sym_compound_statement] = STATE(1704), + [sym_subshell] = STATE(1704), + [sym_pipeline] = STATE(1704), + [sym_list] = STATE(1704), + [sym_negated_command] = STATE(1704), + [sym_test_command] = STATE(1704), + [sym_declaration_command] = STATE(1704), + [sym_unset_command] = STATE(1704), + [sym_command] = STATE(1704), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(501), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [140] = { + [sym_redirected_statement] = STATE(1686), + [sym_for_statement] = STATE(1686), + [sym_c_style_for_statement] = STATE(1686), + [sym_while_statement] = STATE(1686), + [sym_if_statement] = STATE(1686), + [sym_case_statement] = STATE(1686), + [sym_function_definition] = STATE(1686), + [sym_compound_statement] = STATE(1686), + [sym_subshell] = STATE(1686), + [sym_pipeline] = STATE(1686), + [sym_list] = STATE(1686), + [sym_negated_command] = STATE(1686), + [sym_test_command] = STATE(1686), + [sym_declaration_command] = STATE(1686), + [sym_unset_command] = STATE(1686), + [sym_command] = STATE(1686), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(336), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(144), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [141] = { [sym_redirected_statement] = STATE(1653), [sym_for_statement] = STATE(1653), [sym_c_style_for_statement] = STATE(1653), @@ -20802,130 +19900,1219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_declaration_command] = STATE(1653), [sym_unset_command] = STATE(1653), [sym_command] = STATE(1653), - [sym_command_name] = STATE(234), - [sym_variable_assignment] = STATE(497), - [sym_subscript] = STATE(3215), - [sym_file_redirect] = STATE(818), - [sym_concatenation] = STATE(816), - [sym_string] = STATE(441), - [sym_simple_expansion] = STATE(441), - [sym_string_expansion] = STATE(441), - [sym_expansion] = STATE(441), - [sym_command_substitution] = STATE(441), - [sym_process_substitution] = STATE(441), - [aux_sym_command_repeat1] = STATE(818), - [aux_sym__literal_repeat1] = STATE(662), - [sym_word] = ACTIONS(57), - [anon_sym_for] = ACTIONS(59), - [anon_sym_LPAREN_LPAREN] = ACTIONS(61), - [anon_sym_while] = ACTIONS(63), - [anon_sym_if] = ACTIONS(65), - [anon_sym_case] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_LPAREN] = ACTIONS(77), - [anon_sym_LBRACE] = ACTIONS(79), - [anon_sym_BANG] = ACTIONS(324), - [anon_sym_LBRACK] = ACTIONS(83), - [anon_sym_LBRACK_LBRACK] = ACTIONS(85), - [anon_sym_declare] = ACTIONS(326), - [anon_sym_typeset] = ACTIONS(326), - [anon_sym_export] = ACTIONS(326), - [anon_sym_readonly] = ACTIONS(326), - [anon_sym_local] = ACTIONS(326), - [anon_sym_unset] = ACTIONS(328), - [anon_sym_unsetenv] = ACTIONS(328), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(91), - [sym__special_character] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_raw_string] = ACTIONS(97), - [sym_ansii_c_string] = ACTIONS(97), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(99), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(101), - [anon_sym_BQUOTE] = ACTIONS(103), - [anon_sym_LT_LPAREN] = ACTIONS(105), - [anon_sym_GT_LPAREN] = ACTIONS(105), + [sym_command_name] = STATE(205), + [sym_variable_assignment] = STATE(285), + [sym_subscript] = STATE(3237), + [sym_file_redirect] = STATE(771), + [sym_concatenation] = STATE(736), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym__statements_repeat1] = STATE(144), + [aux_sym_command_repeat1] = STATE(771), + [aux_sym__literal_repeat1] = STATE(469), + [sym_word] = ACTIONS(205), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(211), + [anon_sym_typeset] = ACTIONS(211), + [anon_sym_export] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(211), + [anon_sym_local] = ACTIONS(211), + [anon_sym_unset] = ACTIONS(213), + [anon_sym_unsetenv] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(221), + [sym_ansii_c_string] = ACTIONS(221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(229), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(107), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(231), }, - [157] = { - [sym_redirected_statement] = STATE(1688), - [sym_for_statement] = STATE(1688), - [sym_c_style_for_statement] = STATE(1688), - [sym_while_statement] = STATE(1688), - [sym_if_statement] = STATE(1688), - [sym_case_statement] = STATE(1688), - [sym_function_definition] = STATE(1688), - [sym_compound_statement] = STATE(1688), - [sym_subshell] = STATE(1688), - [sym_pipeline] = STATE(1688), - [sym_list] = STATE(1688), - [sym_negated_command] = STATE(1688), - [sym_test_command] = STATE(1688), - [sym_declaration_command] = STATE(1688), - [sym_unset_command] = STATE(1688), - [sym_command] = STATE(1688), - [sym_command_name] = STATE(218), - [sym_variable_assignment] = STATE(317), - [sym_subscript] = STATE(3173), - [sym_file_redirect] = STATE(782), - [sym_concatenation] = STATE(778), + [142] = { + [sym__terminated_statement] = STATE(3219), + [sym_redirected_statement] = STATE(1704), + [sym_for_statement] = STATE(1704), + [sym_c_style_for_statement] = STATE(1704), + [sym_while_statement] = STATE(1704), + [sym_if_statement] = STATE(1704), + [sym_case_statement] = STATE(1704), + [sym_function_definition] = STATE(1704), + [sym_compound_statement] = STATE(1704), + [sym_subshell] = STATE(1704), + [sym_pipeline] = STATE(1704), + [sym_list] = STATE(1704), + [sym_negated_command] = STATE(1704), + [sym_test_command] = STATE(1704), + [sym_declaration_command] = STATE(1704), + [sym_unset_command] = STATE(1704), + [sym_command] = STATE(1704), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(501), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [143] = { + [sym_redirected_statement] = STATE(1651), + [sym_for_statement] = STATE(1651), + [sym_c_style_for_statement] = STATE(1651), + [sym_while_statement] = STATE(1651), + [sym_if_statement] = STATE(1651), + [sym_case_statement] = STATE(1651), + [sym_function_definition] = STATE(1651), + [sym_compound_statement] = STATE(1651), + [sym_subshell] = STATE(1651), + [sym_pipeline] = STATE(1651), + [sym_list] = STATE(1651), + [sym_negated_command] = STATE(1651), + [sym_test_command] = STATE(1651), + [sym_declaration_command] = STATE(1651), + [sym_unset_command] = STATE(1651), + [sym_command] = STATE(1651), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(276), + [sym_subscript] = STATE(3249), + [sym_file_redirect] = STATE(831), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym__statements_repeat1] = STATE(144), + [aux_sym_command_repeat1] = STATE(831), + [aux_sym__literal_repeat1] = STATE(349), + [sym_word] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_typeset] = ACTIONS(157), + [anon_sym_export] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(157), + [anon_sym_local] = ACTIONS(157), + [anon_sym_unset] = ACTIONS(159), + [anon_sym_unsetenv] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(161), + [sym__special_character] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [sym_raw_string] = ACTIONS(167), + [sym_ansii_c_string] = ACTIONS(167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(175), + [anon_sym_GT_LPAREN] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(177), + }, + [144] = { + [sym_redirected_statement] = STATE(1705), + [sym_for_statement] = STATE(1705), + [sym_c_style_for_statement] = STATE(1705), + [sym_while_statement] = STATE(1705), + [sym_if_statement] = STATE(1705), + [sym_case_statement] = STATE(1705), + [sym_function_definition] = STATE(1705), + [sym_compound_statement] = STATE(1705), + [sym_subshell] = STATE(1705), + [sym_pipeline] = STATE(1705), + [sym_list] = STATE(1705), + [sym_negated_command] = STATE(1705), + [sym_test_command] = STATE(1705), + [sym_declaration_command] = STATE(1705), + [sym_unset_command] = STATE(1705), + [sym_command] = STATE(1705), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(533), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(144), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(365), + [anon_sym_for] = ACTIONS(368), + [anon_sym_select] = ACTIONS(371), + [anon_sym_LPAREN_LPAREN] = ACTIONS(374), + [anon_sym_while] = ACTIONS(377), + [anon_sym_if] = ACTIONS(380), + [anon_sym_case] = ACTIONS(383), + [anon_sym_function] = ACTIONS(386), + [anon_sym_LPAREN] = ACTIONS(389), + [anon_sym_LBRACE] = ACTIONS(392), + [anon_sym_BANG] = ACTIONS(395), + [anon_sym_LBRACK] = ACTIONS(398), + [anon_sym_LBRACK_LBRACK] = ACTIONS(401), + [anon_sym_declare] = ACTIONS(404), + [anon_sym_typeset] = ACTIONS(404), + [anon_sym_export] = ACTIONS(404), + [anon_sym_readonly] = ACTIONS(404), + [anon_sym_local] = ACTIONS(404), + [anon_sym_unset] = ACTIONS(407), + [anon_sym_unsetenv] = ACTIONS(407), + [anon_sym_LT] = ACTIONS(410), + [anon_sym_GT] = ACTIONS(410), + [anon_sym_GT_GT] = ACTIONS(410), + [anon_sym_AMP_GT] = ACTIONS(410), + [anon_sym_AMP_GT_GT] = ACTIONS(410), + [anon_sym_LT_AMP] = ACTIONS(410), + [anon_sym_GT_AMP] = ACTIONS(410), + [anon_sym_GT_PIPE] = ACTIONS(410), + [anon_sym_DOLLAR] = ACTIONS(413), + [sym__special_character] = ACTIONS(416), + [anon_sym_DQUOTE] = ACTIONS(419), + [sym_raw_string] = ACTIONS(422), + [sym_ansii_c_string] = ACTIONS(422), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(425), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(428), + [anon_sym_BQUOTE] = ACTIONS(431), + [anon_sym_LT_LPAREN] = ACTIONS(434), + [anon_sym_GT_LPAREN] = ACTIONS(434), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(437), + [sym_variable_name] = ACTIONS(440), + }, + [145] = { + [sym__terminated_statement] = STATE(3389), + [sym_redirected_statement] = STATE(1704), + [sym_for_statement] = STATE(1704), + [sym_c_style_for_statement] = STATE(1704), + [sym_while_statement] = STATE(1704), + [sym_if_statement] = STATE(1704), + [sym_case_statement] = STATE(1704), + [sym_function_definition] = STATE(1704), + [sym_compound_statement] = STATE(1704), + [sym_subshell] = STATE(1704), + [sym_pipeline] = STATE(1704), + [sym_list] = STATE(1704), + [sym_negated_command] = STATE(1704), + [sym_test_command] = STATE(1704), + [sym_declaration_command] = STATE(1704), + [sym_unset_command] = STATE(1704), + [sym_command] = STATE(1704), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(501), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [146] = { + [sym_redirected_statement] = STATE(1671), + [sym_for_statement] = STATE(1671), + [sym_c_style_for_statement] = STATE(1671), + [sym_while_statement] = STATE(1671), + [sym_if_statement] = STATE(1671), + [sym_case_statement] = STATE(1671), + [sym_function_definition] = STATE(1671), + [sym_compound_statement] = STATE(1671), + [sym_subshell] = STATE(1671), + [sym_pipeline] = STATE(1671), + [sym_list] = STATE(1671), + [sym_negated_command] = STATE(1671), + [sym_test_command] = STATE(1671), + [sym_declaration_command] = STATE(1671), + [sym_unset_command] = STATE(1671), + [sym_command] = STATE(1671), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(510), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym__statements_repeat1] = STATE(144), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [147] = { + [sym_redirected_statement] = STATE(1668), + [sym_for_statement] = STATE(1668), + [sym_c_style_for_statement] = STATE(1668), + [sym_while_statement] = STATE(1668), + [sym_if_statement] = STATE(1668), + [sym_case_statement] = STATE(1668), + [sym_function_definition] = STATE(1668), + [sym_compound_statement] = STATE(1668), + [sym_subshell] = STATE(1668), + [sym_pipeline] = STATE(1668), + [sym_list] = STATE(1668), + [sym_negated_command] = STATE(1668), + [sym_test_command] = STATE(1668), + [sym_declaration_command] = STATE(1668), + [sym_unset_command] = STATE(1668), + [sym_command] = STATE(1668), + [sym_command_name] = STATE(224), + [sym_variable_assignment] = STATE(346), + [sym_subscript] = STATE(3176), + [sym_file_redirect] = STATE(763), + [sym_concatenation] = STATE(757), [sym_string] = STATE(515), [sym_simple_expansion] = STATE(515), [sym_string_expansion] = STATE(515), [sym_expansion] = STATE(515), [sym_command_substitution] = STATE(515), [sym_process_substitution] = STATE(515), - [aux_sym_command_repeat1] = STATE(782), - [aux_sym__literal_repeat1] = STATE(700), + [aux_sym__statements_repeat1] = STATE(144), + [aux_sym_command_repeat1] = STATE(763), + [aux_sym__literal_repeat1] = STATE(735), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), - [anon_sym_LPAREN_LPAREN] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_if] = ACTIONS(15), - [anon_sym_case] = ACTIONS(17), - [anon_sym_function] = ACTIONS(19), - [anon_sym_LPAREN] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_BANG] = ACTIONS(25), - [anon_sym_LBRACK] = ACTIONS(27), - [anon_sym_LBRACK_LBRACK] = ACTIONS(29), - [anon_sym_declare] = ACTIONS(31), - [anon_sym_typeset] = ACTIONS(31), - [anon_sym_export] = ACTIONS(31), - [anon_sym_readonly] = ACTIONS(31), - [anon_sym_local] = ACTIONS(31), - [anon_sym_unset] = ACTIONS(33), - [anon_sym_unsetenv] = ACTIONS(33), - [anon_sym_LT] = ACTIONS(35), - [anon_sym_GT] = ACTIONS(35), - [anon_sym_GT_GT] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(35), - [anon_sym_AMP_GT_GT] = ACTIONS(35), - [anon_sym_LT_AMP] = ACTIONS(35), - [anon_sym_GT_AMP] = ACTIONS(35), - [anon_sym_GT_PIPE] = ACTIONS(35), - [anon_sym_DOLLAR] = ACTIONS(37), - [sym__special_character] = ACTIONS(39), - [anon_sym_DQUOTE] = ACTIONS(41), - [sym_raw_string] = ACTIONS(43), - [sym_ansii_c_string] = ACTIONS(43), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(45), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(47), - [anon_sym_BQUOTE] = ACTIONS(49), - [anon_sym_LT_LPAREN] = ACTIONS(51), - [anon_sym_GT_LPAREN] = ACTIONS(51), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(39), + [sym__special_character] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [sym_ansii_c_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(53), - [sym_variable_name] = ACTIONS(55), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(57), + }, + [148] = { + [sym_redirected_statement] = STATE(1681), + [sym_for_statement] = STATE(1681), + [sym_c_style_for_statement] = STATE(1681), + [sym_while_statement] = STATE(1681), + [sym_if_statement] = STATE(1681), + [sym_case_statement] = STATE(1681), + [sym_function_definition] = STATE(1681), + [sym_compound_statement] = STATE(1681), + [sym_subshell] = STATE(1681), + [sym_pipeline] = STATE(1681), + [sym_list] = STATE(1681), + [sym_negated_command] = STATE(1681), + [sym_test_command] = STATE(1681), + [sym_declaration_command] = STATE(1681), + [sym_unset_command] = STATE(1681), + [sym_command] = STATE(1681), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(496), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [149] = { + [sym_redirected_statement] = STATE(1661), + [sym_for_statement] = STATE(1661), + [sym_c_style_for_statement] = STATE(1661), + [sym_while_statement] = STATE(1661), + [sym_if_statement] = STATE(1661), + [sym_case_statement] = STATE(1661), + [sym_function_definition] = STATE(1661), + [sym_compound_statement] = STATE(1661), + [sym_subshell] = STATE(1661), + [sym_pipeline] = STATE(1661), + [sym_list] = STATE(1661), + [sym_negated_command] = STATE(1661), + [sym_test_command] = STATE(1661), + [sym_declaration_command] = STATE(1661), + [sym_unset_command] = STATE(1661), + [sym_command] = STATE(1661), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(324), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [150] = { + [sym_redirected_statement] = STATE(1662), + [sym_for_statement] = STATE(1662), + [sym_c_style_for_statement] = STATE(1662), + [sym_while_statement] = STATE(1662), + [sym_if_statement] = STATE(1662), + [sym_case_statement] = STATE(1662), + [sym_function_definition] = STATE(1662), + [sym_compound_statement] = STATE(1662), + [sym_subshell] = STATE(1662), + [sym_pipeline] = STATE(1662), + [sym_list] = STATE(1662), + [sym_negated_command] = STATE(1662), + [sym_test_command] = STATE(1662), + [sym_declaration_command] = STATE(1662), + [sym_unset_command] = STATE(1662), + [sym_command] = STATE(1662), + [sym_command_name] = STATE(205), + [sym_variable_assignment] = STATE(282), + [sym_subscript] = STATE(3237), + [sym_file_redirect] = STATE(771), + [sym_concatenation] = STATE(736), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym_command_repeat1] = STATE(771), + [aux_sym__literal_repeat1] = STATE(469), + [sym_word] = ACTIONS(205), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(211), + [anon_sym_typeset] = ACTIONS(211), + [anon_sym_export] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(211), + [anon_sym_local] = ACTIONS(211), + [anon_sym_unset] = ACTIONS(213), + [anon_sym_unsetenv] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(221), + [sym_ansii_c_string] = ACTIONS(221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(231), + }, + [151] = { + [sym_redirected_statement] = STATE(1661), + [sym_for_statement] = STATE(1661), + [sym_c_style_for_statement] = STATE(1661), + [sym_while_statement] = STATE(1661), + [sym_if_statement] = STATE(1661), + [sym_case_statement] = STATE(1661), + [sym_function_definition] = STATE(1661), + [sym_compound_statement] = STATE(1661), + [sym_subshell] = STATE(1661), + [sym_pipeline] = STATE(1661), + [sym_list] = STATE(1661), + [sym_negated_command] = STATE(1661), + [sym_test_command] = STATE(1661), + [sym_declaration_command] = STATE(1661), + [sym_unset_command] = STATE(1661), + [sym_command] = STATE(1661), + [sym_command_name] = STATE(243), + [sym_variable_assignment] = STATE(497), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(819), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(819), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(331), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(333), + [anon_sym_typeset] = ACTIONS(333), + [anon_sym_export] = ACTIONS(333), + [anon_sym_readonly] = ACTIONS(333), + [anon_sym_local] = ACTIONS(333), + [anon_sym_unset] = ACTIONS(335), + [anon_sym_unsetenv] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [152] = { + [sym_redirected_statement] = STATE(1648), + [sym_for_statement] = STATE(1648), + [sym_c_style_for_statement] = STATE(1648), + [sym_while_statement] = STATE(1648), + [sym_if_statement] = STATE(1648), + [sym_case_statement] = STATE(1648), + [sym_function_definition] = STATE(1648), + [sym_compound_statement] = STATE(1648), + [sym_subshell] = STATE(1648), + [sym_pipeline] = STATE(1648), + [sym_list] = STATE(1648), + [sym_negated_command] = STATE(1648), + [sym_test_command] = STATE(1648), + [sym_declaration_command] = STATE(1648), + [sym_unset_command] = STATE(1648), + [sym_command] = STATE(1648), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(273), + [sym_subscript] = STATE(3249), + [sym_file_redirect] = STATE(831), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym_command_repeat1] = STATE(831), + [aux_sym__literal_repeat1] = STATE(349), + [sym_word] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_typeset] = ACTIONS(157), + [anon_sym_export] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(157), + [anon_sym_local] = ACTIONS(157), + [anon_sym_unset] = ACTIONS(159), + [anon_sym_unsetenv] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(161), + [sym__special_character] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [sym_raw_string] = ACTIONS(167), + [sym_ansii_c_string] = ACTIONS(167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(175), + [anon_sym_GT_LPAREN] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(177), + }, + [153] = { + [sym_redirected_statement] = STATE(1663), + [sym_for_statement] = STATE(1663), + [sym_c_style_for_statement] = STATE(1663), + [sym_while_statement] = STATE(1663), + [sym_if_statement] = STATE(1663), + [sym_case_statement] = STATE(1663), + [sym_function_definition] = STATE(1663), + [sym_compound_statement] = STATE(1663), + [sym_subshell] = STATE(1663), + [sym_pipeline] = STATE(1663), + [sym_list] = STATE(1663), + [sym_negated_command] = STATE(1663), + [sym_test_command] = STATE(1663), + [sym_declaration_command] = STATE(1663), + [sym_unset_command] = STATE(1663), + [sym_command] = STATE(1663), + [sym_command_name] = STATE(224), + [sym_variable_assignment] = STATE(366), + [sym_subscript] = STATE(3176), + [sym_file_redirect] = STATE(763), + [sym_concatenation] = STATE(757), + [sym_string] = STATE(515), + [sym_simple_expansion] = STATE(515), + [sym_string_expansion] = STATE(515), + [sym_expansion] = STATE(515), + [sym_command_substitution] = STATE(515), + [sym_process_substitution] = STATE(515), + [aux_sym_command_repeat1] = STATE(763), + [aux_sym__literal_repeat1] = STATE(735), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(39), + [sym__special_character] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [sym_ansii_c_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(57), + }, + [154] = { + [sym_redirected_statement] = STATE(1672), + [sym_for_statement] = STATE(1672), + [sym_c_style_for_statement] = STATE(1672), + [sym_while_statement] = STATE(1672), + [sym_if_statement] = STATE(1672), + [sym_case_statement] = STATE(1672), + [sym_function_definition] = STATE(1672), + [sym_compound_statement] = STATE(1672), + [sym_subshell] = STATE(1672), + [sym_pipeline] = STATE(1672), + [sym_list] = STATE(1672), + [sym_negated_command] = STATE(1672), + [sym_test_command] = STATE(1672), + [sym_declaration_command] = STATE(1672), + [sym_unset_command] = STATE(1672), + [sym_command] = STATE(1672), + [sym_command_name] = STATE(224), + [sym_variable_assignment] = STATE(327), + [sym_subscript] = STATE(3176), + [sym_file_redirect] = STATE(763), + [sym_concatenation] = STATE(757), + [sym_string] = STATE(515), + [sym_simple_expansion] = STATE(515), + [sym_string_expansion] = STATE(515), + [sym_expansion] = STATE(515), + [sym_command_substitution] = STATE(515), + [sym_process_substitution] = STATE(515), + [aux_sym_command_repeat1] = STATE(763), + [aux_sym__literal_repeat1] = STATE(735), + [sym_word] = ACTIONS(7), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_if] = ACTIONS(17), + [anon_sym_case] = ACTIONS(19), + [anon_sym_function] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_BANG] = ACTIONS(27), + [anon_sym_LBRACK] = ACTIONS(29), + [anon_sym_LBRACK_LBRACK] = ACTIONS(31), + [anon_sym_declare] = ACTIONS(33), + [anon_sym_typeset] = ACTIONS(33), + [anon_sym_export] = ACTIONS(33), + [anon_sym_readonly] = ACTIONS(33), + [anon_sym_local] = ACTIONS(33), + [anon_sym_unset] = ACTIONS(35), + [anon_sym_unsetenv] = ACTIONS(35), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(39), + [sym__special_character] = ACTIONS(41), + [anon_sym_DQUOTE] = ACTIONS(43), + [sym_raw_string] = ACTIONS(45), + [sym_ansii_c_string] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(47), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(49), + [anon_sym_BQUOTE] = ACTIONS(51), + [anon_sym_LT_LPAREN] = ACTIONS(53), + [anon_sym_GT_LPAREN] = ACTIONS(53), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(57), + }, + [155] = { + [sym_redirected_statement] = STATE(1667), + [sym_for_statement] = STATE(1667), + [sym_c_style_for_statement] = STATE(1667), + [sym_while_statement] = STATE(1667), + [sym_if_statement] = STATE(1667), + [sym_case_statement] = STATE(1667), + [sym_function_definition] = STATE(1667), + [sym_compound_statement] = STATE(1667), + [sym_subshell] = STATE(1667), + [sym_pipeline] = STATE(1667), + [sym_list] = STATE(1667), + [sym_negated_command] = STATE(1667), + [sym_test_command] = STATE(1667), + [sym_declaration_command] = STATE(1667), + [sym_unset_command] = STATE(1667), + [sym_command] = STATE(1667), + [sym_command_name] = STATE(227), + [sym_variable_assignment] = STATE(326), + [sym_subscript] = STATE(3216), + [sym_file_redirect] = STATE(816), + [sym_concatenation] = STATE(817), + [sym_string] = STATE(442), + [sym_simple_expansion] = STATE(442), + [sym_string_expansion] = STATE(442), + [sym_expansion] = STATE(442), + [sym_command_substitution] = STATE(442), + [sym_process_substitution] = STATE(442), + [aux_sym_command_repeat1] = STATE(816), + [aux_sym__literal_repeat1] = STATE(661), + [sym_word] = ACTIONS(59), + [anon_sym_for] = ACTIONS(61), + [anon_sym_select] = ACTIONS(63), + [anon_sym_LPAREN_LPAREN] = ACTIONS(65), + [anon_sym_while] = ACTIONS(67), + [anon_sym_if] = ACTIONS(69), + [anon_sym_case] = ACTIONS(77), + [anon_sym_function] = ACTIONS(79), + [anon_sym_LPAREN] = ACTIONS(81), + [anon_sym_LBRACE] = ACTIONS(83), + [anon_sym_BANG] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(87), + [anon_sym_LBRACK_LBRACK] = ACTIONS(89), + [anon_sym_declare] = ACTIONS(91), + [anon_sym_typeset] = ACTIONS(91), + [anon_sym_export] = ACTIONS(91), + [anon_sym_readonly] = ACTIONS(91), + [anon_sym_local] = ACTIONS(91), + [anon_sym_unset] = ACTIONS(93), + [anon_sym_unsetenv] = ACTIONS(93), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(95), + [sym__special_character] = ACTIONS(97), + [anon_sym_DQUOTE] = ACTIONS(99), + [sym_raw_string] = ACTIONS(101), + [sym_ansii_c_string] = ACTIONS(101), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(105), + [anon_sym_BQUOTE] = ACTIONS(107), + [anon_sym_LT_LPAREN] = ACTIONS(109), + [anon_sym_GT_LPAREN] = ACTIONS(109), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(111), + }, + [156] = { + [sym_redirected_statement] = STATE(1649), + [sym_for_statement] = STATE(1649), + [sym_c_style_for_statement] = STATE(1649), + [sym_while_statement] = STATE(1649), + [sym_if_statement] = STATE(1649), + [sym_case_statement] = STATE(1649), + [sym_function_definition] = STATE(1649), + [sym_compound_statement] = STATE(1649), + [sym_subshell] = STATE(1649), + [sym_pipeline] = STATE(1649), + [sym_list] = STATE(1649), + [sym_negated_command] = STATE(1649), + [sym_test_command] = STATE(1649), + [sym_declaration_command] = STATE(1649), + [sym_unset_command] = STATE(1649), + [sym_command] = STATE(1649), + [sym_command_name] = STATE(173), + [sym_variable_assignment] = STATE(272), + [sym_subscript] = STATE(3249), + [sym_file_redirect] = STATE(831), + [sym_concatenation] = STATE(536), + [sym_string] = STATE(287), + [sym_simple_expansion] = STATE(287), + [sym_string_expansion] = STATE(287), + [sym_expansion] = STATE(287), + [sym_command_substitution] = STATE(287), + [sym_process_substitution] = STATE(287), + [aux_sym_command_repeat1] = STATE(831), + [aux_sym__literal_repeat1] = STATE(349), + [sym_word] = ACTIONS(123), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(157), + [anon_sym_typeset] = ACTIONS(157), + [anon_sym_export] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(157), + [anon_sym_local] = ACTIONS(157), + [anon_sym_unset] = ACTIONS(159), + [anon_sym_unsetenv] = ACTIONS(159), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(161), + [sym__special_character] = ACTIONS(163), + [anon_sym_DQUOTE] = ACTIONS(165), + [sym_raw_string] = ACTIONS(167), + [sym_ansii_c_string] = ACTIONS(167), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(169), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(171), + [anon_sym_BQUOTE] = ACTIONS(173), + [anon_sym_LT_LPAREN] = ACTIONS(175), + [anon_sym_GT_LPAREN] = ACTIONS(175), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(177), + }, + [157] = { + [sym_redirected_statement] = STATE(1656), + [sym_for_statement] = STATE(1656), + [sym_c_style_for_statement] = STATE(1656), + [sym_while_statement] = STATE(1656), + [sym_if_statement] = STATE(1656), + [sym_case_statement] = STATE(1656), + [sym_function_definition] = STATE(1656), + [sym_compound_statement] = STATE(1656), + [sym_subshell] = STATE(1656), + [sym_pipeline] = STATE(1656), + [sym_list] = STATE(1656), + [sym_negated_command] = STATE(1656), + [sym_test_command] = STATE(1656), + [sym_declaration_command] = STATE(1656), + [sym_unset_command] = STATE(1656), + [sym_command] = STATE(1656), + [sym_command_name] = STATE(205), + [sym_variable_assignment] = STATE(283), + [sym_subscript] = STATE(3237), + [sym_file_redirect] = STATE(771), + [sym_concatenation] = STATE(736), + [sym_string] = STATE(330), + [sym_simple_expansion] = STATE(330), + [sym_string_expansion] = STATE(330), + [sym_expansion] = STATE(330), + [sym_command_substitution] = STATE(330), + [sym_process_substitution] = STATE(330), + [aux_sym_command_repeat1] = STATE(771), + [aux_sym__literal_repeat1] = STATE(469), + [sym_word] = ACTIONS(205), + [anon_sym_for] = ACTIONS(125), + [anon_sym_select] = ACTIONS(127), + [anon_sym_LPAREN_LPAREN] = ACTIONS(129), + [anon_sym_while] = ACTIONS(131), + [anon_sym_if] = ACTIONS(133), + [anon_sym_case] = ACTIONS(135), + [anon_sym_function] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(147), + [anon_sym_LBRACE] = ACTIONS(149), + [anon_sym_BANG] = ACTIONS(209), + [anon_sym_LBRACK] = ACTIONS(153), + [anon_sym_LBRACK_LBRACK] = ACTIONS(155), + [anon_sym_declare] = ACTIONS(211), + [anon_sym_typeset] = ACTIONS(211), + [anon_sym_export] = ACTIONS(211), + [anon_sym_readonly] = ACTIONS(211), + [anon_sym_local] = ACTIONS(211), + [anon_sym_unset] = ACTIONS(213), + [anon_sym_unsetenv] = ACTIONS(213), + [anon_sym_LT] = ACTIONS(37), + [anon_sym_GT] = ACTIONS(37), + [anon_sym_GT_GT] = ACTIONS(37), + [anon_sym_AMP_GT] = ACTIONS(37), + [anon_sym_AMP_GT_GT] = ACTIONS(37), + [anon_sym_LT_AMP] = ACTIONS(37), + [anon_sym_GT_AMP] = ACTIONS(37), + [anon_sym_GT_PIPE] = ACTIONS(37), + [anon_sym_DOLLAR] = ACTIONS(215), + [sym__special_character] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(219), + [sym_raw_string] = ACTIONS(221), + [sym_ansii_c_string] = ACTIONS(221), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(223), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(225), + [anon_sym_BQUOTE] = ACTIONS(227), + [anon_sym_LT_LPAREN] = ACTIONS(229), + [anon_sym_GT_LPAREN] = ACTIONS(229), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(55), + [sym_variable_name] = ACTIONS(231), }, }; @@ -20933,32 +21120,32 @@ static const uint16_t ts_small_parse_table[] = { [0] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, - anon_sym_DOLLAR, - ACTIONS(439), 1, - sym__special_character, - ACTIONS(442), 1, - anon_sym_DQUOTE, - ACTIONS(445), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(448), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR, ACTIONS(451), 1, - anon_sym_BQUOTE, + sym__special_character, + ACTIONS(454), 1, + anon_sym_DQUOTE, ACTIONS(457), 1, - aux_sym__simple_variable_name_token1, + anon_sym_DOLLAR_LBRACE, ACTIONS(460), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(463), 1, + anon_sym_BQUOTE, + ACTIONS(469), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(472), 1, sym_file_descriptor, - ACTIONS(462), 1, + ACTIONS(474), 1, sym_variable_name, STATE(361), 1, aux_sym__literal_repeat1, - STATE(3246), 1, + STATE(3244), 1, sym_subscript, - ACTIONS(454), 2, + ACTIONS(466), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(431), 3, + ACTIONS(443), 3, sym_raw_string, sym_ansii_c_string, sym_word, @@ -20966,14 +21153,14 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(282), 6, + STATE(284), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(434), 22, + ACTIONS(446), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -20999,32 +21186,32 @@ static const uint16_t ts_small_parse_table[] = { [83] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 1, + ACTIONS(481), 1, anon_sym_DOLLAR, - ACTIONS(471), 1, - sym__special_character, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(477), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(479), 1, - anon_sym_BQUOTE, ACTIONS(483), 1, - aux_sym__simple_variable_name_token1, + sym__special_character, ACTIONS(485), 1, - sym_file_descriptor, + anon_sym_DQUOTE, ACTIONS(487), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(489), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(491), 1, + anon_sym_BQUOTE, + ACTIONS(495), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(497), 1, + sym_file_descriptor, + ACTIONS(499), 1, sym_variable_name, STATE(361), 1, aux_sym__literal_repeat1, - STATE(3246), 1, + STATE(3244), 1, sym_subscript, - ACTIONS(481), 2, + ACTIONS(493), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(465), 3, + ACTIONS(477), 3, sym_raw_string, sym_ansii_c_string, sym_word, @@ -21032,14 +21219,14 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(282), 6, + STATE(284), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(467), 22, + ACTIONS(479), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -21065,32 +21252,32 @@ static const uint16_t ts_small_parse_table[] = { [166] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 1, + ACTIONS(481), 1, anon_sym_DOLLAR, - ACTIONS(471), 1, + ACTIONS(483), 1, sym__special_character, - ACTIONS(473), 1, + ACTIONS(485), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(477), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(479), 1, - anon_sym_BQUOTE, ACTIONS(487), 1, - sym_variable_name, + anon_sym_DOLLAR_LBRACE, + ACTIONS(489), 1, + anon_sym_DOLLAR_LPAREN, ACTIONS(491), 1, + anon_sym_BQUOTE, + ACTIONS(499), 1, + sym_variable_name, + ACTIONS(503), 1, aux_sym__simple_variable_name_token1, - ACTIONS(493), 1, + ACTIONS(505), 1, sym_file_descriptor, STATE(361), 1, aux_sym__literal_repeat1, - STATE(3246), 1, + STATE(3244), 1, sym_subscript, - ACTIONS(481), 2, + ACTIONS(493), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(465), 3, + ACTIONS(477), 3, sym_raw_string, sym_ansii_c_string, sym_word, @@ -21098,14 +21285,14 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(282), 6, + STATE(284), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(489), 22, + ACTIONS(501), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -21131,442 +21318,260 @@ static const uint16_t ts_small_parse_table[] = { [249] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(511), 1, sym__simple_heredoc_body, - ACTIONS(501), 1, - sym__heredoc_body_beginning, - STATE(2831), 1, - sym_heredoc_body, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(497), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [311] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(499), 1, - sym__simple_heredoc_body, - ACTIONS(501), 1, - sym__heredoc_body_beginning, - STATE(2809), 1, - sym_heredoc_body, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(505), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [373] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(460), 1, - sym_file_descriptor, - ACTIONS(510), 1, - anon_sym_DOLLAR, ACTIONS(513), 1, - sym__special_character, - ACTIONS(516), 1, - anon_sym_DQUOTE, - ACTIONS(519), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(522), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(525), 1, - anon_sym_BQUOTE, - ACTIONS(531), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(534), 1, - sym_variable_name, - STATE(466), 1, - aux_sym__literal_repeat1, - STATE(3233), 1, - sym_subscript, - ACTIONS(528), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(507), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(163), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(294), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(434), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [455] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(157), 1, - anon_sym_DQUOTE, - ACTIONS(541), 1, - sym_raw_string, - ACTIONS(543), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(545), 1, - sym_file_descriptor, - STATE(364), 1, - sym_string, - ACTIONS(539), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [519] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(485), 1, - sym_file_descriptor, - ACTIONS(549), 1, - anon_sym_DOLLAR, - ACTIONS(551), 1, - sym__special_character, - ACTIONS(553), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(557), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(559), 1, - anon_sym_BQUOTE, - ACTIONS(563), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(565), 1, - sym_variable_name, - STATE(466), 1, - aux_sym__literal_repeat1, - STATE(3233), 1, - sym_subscript, - ACTIONS(561), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(166), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(294), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(467), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [601] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(493), 1, - sym_file_descriptor, - ACTIONS(549), 1, - anon_sym_DOLLAR, - ACTIONS(551), 1, - sym__special_character, - ACTIONS(553), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(557), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(559), 1, - anon_sym_BQUOTE, - ACTIONS(565), 1, - sym_variable_name, - ACTIONS(567), 1, - aux_sym__simple_variable_name_token1, - STATE(466), 1, - aux_sym__literal_repeat1, - STATE(3233), 1, - sym_subscript, - ACTIONS(561), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(547), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(163), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(294), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(489), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [683] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(572), 1, - anon_sym_DOLLAR, - ACTIONS(575), 1, - sym__special_character, - ACTIONS(578), 1, - anon_sym_DQUOTE, - ACTIONS(581), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(584), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(587), 1, - anon_sym_BQUOTE, - ACTIONS(593), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(596), 1, - sym_variable_name, - STATE(664), 1, - aux_sym__literal_repeat1, - STATE(3259), 1, - sym_subscript, - ACTIONS(460), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(590), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(569), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(167), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(492), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(434), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [764] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(599), 1, - sym__simple_heredoc_body, - ACTIONS(601), 1, sym__heredoc_body_beginning, - STATE(2970), 1, + STATE(2800), 1, sym_heredoc_body, - ACTIONS(603), 2, + ACTIONS(515), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(252), 40, + ACTIONS(509), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(507), 38, anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [312] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 1, + sym__simple_heredoc_body, + ACTIONS(513), 1, + sym__heredoc_body_beginning, + STATE(2833), 1, + sym_heredoc_body, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(517), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [375] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(505), 1, + sym_file_descriptor, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + sym__special_character, + ACTIONS(525), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(529), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(531), 1, + anon_sym_BQUOTE, + ACTIONS(535), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(537), 1, + sym_variable_name, + STATE(466), 1, + aux_sym__literal_repeat1, + STATE(3234), 1, + sym_subscript, + ACTIONS(533), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(519), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(168), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(345), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(501), 21, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [457] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(497), 1, + sym_file_descriptor, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + sym__special_character, + ACTIONS(525), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(529), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(531), 1, + anon_sym_BQUOTE, + ACTIONS(537), 1, + sym_variable_name, + ACTIONS(539), 1, + aux_sym__simple_variable_name_token1, + STATE(466), 1, + aux_sym__literal_repeat1, + STATE(3234), 1, + sym_subscript, + ACTIONS(533), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(519), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(163), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(345), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(479), 21, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [539] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(541), 1, + sym__simple_heredoc_body, + ACTIONS(543), 1, + sym__heredoc_body_beginning, + STATE(2972), 1, + sym_heredoc_body, + ACTIONS(545), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(263), 41, + anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_if, @@ -21606,519 +21611,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [823] = 16, + [599] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_DOLLAR, - ACTIONS(155), 1, - sym__special_character, - ACTIONS(157), 1, - anon_sym_DQUOTE, - ACTIONS(161), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(163), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(165), 1, - anon_sym_BQUOTE, - ACTIONS(611), 1, - sym_file_descriptor, - STATE(176), 1, - aux_sym_command_repeat2, - STATE(314), 1, - aux_sym__literal_repeat1, - STATE(513), 1, - sym_concatenation, - ACTIONS(167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(609), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(605), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(292), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(607), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [902] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(153), 1, - anon_sym_DOLLAR, - ACTIONS(155), 1, - sym__special_character, - ACTIONS(157), 1, anon_sym_DQUOTE, - ACTIONS(161), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(163), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(165), 1, - anon_sym_BQUOTE, - ACTIONS(615), 1, - sym_file_descriptor, - STATE(175), 1, - aux_sym_command_repeat2, - STATE(314), 1, - aux_sym__literal_repeat1, - STATE(513), 1, - sym_concatenation, - ACTIONS(167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(609), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(605), 3, + ACTIONS(551), 1, sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(292), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(613), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [981] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(619), 1, - anon_sym_DOLLAR, - ACTIONS(621), 1, - sym__special_character, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(627), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_BQUOTE, - ACTIONS(633), 1, + ACTIONS(553), 1, aux_sym__simple_variable_name_token1, - ACTIONS(635), 1, - sym_variable_name, - STATE(664), 1, - aux_sym__literal_repeat1, - STATE(3259), 1, - sym_subscript, - ACTIONS(493), 2, + ACTIONS(555), 1, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(617), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(167), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(492), 6, + STATE(322), 1, sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(489), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1062] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(619), 1, - anon_sym_DOLLAR, - ACTIONS(621), 1, - sym__special_character, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(627), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_BQUOTE, - ACTIONS(635), 1, - sym_variable_name, - ACTIONS(637), 1, - aux_sym__simple_variable_name_token1, - STATE(664), 1, - aux_sym__literal_repeat1, - STATE(3259), 1, - sym_subscript, - ACTIONS(485), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(617), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(171), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(492), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(467), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1143] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(499), 1, - sym__simple_heredoc_body, - ACTIONS(501), 1, - sym__heredoc_body_beginning, - STATE(2888), 1, - sym_heredoc_body, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(497), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [1204] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(485), 1, - sym_file_descriptor, - ACTIONS(641), 1, - anon_sym_DOLLAR, - ACTIONS(643), 1, - sym__special_character, - ACTIONS(645), 1, - anon_sym_DQUOTE, - ACTIONS(647), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(649), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(651), 1, - anon_sym_BQUOTE, - ACTIONS(655), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(657), 1, - sym_variable_name, - STATE(670), 1, - aux_sym__literal_repeat1, - STATE(3253), 1, - sym_subscript, - ACTIONS(653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(639), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(182), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(455), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(467), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1285] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(153), 1, - anon_sym_DOLLAR, - ACTIONS(155), 1, - sym__special_character, - ACTIONS(157), 1, - anon_sym_DQUOTE, - ACTIONS(161), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(163), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(165), 1, - anon_sym_BQUOTE, - ACTIONS(661), 1, - sym_file_descriptor, - STATE(176), 1, - aux_sym_command_repeat2, - STATE(314), 1, - aux_sym__literal_repeat1, - STATE(513), 1, - sym_concatenation, - ACTIONS(167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(609), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(605), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(292), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(659), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1364] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(671), 1, - anon_sym_DOLLAR, - ACTIONS(674), 1, - sym__special_character, - ACTIONS(677), 1, - anon_sym_DQUOTE, - ACTIONS(680), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(683), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(686), 1, - anon_sym_BQUOTE, - ACTIONS(692), 1, - sym_file_descriptor, - STATE(176), 1, - aux_sym_command_repeat2, - STATE(314), 1, - aux_sym__literal_repeat1, - STATE(513), 1, - sym_concatenation, - ACTIONS(668), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(689), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(663), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(292), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(666), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [1443] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(696), 1, - sym_raw_string, - ACTIONS(698), 1, - aux_sym__simple_variable_name_token1, - STATE(374), 1, - sym_string, - ACTIONS(545), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(694), 9, + ACTIONS(549), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -22128,7 +21634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 30, + ACTIONS(547), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -22139,6 +21645,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -22159,24 +21667,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [1506] = 7, + [663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(499), 1, + ACTIONS(511), 1, sym__simple_heredoc_body, - ACTIONS(501), 1, + ACTIONS(513), 1, sym__heredoc_body_beginning, - STATE(2894), 1, + STATE(2872), 1, sym_heredoc_body, - ACTIONS(503), 2, + ACTIONS(515), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(505), 3, + ACTIONS(517), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(495), 37, + ACTIONS(507), 38, anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_if, @@ -22213,47 +21722,231 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [1567] = 16, + [725] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_DOLLAR, - ACTIONS(155), 1, - sym__special_character, - ACTIONS(157), 1, - anon_sym_DQUOTE, - ACTIONS(161), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(163), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(165), 1, - anon_sym_BQUOTE, - ACTIONS(702), 1, + ACTIONS(472), 1, sym_file_descriptor, - STATE(169), 1, - aux_sym_command_repeat2, - STATE(314), 1, + ACTIONS(560), 1, + anon_sym_DOLLAR, + ACTIONS(563), 1, + sym__special_character, + ACTIONS(566), 1, + anon_sym_DQUOTE, + ACTIONS(569), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(572), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(575), 1, + anon_sym_BQUOTE, + ACTIONS(581), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(584), 1, + sym_variable_name, + STATE(466), 1, aux_sym__literal_repeat1, - STATE(513), 1, - sym_concatenation, - ACTIONS(167), 2, + STATE(3234), 1, + sym_subscript, + ACTIONS(578), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(609), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(605), 3, + ACTIONS(557), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(292), 6, + STATE(168), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(345), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(700), 22, + ACTIONS(446), 21, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [807] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(511), 1, + sym__simple_heredoc_body, + ACTIONS(513), 1, + sym__heredoc_body_beginning, + STATE(2851), 1, + sym_heredoc_body, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(509), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [869] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_DOLLAR, + ACTIONS(593), 1, + sym__special_character, + ACTIONS(596), 1, + anon_sym_DQUOTE, + ACTIONS(599), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(602), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(605), 1, + anon_sym_BQUOTE, + ACTIONS(611), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(614), 1, + sym_variable_name, + STATE(663), 1, + aux_sym__literal_repeat1, + STATE(3258), 1, + sym_subscript, + ACTIONS(472), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(608), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(587), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(170), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(492), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(446), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [950] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym__special_character, + ACTIONS(165), 1, + anon_sym_DQUOTE, + ACTIONS(169), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(171), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(173), 1, + anon_sym_BQUOTE, + ACTIONS(623), 1, + sym_file_descriptor, + STATE(178), 1, + aux_sym_command_repeat2, + STATE(319), 1, + aux_sym__literal_repeat1, + STATE(513), 1, + sym_concatenation, + ACTIONS(175), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(621), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(617), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(290), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(619), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -22276,18 +21969,508 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [1646] = 8, + [1029] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(213), 1, + ACTIONS(627), 1, + anon_sym_DOLLAR, + ACTIONS(629), 1, + sym__special_character, + ACTIONS(631), 1, anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(633), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(635), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(637), 1, + anon_sym_BQUOTE, + ACTIONS(641), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(643), 1, + sym_variable_name, + STATE(663), 1, + aux_sym__literal_repeat1, + STATE(3258), 1, + sym_subscript, + ACTIONS(505), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(639), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(625), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(170), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(492), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(501), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [1110] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym__special_character, + ACTIONS(165), 1, + anon_sym_DQUOTE, + ACTIONS(169), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(171), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(173), 1, + anon_sym_BQUOTE, + ACTIONS(647), 1, + sym_file_descriptor, + STATE(174), 1, + aux_sym_command_repeat2, + STATE(319), 1, + aux_sym__literal_repeat1, + STATE(513), 1, + sym_concatenation, + ACTIONS(175), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(621), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(617), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(290), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(645), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [1189] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym__special_character, + ACTIONS(165), 1, + anon_sym_DQUOTE, + ACTIONS(169), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(171), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(173), 1, + anon_sym_BQUOTE, + ACTIONS(651), 1, + sym_file_descriptor, + STATE(175), 1, + aux_sym_command_repeat2, + STATE(319), 1, + aux_sym__literal_repeat1, + STATE(513), 1, + sym_concatenation, + ACTIONS(175), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(621), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(617), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(290), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(649), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [1268] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(661), 1, + anon_sym_DOLLAR, + ACTIONS(664), 1, + sym__special_character, + ACTIONS(667), 1, + anon_sym_DQUOTE, + ACTIONS(670), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(673), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(676), 1, + anon_sym_BQUOTE, + ACTIONS(682), 1, + sym_file_descriptor, + STATE(175), 1, + aux_sym_command_repeat2, + STATE(319), 1, + aux_sym__literal_repeat1, + STATE(513), 1, + sym_concatenation, + ACTIONS(658), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(679), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(653), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(290), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(656), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [1347] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_DOLLAR, + ACTIONS(629), 1, + sym__special_character, + ACTIONS(631), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(635), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(637), 1, + anon_sym_BQUOTE, + ACTIONS(643), 1, + sym_variable_name, + ACTIONS(684), 1, + aux_sym__simple_variable_name_token1, + STATE(663), 1, + aux_sym__literal_repeat1, + STATE(3258), 1, + sym_subscript, + ACTIONS(497), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(639), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(625), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(172), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(492), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(479), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [1428] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(485), 1, + anon_sym_DQUOTE, + ACTIONS(688), 1, + sym_raw_string, + ACTIONS(690), 1, + aux_sym__simple_variable_name_token1, + STATE(375), 1, + sym_string, + ACTIONS(555), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(686), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [1491] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym__special_character, + ACTIONS(165), 1, + anon_sym_DQUOTE, + ACTIONS(169), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(171), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(173), 1, + anon_sym_BQUOTE, + ACTIONS(694), 1, + sym_file_descriptor, + STATE(175), 1, + aux_sym_command_repeat2, + STATE(319), 1, + aux_sym__literal_repeat1, + STATE(513), 1, + sym_concatenation, + ACTIONS(175), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(621), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(617), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(290), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(692), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [1570] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, + anon_sym_DQUOTE, + ACTIONS(700), 1, + sym_raw_string, + ACTIONS(702), 1, + aux_sym__simple_variable_name_token1, + STATE(386), 1, + sym_string, + ACTIONS(555), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(696), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [1633] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(219), 1, + anon_sym_DQUOTE, + ACTIONS(555), 1, sym_file_descriptor, ACTIONS(706), 1, sym_raw_string, ACTIONS(708), 1, aux_sym__simple_variable_name_token1, - STATE(450), 1, + STATE(455), 1, sym_string, ACTIONS(704), 9, anon_sym_BANG, @@ -22299,7 +22482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 31, + ACTIONS(547), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -22331,50 +22514,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [1709] = 17, + [1696] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(460), 1, + ACTIONS(497), 1, sym_file_descriptor, - ACTIONS(713), 1, + ACTIONS(712), 1, anon_sym_DOLLAR, - ACTIONS(716), 1, + ACTIONS(714), 1, sym__special_character, - ACTIONS(719), 1, + ACTIONS(716), 1, anon_sym_DQUOTE, - ACTIONS(722), 1, + ACTIONS(718), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(725), 1, + ACTIONS(720), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(728), 1, + ACTIONS(722), 1, anon_sym_BQUOTE, - ACTIONS(734), 1, + ACTIONS(726), 1, aux_sym__simple_variable_name_token1, - ACTIONS(737), 1, + ACTIONS(728), 1, sym_variable_name, - STATE(670), 1, + STATE(669), 1, aux_sym__literal_repeat1, - STATE(3253), 1, + STATE(3254), 1, sym_subscript, - ACTIONS(731), 2, + ACTIONS(724), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(710), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(181), 3, + STATE(183), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(455), 6, + STATE(456), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(434), 20, + ACTIONS(479), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -22395,50 +22578,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [1790] = 17, + [1777] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, + ACTIONS(472), 1, sym_file_descriptor, - ACTIONS(641), 1, + ACTIONS(733), 1, anon_sym_DOLLAR, - ACTIONS(643), 1, + ACTIONS(736), 1, sym__special_character, - ACTIONS(645), 1, + ACTIONS(739), 1, anon_sym_DQUOTE, - ACTIONS(647), 1, + ACTIONS(742), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(649), 1, + ACTIONS(745), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(651), 1, + ACTIONS(748), 1, anon_sym_BQUOTE, - ACTIONS(657), 1, - sym_variable_name, - ACTIONS(740), 1, + ACTIONS(754), 1, aux_sym__simple_variable_name_token1, - STATE(670), 1, + ACTIONS(757), 1, + sym_variable_name, + STATE(669), 1, aux_sym__literal_repeat1, - STATE(3253), 1, + STATE(3254), 1, sym_subscript, - ACTIONS(653), 2, + ACTIONS(751), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(639), 3, + ACTIONS(730), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(181), 3, + STATE(182), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(455), 6, + STATE(456), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(489), 20, + ACTIONS(446), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -22459,21 +22642,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [1871] = 8, + [1858] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(744), 1, + ACTIONS(505), 1, + sym_file_descriptor, + ACTIONS(712), 1, + anon_sym_DOLLAR, + ACTIONS(714), 1, + sym__special_character, + ACTIONS(716), 1, anon_sym_DQUOTE, - ACTIONS(746), 1, - sym_raw_string, - ACTIONS(748), 1, + ACTIONS(718), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(720), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(722), 1, + anon_sym_BQUOTE, + ACTIONS(728), 1, + sym_variable_name, + ACTIONS(760), 1, aux_sym__simple_variable_name_token1, - STATE(409), 1, + STATE(669), 1, + aux_sym__literal_repeat1, + STATE(3254), 1, + sym_subscript, + ACTIONS(724), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(710), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(182), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(456), 6, sym_string, - ACTIONS(545), 2, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(501), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [1939] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + anon_sym_DOLLAR, + ACTIONS(217), 1, + sym__special_character, + ACTIONS(219), 1, + anon_sym_DQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(225), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(227), 1, + anon_sym_BQUOTE, + ACTIONS(694), 1, + sym_file_descriptor, + STATE(193), 1, + aux_sym_command_repeat2, + STATE(454), 1, + aux_sym__literal_repeat1, + STATE(670), 1, + sym_concatenation, + ACTIONS(229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(764), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(762), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(359), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(692), 21, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2017] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(768), 1, + anon_sym_DQUOTE, + ACTIONS(770), 1, + sym_raw_string, + ACTIONS(772), 1, + aux_sym__simple_variable_name_token1, + STATE(665), 1, + sym_string, + ACTIONS(555), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(742), 9, + ACTIONS(766), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -22483,7 +22792,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 30, + ACTIONS(547), 29, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [2079] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + anon_sym_DOLLAR, + ACTIONS(217), 1, + sym__special_character, + ACTIONS(219), 1, + anon_sym_DQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(225), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(227), 1, + anon_sym_BQUOTE, + ACTIONS(651), 1, + sym_file_descriptor, + STATE(193), 1, + aux_sym_command_repeat2, + STATE(454), 1, + aux_sym__literal_repeat1, + STATE(670), 1, + sym_concatenation, + ACTIONS(229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(764), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(762), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(359), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(649), 21, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2157] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(541), 1, + sym__simple_heredoc_body, + ACTIONS(543), 1, + sym__heredoc_body_beginning, + STATE(2948), 1, + sym_heredoc_body, + ACTIONS(545), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(263), 39, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_fi, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [2215] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(509), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [2269] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(555), 1, + sym_file_descriptor, + ACTIONS(776), 1, + anon_sym_DQUOTE, + ACTIONS(778), 1, + sym_raw_string, + ACTIONS(780), 1, + aux_sym__simple_variable_name_token1, + STATE(397), 1, + sym_string, + ACTIONS(774), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -22514,47 +23040,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [1934] = 16, + [2331] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(209), 1, - anon_sym_DOLLAR, - ACTIONS(211), 1, - sym__special_character, - ACTIONS(213), 1, - anon_sym_DQUOTE, - ACTIONS(217), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(221), 1, - anon_sym_BQUOTE, - ACTIONS(611), 1, + ACTIONS(505), 1, sym_file_descriptor, - STATE(188), 1, - aux_sym_command_repeat2, - STATE(454), 1, + ACTIONS(712), 1, + anon_sym_DOLLAR, + ACTIONS(714), 1, + sym__special_character, + ACTIONS(716), 1, + anon_sym_DQUOTE, + ACTIONS(718), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(720), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(728), 1, + sym_variable_name, + ACTIONS(760), 1, + aux_sym__simple_variable_name_token1, + STATE(669), 1, aux_sym__literal_repeat1, - STATE(673), 1, - sym_concatenation, - ACTIONS(223), 2, + STATE(3254), 1, + sym_subscript, + ACTIONS(724), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(752), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(750), 3, + ACTIONS(710), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(373), 6, + STATE(182), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(456), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(607), 21, + ACTIONS(501), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [2409] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(776), 1, + anon_sym_DQUOTE, + ACTIONS(786), 1, + anon_sym_DOLLAR, + ACTIONS(788), 1, + sym__special_character, + ACTIONS(790), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(792), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(794), 1, + anon_sym_BQUOTE, + ACTIONS(798), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(800), 1, + sym_file_descriptor, + STATE(544), 1, + aux_sym__literal_repeat1, + ACTIONS(796), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(207), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(782), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(368), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(784), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2485] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + anon_sym_DOLLAR, + ACTIONS(217), 1, + sym__special_character, + ACTIONS(219), 1, + anon_sym_DQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(225), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(227), 1, + anon_sym_BQUOTE, + ACTIONS(623), 1, + sym_file_descriptor, + STATE(184), 1, + aux_sym_command_repeat2, + STATE(454), 1, + aux_sym__literal_repeat1, + STATE(670), 1, + sym_concatenation, + ACTIONS(229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(764), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(762), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(359), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(619), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -22576,33 +23225,569 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [2012] = 16, + [2563] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 1, + ACTIONS(682), 1, sym_file_descriptor, - ACTIONS(641), 1, + ACTIONS(808), 1, anon_sym_DOLLAR, - ACTIONS(643), 1, + ACTIONS(811), 1, sym__special_character, - ACTIONS(645), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(647), 1, + ACTIONS(817), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(649), 1, + ACTIONS(820), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(657), 1, - sym_variable_name, - ACTIONS(754), 1, - aux_sym__simple_variable_name_token1, - STATE(670), 1, + ACTIONS(823), 1, + anon_sym_BQUOTE, + STATE(193), 1, + aux_sym_command_repeat2, + STATE(454), 1, aux_sym__literal_repeat1, - STATE(3253), 1, - sym_subscript, - ACTIONS(653), 2, + STATE(670), 1, + sym_concatenation, + ACTIONS(805), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(826), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(639), 3, + ACTIONS(802), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(359), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(656), 21, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [2641] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_RPAREN, + ACTIONS(541), 1, + sym__simple_heredoc_body, + ACTIONS(543), 1, + sym__heredoc_body_beginning, + STATE(2900), 1, + sym_heredoc_body, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [2701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(509), 4, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [2755] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, + ts_builtin_sym_end, + ACTIONS(831), 1, + sym__simple_heredoc_body, + ACTIONS(833), 1, + sym__heredoc_body_beginning, + STATE(2921), 1, + sym_heredoc_body, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [2815] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(831), 1, + sym__simple_heredoc_body, + ACTIONS(833), 1, + sym__heredoc_body_beginning, + ACTIONS(835), 1, + ts_builtin_sym_end, + STATE(2929), 1, + sym_heredoc_body, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [2875] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(517), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [2929] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(841), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(839), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(837), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [2983] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(776), 1, + anon_sym_DQUOTE, + ACTIONS(786), 1, + anon_sym_DOLLAR, + ACTIONS(788), 1, + sym__special_character, + ACTIONS(790), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(792), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(794), 1, + anon_sym_BQUOTE, + ACTIONS(845), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(847), 1, + sym_file_descriptor, + STATE(544), 1, + aux_sym__literal_repeat1, + ACTIONS(796), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(191), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(782), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(368), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(843), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [3059] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(555), 1, + sym_file_descriptor, + ACTIONS(851), 1, + sym_raw_string, + ACTIONS(853), 1, + aux_sym__simple_variable_name_token1, + STATE(633), 1, + sym_string, + ACTIONS(849), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [3121] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(841), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(855), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(837), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [3175] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(497), 1, + sym_file_descriptor, + ACTIONS(712), 1, + anon_sym_DOLLAR, + ACTIONS(714), 1, + sym__special_character, + ACTIONS(716), 1, + anon_sym_DQUOTE, + ACTIONS(718), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(720), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(728), 1, + sym_variable_name, + ACTIONS(857), 1, + aux_sym__simple_variable_name_token1, + STATE(669), 1, + aux_sym__literal_repeat1, + STATE(3254), 1, + sym_subscript, + ACTIONS(724), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(710), 3, sym_raw_string, sym_ansii_c_string, sym_word, @@ -22610,14 +23795,14 @@ static const uint16_t ts_small_parse_table[] = { sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(455), 6, + STATE(456), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(467), 20, + ACTIONS(479), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -22638,40 +23823,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [2090] = 8, + [3253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, - anon_sym_DQUOTE, - ACTIONS(758), 1, - sym_raw_string, - ACTIONS(760), 1, - aux_sym__simple_variable_name_token1, - STATE(487), 1, - sym_string, - ACTIONS(545), 2, + ACTIONS(841), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(756), 9, + ACTIONS(855), 4, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(837), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 29, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -22680,299 +23862,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [2152] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(766), 1, anon_sym_DOLLAR, - ACTIONS(768), 1, sym__special_character, - ACTIONS(770), 1, anon_sym_DQUOTE, - ACTIONS(772), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(774), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(776), 1, - anon_sym_BQUOTE, - ACTIONS(780), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(782), 1, - sym_file_descriptor, - STATE(542), 1, - aux_sym__literal_repeat1, - ACTIONS(778), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(195), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(762), 3, sym_raw_string, sym_ansii_c_string, - sym_word, - STATE(353), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(764), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2228] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(692), 1, - sym_file_descriptor, - ACTIONS(790), 1, - anon_sym_DOLLAR, - ACTIONS(793), 1, - sym__special_character, - ACTIONS(796), 1, - anon_sym_DQUOTE, - ACTIONS(799), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(802), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(805), 1, - anon_sym_BQUOTE, - STATE(188), 1, - aux_sym_command_repeat2, - STATE(454), 1, - aux_sym__literal_repeat1, - STATE(673), 1, - sym_concatenation, - ACTIONS(787), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(808), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(784), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(373), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(666), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2306] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(545), 1, - sym_file_descriptor, - ACTIONS(770), 1, - anon_sym_DQUOTE, - ACTIONS(813), 1, - sym_raw_string, - ACTIONS(815), 1, - aux_sym__simple_variable_name_token1, - STATE(384), 1, - sym_string, - ACTIONS(811), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [2368] = 16, + [3307] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, - sym_file_descriptor, - ACTIONS(641), 1, + ACTIONS(215), 1, anon_sym_DOLLAR, - ACTIONS(643), 1, + ACTIONS(217), 1, sym__special_character, - ACTIONS(645), 1, + ACTIONS(219), 1, anon_sym_DQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(225), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(227), 1, + anon_sym_BQUOTE, ACTIONS(647), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(649), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(657), 1, - sym_variable_name, - ACTIONS(740), 1, - aux_sym__simple_variable_name_token1, - STATE(670), 1, - aux_sym__literal_repeat1, - STATE(3253), 1, - sym_subscript, - ACTIONS(653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(639), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(181), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(455), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(489), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [2446] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(766), 1, - anon_sym_DOLLAR, - ACTIONS(768), 1, - sym__special_character, - ACTIONS(770), 1, - anon_sym_DQUOTE, - ACTIONS(772), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(774), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(776), 1, - anon_sym_BQUOTE, - ACTIONS(819), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(821), 1, sym_file_descriptor, - STATE(542), 1, + STATE(186), 1, + aux_sym_command_repeat2, + STATE(454), 1, aux_sym__literal_repeat1, - ACTIONS(778), 2, + STATE(670), 1, + sym_concatenation, + ACTIONS(229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(187), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, + ACTIONS(764), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, ACTIONS(762), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(353), 6, + STATE(359), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(817), 22, + ACTIONS(645), 21, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -22992,164 +23935,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [2522] = 8, + [3385] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(545), 1, + ACTIONS(841), 2, sym_file_descriptor, - ACTIONS(825), 1, - sym_raw_string, - ACTIONS(827), 1, - aux_sym__simple_variable_name_token1, - STATE(632), 1, - sym_string, - ACTIONS(823), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, + sym_variable_name, + ACTIONS(839), 4, anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [2584] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(41), 1, - anon_sym_DQUOTE, - ACTIONS(831), 1, - sym_raw_string, - ACTIONS(833), 1, - aux_sym__simple_variable_name_token1, - STATE(657), 1, - sym_string, - ACTIONS(545), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(829), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 29, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [2646] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_DOLLAR, - ACTIONS(211), 1, - sym__special_character, - ACTIONS(213), 1, - anon_sym_DQUOTE, - ACTIONS(217), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(221), 1, - anon_sym_BQUOTE, - ACTIONS(615), 1, - sym_file_descriptor, - STATE(198), 1, - aux_sym_command_repeat2, - STATE(454), 1, - aux_sym__literal_repeat1, - STATE(673), 1, - sym_concatenation, - ACTIONS(223), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(752), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(750), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(373), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(613), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(837), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -23158,49 +23974,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2724] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, anon_sym_DOLLAR, - ACTIONS(843), 1, sym__special_character, - ACTIONS(846), 1, anon_sym_DQUOTE, - ACTIONS(849), 1, + sym_raw_string, + sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(852), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(855), 1, anon_sym_BQUOTE, - ACTIONS(861), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(864), 1, - sym_file_descriptor, - STATE(542), 1, - aux_sym__literal_repeat1, - ACTIONS(858), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(195), 2, + sym_word, + [3439] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(864), 1, + anon_sym_DOLLAR, + ACTIONS(867), 1, + sym__special_character, + ACTIONS(870), 1, + anon_sym_DQUOTE, + ACTIONS(873), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(876), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(879), 1, + anon_sym_BQUOTE, + ACTIONS(885), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(888), 1, + sym_file_descriptor, + STATE(544), 1, + aux_sym__literal_repeat1, + ACTIONS(882), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(207), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(835), 3, + ACTIONS(859), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(353), 6, + STATE(368), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(838), 22, + ACTIONS(862), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -23223,197 +24046,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [2800] = 8, + [3515] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(868), 1, - anon_sym_DQUOTE, - ACTIONS(870), 1, - sym_raw_string, - ACTIONS(872), 1, - aux_sym__simple_variable_name_token1, - STATE(666), 1, - sym_string, - ACTIONS(545), 2, + ACTIONS(515), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(866), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 29, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [2862] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_DOLLAR, - ACTIONS(211), 1, - sym__special_character, - ACTIONS(213), 1, - anon_sym_DQUOTE, - ACTIONS(217), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(221), 1, - anon_sym_BQUOTE, - ACTIONS(702), 1, - sym_file_descriptor, - STATE(184), 1, - aux_sym_command_repeat2, - STATE(454), 1, - aux_sym__literal_repeat1, - STATE(673), 1, - sym_concatenation, - ACTIONS(223), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(752), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(750), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(373), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(700), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [2940] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_DOLLAR, - ACTIONS(211), 1, - sym__special_character, - ACTIONS(213), 1, - anon_sym_DQUOTE, - ACTIONS(217), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(221), 1, - anon_sym_BQUOTE, - ACTIONS(661), 1, - sym_file_descriptor, - STATE(188), 1, - aux_sym_command_repeat2, - STATE(454), 1, - aux_sym__literal_repeat1, - STATE(673), 1, - sym_concatenation, - ACTIONS(223), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(752), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(750), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(373), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(659), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3018] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(878), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(876), 4, + ACTIONS(517), 4, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(874), 37, + ACTIONS(507), 38, anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_if, @@ -23450,69 +24096,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3071] = 4, + [3569] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(878), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(876), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(874), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [3124] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(599), 1, + ACTIONS(517), 1, + anon_sym_RPAREN, + ACTIONS(541), 1, sym__simple_heredoc_body, - ACTIONS(601), 1, + ACTIONS(543), 1, sym__heredoc_body_beginning, - STATE(2975), 1, + STATE(2897), 1, sym_heredoc_body, - ACTIONS(603), 2, + ACTIONS(515), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(252), 38, + ACTIONS(507), 38, anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_if, @@ -23520,7 +24120,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_BANG, anon_sym_LBRACK, anon_sym_LBRACK_LBRACK, @@ -23550,144 +24149,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3181] = 16, + [3629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(103), 1, - anon_sym_BQUOTE, - ACTIONS(615), 1, - sym_file_descriptor, - STATE(222), 1, - aux_sym_command_repeat2, - STATE(697), 1, - aux_sym__literal_repeat1, - STATE(783), 1, - sym_concatenation, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(882), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(880), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(476), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(613), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3258] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_DOLLAR, - ACTIONS(39), 1, - sym__special_character, - ACTIONS(41), 1, - anon_sym_DQUOTE, - ACTIONS(45), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(49), 1, - anon_sym_BQUOTE, - STATE(227), 1, - aux_sym_command_repeat2, - STATE(646), 1, - aux_sym__literal_repeat1, - STATE(834), 1, - sym_concatenation, - ACTIONS(51), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(611), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(886), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(884), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(472), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(607), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3335] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(890), 1, - sym_raw_string, - ACTIONS(892), 1, - aux_sym__simple_variable_name_token1, - STATE(620), 1, - sym_string, - ACTIONS(545), 3, + ACTIONS(541), 1, + sym__simple_heredoc_body, + ACTIONS(543), 1, + sym__heredoc_body_beginning, + STATE(2960), 1, + sym_heredoc_body, + ACTIONS(545), 2, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(888), 9, + ACTIONS(263), 39, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_done, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [3687] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(525), 1, + anon_sym_DQUOTE, + ACTIONS(892), 1, + sym_raw_string, + ACTIONS(894), 1, + aux_sym__simple_variable_name_token1, + STATE(489), 1, + sym_string, + ACTIONS(555), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(890), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -23697,11 +24225,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 27, + ACTIONS(547), 29, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -23725,179 +24255,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [3396] = 16, + [3749] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_DOLLAR, - ACTIONS(39), 1, - sym__special_character, - ACTIONS(41), 1, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(45), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(49), 1, - anon_sym_BQUOTE, - STATE(203), 1, - aux_sym_command_repeat2, - STATE(646), 1, - aux_sym__literal_repeat1, - STATE(834), 1, - sym_concatenation, - ACTIONS(51), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(702), 2, + ACTIONS(898), 1, + sym_raw_string, + ACTIONS(900), 1, + aux_sym__simple_variable_name_token1, + STATE(655), 1, + sym_string, + ACTIONS(555), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(886), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(884), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(472), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(700), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [3473] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(505), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [3526] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(878), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(894), 4, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(874), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [3579] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(898), 1, - anon_sym_DQUOTE, - ACTIONS(900), 1, - sym_raw_string, - ACTIONS(902), 1, - aux_sym__simple_variable_name_token1, - STATE(830), 1, - sym_string, - ACTIONS(545), 2, - sym_file_descriptor, - sym_variable_name, ACTIONS(896), 9, anon_sym_BANG, anon_sym_DASH, @@ -23908,84 +24279,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 28, + ACTIONS(547), 29, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [3640] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_DOLLAR, - ACTIONS(39), 1, - sym__special_character, - ACTIONS(41), 1, - anon_sym_DQUOTE, - ACTIONS(45), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(49), 1, - anon_sym_BQUOTE, - STATE(227), 1, - aux_sym_command_repeat2, - STATE(646), 1, - aux_sym__literal_repeat1, - STATE(834), 1, - sym_concatenation, - ACTIONS(51), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(661), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(886), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(884), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(472), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(659), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -23997,48 +24300,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, anon_sym_AMP, - [3717] = 16, + [3811] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(91), 1, + ACTIONS(541), 1, + sym__simple_heredoc_body, + ACTIONS(543), 1, + sym__heredoc_body_beginning, + STATE(2975), 1, + sym_heredoc_body, + ACTIONS(545), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(263), 39, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR, - ACTIONS(93), 1, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [3869] = 16, + ACTIONS(3), 1, + sym_comment, ACTIONS(95), 1, - anon_sym_DQUOTE, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(611), 1, + ACTIONS(694), 1, sym_file_descriptor, - STATE(213), 1, + STATE(216), 1, aux_sym_command_repeat2, - STATE(697), 1, + STATE(734), 1, aux_sym__literal_repeat1, - STATE(783), 1, + STATE(767), 1, sym_concatenation, - ACTIONS(105), 2, + ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(882), 2, + ACTIONS(904), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(880), 3, + ACTIONS(902), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(476), 6, + STATE(477), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(607), 20, + ACTIONS(692), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -24059,71 +24422,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [3794] = 4, + [3946] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(497), 4, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(517), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [3847] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_RPAREN, - ACTIONS(599), 1, + ACTIONS(541), 1, sym__simple_heredoc_body, - ACTIONS(601), 1, + ACTIONS(543), 1, sym__heredoc_body_beginning, - STATE(2897), 1, + STATE(2938), 1, sym_heredoc_body, - ACTIONS(503), 2, + ACTIONS(515), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(495), 37, + ACTIONS(507), 37, anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_if, @@ -24156,51 +24471,50 @@ static const uint16_t ts_small_parse_table[] = { sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3906] = 16, + [4005] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(692), 1, + ACTIONS(682), 1, sym_file_descriptor, - ACTIONS(910), 1, + ACTIONS(912), 1, anon_sym_DOLLAR, - ACTIONS(913), 1, + ACTIONS(915), 1, sym__special_character, - ACTIONS(916), 1, + ACTIONS(918), 1, anon_sym_DQUOTE, - ACTIONS(919), 1, + ACTIONS(921), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(922), 1, + ACTIONS(924), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(925), 1, + ACTIONS(927), 1, anon_sym_BQUOTE, - STATE(213), 1, + STATE(216), 1, aux_sym_command_repeat2, - STATE(697), 1, + STATE(734), 1, aux_sym__literal_repeat1, - STATE(783), 1, + STATE(767), 1, sym_concatenation, - ACTIONS(907), 2, + ACTIONS(909), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(928), 2, + ACTIONS(930), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(904), 3, + ACTIONS(906), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(476), 6, + STATE(477), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(666), 20, + ACTIONS(656), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -24221,131 +24535,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [3983] = 15, + [4082] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(782), 1, - sym_file_descriptor, - ACTIONS(933), 1, - anon_sym_DOLLAR, ACTIONS(935), 1, - sym__special_character, - ACTIONS(937), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(941), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(943), 1, - anon_sym_BQUOTE, - ACTIONS(947), 1, - aux_sym__simple_variable_name_token1, - STATE(739), 1, - aux_sym__literal_repeat1, - ACTIONS(945), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(217), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(931), 3, + ACTIONS(937), 1, sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(465), 6, + ACTIONS(939), 1, + aux_sym__simple_variable_name_token1, + STATE(832), 1, sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(764), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4058] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(599), 1, - sym__simple_heredoc_body, - ACTIONS(601), 1, - sym__heredoc_body_beginning, - STATE(2948), 1, - sym_heredoc_body, - ACTIONS(603), 2, + ACTIONS(555), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(252), 38, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_fi, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4115] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(545), 1, - sym_file_descriptor, - ACTIONS(937), 1, - anon_sym_DQUOTE, - ACTIONS(951), 1, - sym_raw_string, - ACTIONS(953), 1, - aux_sym__simple_variable_name_token1, - STATE(647), 1, - sym_string, - ACTIONS(949), 9, + ACTIONS(933), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -24355,13 +24559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 29, + ACTIONS(547), 28, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -24385,34 +24588,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [4176] = 15, + [4143] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(864), 1, - sym_file_descriptor, - ACTIONS(958), 1, - anon_sym_DOLLAR, - ACTIONS(961), 1, - sym__special_character, - ACTIONS(964), 1, - anon_sym_DQUOTE, - ACTIONS(967), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(970), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(973), 1, + ACTIONS(509), 1, anon_sym_BQUOTE, - ACTIONS(979), 1, - aux_sym__simple_variable_name_token1, - STATE(739), 1, - aux_sym__literal_repeat1, - ACTIONS(976), 2, + ACTIONS(541), 1, + sym__simple_heredoc_body, + ACTIONS(543), 1, + sym__heredoc_body_beginning, + STATE(2896), 1, + sym_heredoc_body, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(507), 37, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(217), 2, + sym_word, + [4202] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(947), 1, + anon_sym_DOLLAR, + ACTIONS(950), 1, + sym__special_character, + ACTIONS(953), 1, + anon_sym_DQUOTE, + ACTIONS(956), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(959), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(962), 1, + anon_sym_BQUOTE, + STATE(219), 1, + aux_sym_command_repeat2, + STATE(645), 1, + aux_sym__literal_repeat1, + STATE(836), 1, + sym_concatenation, + ACTIONS(682), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(944), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(965), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(941), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(470), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(656), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4279] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(800), 1, + sym_file_descriptor, + ACTIONS(970), 1, + anon_sym_DOLLAR, + ACTIONS(972), 1, + sym__special_character, + ACTIONS(974), 1, + anon_sym_DQUOTE, + ACTIONS(976), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(978), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(980), 1, + anon_sym_BQUOTE, + ACTIONS(984), 1, + aux_sym__simple_variable_name_token1, + STATE(745), 1, + aux_sym__literal_repeat1, + ACTIONS(982), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(228), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(955), 3, + ACTIONS(968), 3, sym_raw_string, sym_ansii_c_string, sym_word, @@ -24423,7 +24739,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(838), 21, + ACTIONS(784), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -24445,48 +24761,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [4251] = 16, + [4354] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(541), 1, + sym__simple_heredoc_body, + ACTIONS(543), 1, + sym__heredoc_body_beginning, + STATE(2990), 1, + sym_heredoc_body, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [4411] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(716), 1, + anon_sym_DQUOTE, + ACTIONS(988), 1, + sym_raw_string, + ACTIONS(990), 1, + aux_sym__simple_variable_name_token1, + STATE(575), 1, + sym_string, + ACTIONS(555), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(986), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 28, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [4472] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(555), 1, + sym_file_descriptor, + ACTIONS(974), 1, + anon_sym_DQUOTE, + ACTIONS(994), 1, + sym_raw_string, + ACTIONS(996), 1, + aux_sym__simple_variable_name_token1, + STATE(647), 1, + sym_string, + ACTIONS(992), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 29, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [4533] = 16, + ACTIONS(3), 1, + sym_comment, ACTIONS(39), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(41), 1, + sym__special_character, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(45), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(47), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, anon_sym_BQUOTE, - STATE(209), 1, + STATE(231), 1, aux_sym_command_repeat2, - STATE(646), 1, + STATE(645), 1, aux_sym__literal_repeat1, - STATE(834), 1, + STATE(836), 1, sym_concatenation, - ACTIONS(51), 2, + ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(615), 2, + ACTIONS(647), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(886), 2, + ACTIONS(1000), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(884), 3, + ACTIONS(998), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(472), 6, + STATE(470), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(613), 19, + ACTIONS(645), 19, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -24506,25 +24979,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [4328] = 7, + [4610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, - anon_sym_RPAREN, - ACTIONS(599), 1, - sym__simple_heredoc_body, - ACTIONS(601), 1, - sym__heredoc_body_beginning, - STATE(2899), 1, - sym_heredoc_body, - ACTIONS(503), 2, + ACTIONS(545), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(495), 37, + ACTIONS(263), 41, anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_case, anon_sym_function, anon_sym_LPAREN, @@ -24558,36 +25027,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4387] = 4, + [4661] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(503), 2, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, + anon_sym_BQUOTE, + ACTIONS(651), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(505), 4, + STATE(216), 1, + aux_sym_command_repeat2, + STATE(734), 1, + aux_sym__literal_repeat1, + STATE(767), 1, + sym_concatenation, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(904), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(902), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(477), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(649), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4738] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, + anon_sym_BQUOTE, + ACTIONS(647), 1, + sym_file_descriptor, + STATE(226), 1, + aux_sym_command_repeat2, + STATE(734), 1, + aux_sym__literal_repeat1, + STATE(767), 1, + sym_concatenation, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(904), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(902), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(477), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(645), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4815] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + sym_file_descriptor, + ACTIONS(1005), 1, + anon_sym_DOLLAR, + ACTIONS(1008), 1, + sym__special_character, + ACTIONS(1011), 1, + anon_sym_DQUOTE, + ACTIONS(1014), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1017), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1020), 1, + anon_sym_BQUOTE, + ACTIONS(1026), 1, + aux_sym__simple_variable_name_token1, + STATE(745), 1, + aux_sym__literal_repeat1, + ACTIONS(1023), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(228), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1002), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(465), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(862), 21, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -24596,110 +25205,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4440] = 7, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4890] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 1, - ts_builtin_sym_end, - ACTIONS(984), 1, - sym__simple_heredoc_body, - ACTIONS(986), 1, - sym__heredoc_body_beginning, - STATE(2926), 1, - sym_heredoc_body, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(39), 1, anon_sym_DOLLAR, + ACTIONS(41), 1, sym__special_character, + ACTIONS(43), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(49), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4499] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(103), 1, - anon_sym_BQUOTE, - ACTIONS(661), 1, - sym_file_descriptor, - STATE(213), 1, + STATE(219), 1, aux_sym_command_repeat2, - STATE(697), 1, + STATE(645), 1, aux_sym__literal_repeat1, - STATE(783), 1, + STATE(836), 1, sym_concatenation, - ACTIONS(105), 2, + ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(882), 2, + ACTIONS(694), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1000), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(880), 3, + ACTIONS(998), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(476), 6, + STATE(470), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(659), 20, + ACTIONS(692), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [4967] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(847), 1, + sym_file_descriptor, + ACTIONS(970), 1, + anon_sym_DOLLAR, + ACTIONS(972), 1, + sym__special_character, + ACTIONS(974), 1, + anon_sym_DQUOTE, + ACTIONS(976), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(978), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(980), 1, + anon_sym_BQUOTE, + ACTIONS(1029), 1, + aux_sym__simple_variable_name_token1, + STATE(745), 1, + aux_sym__literal_repeat1, + ACTIONS(982), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(220), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(968), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(465), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(843), 21, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5042] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_DOLLAR, + ACTIONS(41), 1, + sym__special_character, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, + anon_sym_BQUOTE, + STATE(219), 1, + aux_sym_command_repeat2, + STATE(645), 1, + aux_sym__literal_repeat1, + STATE(836), 1, + sym_concatenation, + ACTIONS(53), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(651), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1000), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(998), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(470), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(649), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5119] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, + anon_sym_BQUOTE, + ACTIONS(623), 1, + sym_file_descriptor, + STATE(214), 1, + aux_sym_command_repeat2, + STATE(734), 1, + aux_sym__literal_repeat1, + STATE(767), 1, + sym_concatenation, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(904), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(902), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(477), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(619), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -24720,20 +25452,1121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [4576] = 6, + [5196] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(599), 1, - sym__simple_heredoc_body, - ACTIONS(601), 1, - sym__heredoc_body_beginning, - STATE(2962), 1, - sym_heredoc_body, - ACTIONS(603), 2, + ACTIONS(39), 1, + anon_sym_DOLLAR, + ACTIONS(41), 1, + sym__special_character, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, + anon_sym_BQUOTE, + STATE(229), 1, + aux_sym_command_repeat2, + STATE(645), 1, + aux_sym__literal_repeat1, + STATE(836), 1, + sym_concatenation, + ACTIONS(53), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(623), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1000), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(998), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(470), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(619), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5273] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(1035), 1, + sym_raw_string, + ACTIONS(1037), 1, + aux_sym__simple_variable_name_token1, + STATE(844), 1, + sym_string, + ACTIONS(555), 3, sym_file_descriptor, sym_variable_name, - ACTIONS(252), 38, + ts_builtin_sym_end, + ACTIONS(1031), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 27, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [5334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1041), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1039), 41, anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [5385] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(631), 1, + anon_sym_DQUOTE, + ACTIONS(1045), 1, + sym_raw_string, + ACTIONS(1047), 1, + aux_sym__simple_variable_name_token1, + STATE(620), 1, + sym_string, + ACTIONS(555), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1043), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 27, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [5446] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(555), 1, + sym_file_descriptor, + ACTIONS(1051), 1, + anon_sym_DQUOTE, + ACTIONS(1053), 1, + sym_raw_string, + ACTIONS(1055), 1, + aux_sym__simple_variable_name_token1, + STATE(752), 1, + sym_string, + ACTIONS(1049), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 28, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [5506] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1060), 1, + anon_sym_DOLLAR, + ACTIONS(1063), 1, + sym__special_character, + ACTIONS(1066), 1, + anon_sym_DQUOTE, + ACTIONS(1069), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1072), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1075), 1, + anon_sym_BQUOTE, + ACTIONS(1081), 1, + aux_sym__simple_variable_name_token1, + STATE(820), 1, + aux_sym__literal_repeat1, + ACTIONS(888), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1078), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(238), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1057), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(659), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(862), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5580] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(694), 1, + sym_file_descriptor, + STATE(216), 1, + aux_sym_command_repeat2, + STATE(734), 1, + aux_sym__literal_repeat1, + STATE(767), 1, + sym_concatenation, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(904), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(902), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(477), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(692), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [5654] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1086), 1, + anon_sym_DOLLAR, + ACTIONS(1088), 1, + sym__special_character, + ACTIONS(1090), 1, + anon_sym_DQUOTE, + ACTIONS(1092), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1094), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1096), 1, + anon_sym_BQUOTE, + ACTIONS(1100), 1, + aux_sym__simple_variable_name_token1, + STATE(820), 1, + aux_sym__literal_repeat1, + ACTIONS(800), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1098), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(238), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1084), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(659), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(784), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5728] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(800), 1, + sym_file_descriptor, + ACTIONS(1051), 1, + anon_sym_DQUOTE, + ACTIONS(1104), 1, + anon_sym_DOLLAR, + ACTIONS(1106), 1, + sym__special_character, + ACTIONS(1108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1112), 1, + anon_sym_BQUOTE, + ACTIONS(1116), 1, + aux_sym__simple_variable_name_token1, + STATE(794), 1, + aux_sym__literal_repeat1, + ACTIONS(1114), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(245), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1102), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(671), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(784), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5802] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1086), 1, + anon_sym_DOLLAR, + ACTIONS(1088), 1, + sym__special_character, + ACTIONS(1090), 1, + anon_sym_DQUOTE, + ACTIONS(1092), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1094), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1096), 1, + anon_sym_BQUOTE, + ACTIONS(1118), 1, + aux_sym__simple_variable_name_token1, + STATE(820), 1, + aux_sym__literal_repeat1, + ACTIONS(847), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1098), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(240), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1084), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(659), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(843), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [5876] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(647), 1, + sym_file_descriptor, + STATE(247), 1, + aux_sym_command_repeat2, + STATE(734), 1, + aux_sym__literal_repeat1, + STATE(767), 1, + sym_concatenation, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(904), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(902), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(477), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(645), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [5950] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(847), 1, + sym_file_descriptor, + ACTIONS(1051), 1, + anon_sym_DQUOTE, + ACTIONS(1104), 1, + anon_sym_DOLLAR, + ACTIONS(1106), 1, + sym__special_character, + ACTIONS(1108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1112), 1, + anon_sym_BQUOTE, + ACTIONS(1120), 1, + aux_sym__simple_variable_name_token1, + STATE(794), 1, + aux_sym__literal_repeat1, + ACTIONS(1114), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(241), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1102), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(671), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(843), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [6024] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(888), 1, + sym_file_descriptor, + ACTIONS(1125), 1, + anon_sym_DOLLAR, + ACTIONS(1128), 1, + sym__special_character, + ACTIONS(1131), 1, + anon_sym_DQUOTE, + ACTIONS(1134), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1137), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1140), 1, + anon_sym_BQUOTE, + ACTIONS(1146), 1, + aux_sym__simple_variable_name_token1, + STATE(794), 1, + aux_sym__literal_repeat1, + ACTIONS(1143), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(245), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1122), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(671), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(862), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [6098] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(623), 1, + sym_file_descriptor, + STATE(239), 1, + aux_sym_command_repeat2, + STATE(734), 1, + aux_sym__literal_repeat1, + STATE(767), 1, + sym_concatenation, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(904), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(902), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(477), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(619), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [6172] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(651), 1, + sym_file_descriptor, + STATE(216), 1, + aux_sym_command_repeat2, + STATE(734), 1, + aux_sym__literal_repeat1, + STATE(767), 1, + sym_concatenation, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(904), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(902), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(477), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(649), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [6246] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 1, + anon_sym_DQUOTE, + ACTIONS(1151), 1, + sym_raw_string, + ACTIONS(1153), 1, + aux_sym__simple_variable_name_token1, + STATE(760), 1, + sym_string, + ACTIONS(555), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1149), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 27, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [6306] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1155), 1, + ts_builtin_sym_end, + ACTIONS(841), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(837), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6357] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(800), 1, + sym_file_descriptor, + ACTIONS(1051), 1, + anon_sym_DQUOTE, + ACTIONS(1104), 1, + anon_sym_DOLLAR, + ACTIONS(1106), 1, + sym__special_character, + ACTIONS(1108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1116), 1, + aux_sym__simple_variable_name_token1, + STATE(794), 1, + aux_sym__literal_repeat1, + ACTIONS(1114), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(245), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(1102), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(671), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(784), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [6428] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1157), 1, + ts_builtin_sym_end, + ACTIONS(841), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(837), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1041), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1039), 39, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(545), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(263), 39, + anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_done, @@ -24771,1690 +26604,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4633] = 8, + [6577] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, - anon_sym_DQUOTE, - ACTIONS(990), 1, - sym_raw_string, - ACTIONS(992), 1, - aux_sym__simple_variable_name_token1, - STATE(572), 1, - sym_string, - ACTIONS(545), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(988), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 28, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [4694] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(984), 1, - sym__simple_heredoc_body, - ACTIONS(986), 1, - sym__heredoc_body_beginning, - ACTIONS(994), 1, - ts_builtin_sym_end, - STATE(2916), 1, - sym_heredoc_body, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(495), 37, - anon_sym_for, + ACTIONS(13), 1, anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, + ACTIONS(23), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [4753] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(821), 1, - sym_file_descriptor, - ACTIONS(933), 1, - anon_sym_DOLLAR, - ACTIONS(935), 1, - sym__special_character, - ACTIONS(937), 1, - anon_sym_DQUOTE, - ACTIONS(939), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(941), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(943), 1, - anon_sym_BQUOTE, - ACTIONS(996), 1, - aux_sym__simple_variable_name_token1, - STATE(739), 1, - aux_sym__literal_repeat1, - ACTIONS(945), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(214), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(931), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(465), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(817), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4828] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1004), 1, - anon_sym_DOLLAR, - ACTIONS(1007), 1, - sym__special_character, - ACTIONS(1010), 1, - anon_sym_DQUOTE, - ACTIONS(1013), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1016), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1019), 1, - anon_sym_BQUOTE, - STATE(227), 1, - aux_sym_command_repeat2, - STATE(646), 1, - aux_sym__literal_repeat1, - STATE(834), 1, - sym_concatenation, - ACTIONS(692), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1001), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(1022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(998), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(472), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(666), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4905] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(103), 1, - anon_sym_BQUOTE, - ACTIONS(702), 1, - sym_file_descriptor, - STATE(210), 1, - aux_sym_command_repeat2, - STATE(697), 1, - aux_sym__literal_repeat1, - STATE(783), 1, - sym_concatenation, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(882), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(880), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(476), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(700), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [4982] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 1, - anon_sym_DQUOTE, - ACTIONS(1029), 1, - sym_raw_string, - ACTIONS(1031), 1, - aux_sym__simple_variable_name_token1, - STATE(843), 1, - sym_string, - ACTIONS(545), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1025), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 27, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [5043] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(878), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(894), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(874), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5096] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(497), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5149] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(661), 1, - sym_file_descriptor, - STATE(213), 1, - aux_sym_command_repeat2, - STATE(697), 1, - aux_sym__literal_repeat1, - STATE(783), 1, - sym_concatenation, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(882), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(880), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(476), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(659), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [5223] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1036), 1, - anon_sym_DOLLAR, - ACTIONS(1039), 1, - sym__special_character, - ACTIONS(1042), 1, - anon_sym_DQUOTE, - ACTIONS(1045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1048), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1051), 1, - anon_sym_BQUOTE, - ACTIONS(1057), 1, - aux_sym__simple_variable_name_token1, - STATE(817), 1, - aux_sym__literal_repeat1, - ACTIONS(864), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1054), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(233), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1033), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(663), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(838), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [5297] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(615), 1, - sym_file_descriptor, - STATE(232), 1, - aux_sym_command_repeat2, - STATE(697), 1, - aux_sym__literal_repeat1, - STATE(783), 1, - sym_concatenation, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(882), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(880), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(476), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(613), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [5371] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1062), 1, - anon_sym_DQUOTE, - ACTIONS(1064), 1, - sym_raw_string, - ACTIONS(1066), 1, - aux_sym__simple_variable_name_token1, - STATE(762), 1, - sym_string, - ACTIONS(545), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1060), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 27, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [5431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1070), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1068), 40, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5481] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(702), 1, - sym_file_descriptor, - STATE(239), 1, - aux_sym_command_repeat2, - STATE(697), 1, - aux_sym__literal_repeat1, - STATE(783), 1, - sym_concatenation, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(882), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(880), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(476), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(700), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [5555] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1062), 1, - anon_sym_DQUOTE, - ACTIONS(1074), 1, - anon_sym_DOLLAR, - ACTIONS(1076), 1, - sym__special_character, - ACTIONS(1078), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1080), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1082), 1, - anon_sym_BQUOTE, - ACTIONS(1086), 1, - aux_sym__simple_variable_name_token1, - STATE(817), 1, - aux_sym__literal_repeat1, - ACTIONS(782), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1084), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(233), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1072), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(663), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(764), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [5629] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(611), 1, - sym_file_descriptor, - STATE(213), 1, - aux_sym_command_repeat2, - STATE(697), 1, - aux_sym__literal_repeat1, - STATE(783), 1, - sym_concatenation, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(882), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(880), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(476), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(607), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [5703] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - sym__simple_heredoc_body, - ACTIONS(601), 1, - sym__heredoc_body_beginning, - STATE(2939), 1, - sym_heredoc_body, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(495), 36, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5761] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(599), 1, - sym__simple_heredoc_body, - ACTIONS(601), 1, - sym__heredoc_body_beginning, - STATE(2982), 1, - sym_heredoc_body, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5817] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(545), 1, - sym_file_descriptor, - ACTIONS(1090), 1, - anon_sym_DQUOTE, - ACTIONS(1092), 1, - sym_raw_string, - ACTIONS(1094), 1, - aux_sym__simple_variable_name_token1, - STATE(753), 1, - sym_string, - ACTIONS(1088), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 28, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [5877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(252), 40, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5927] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(599), 1, - sym__simple_heredoc_body, - ACTIONS(601), 1, - sym__heredoc_body_beginning, - STATE(2896), 1, - sym_heredoc_body, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(495), 36, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5985] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(821), 1, - sym_file_descriptor, - ACTIONS(1090), 1, - anon_sym_DQUOTE, - ACTIONS(1098), 1, - anon_sym_DOLLAR, - ACTIONS(1100), 1, - sym__special_character, - ACTIONS(1102), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1104), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1106), 1, - anon_sym_BQUOTE, - ACTIONS(1110), 1, - aux_sym__simple_variable_name_token1, - STATE(793), 1, - aux_sym__literal_repeat1, - ACTIONS(1108), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(247), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1096), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(672), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(817), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6059] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1062), 1, - anon_sym_DQUOTE, - ACTIONS(1074), 1, - anon_sym_DOLLAR, - ACTIONS(1076), 1, - sym__special_character, - ACTIONS(1078), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1080), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1082), 1, - anon_sym_BQUOTE, - ACTIONS(1112), 1, - aux_sym__simple_variable_name_token1, - STATE(817), 1, - aux_sym__literal_repeat1, - ACTIONS(821), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1084), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(238), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1072), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(663), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(817), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6133] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(782), 1, - sym_file_descriptor, - ACTIONS(1090), 1, - anon_sym_DQUOTE, - ACTIONS(1098), 1, - anon_sym_DOLLAR, - ACTIONS(1100), 1, - sym__special_character, - ACTIONS(1102), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1104), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1106), 1, - anon_sym_BQUOTE, - ACTIONS(1114), 1, - aux_sym__simple_variable_name_token1, - STATE(793), 1, - aux_sym__literal_repeat1, - ACTIONS(1108), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(248), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1096), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(672), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(764), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6207] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(864), 1, - sym_file_descriptor, - ACTIONS(1119), 1, - anon_sym_DOLLAR, - ACTIONS(1122), 1, - sym__special_character, - ACTIONS(1125), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1131), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1134), 1, - anon_sym_BQUOTE, - ACTIONS(1140), 1, - aux_sym__simple_variable_name_token1, - STATE(793), 1, - aux_sym__literal_repeat1, - ACTIONS(1137), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(248), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1116), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(672), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(838), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [6281] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(821), 1, - sym_file_descriptor, - ACTIONS(1090), 1, - anon_sym_DQUOTE, - ACTIONS(1098), 1, - anon_sym_DOLLAR, - ACTIONS(1100), 1, - sym__special_character, - ACTIONS(1102), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1104), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1143), 1, - aux_sym__simple_variable_name_token1, - STATE(793), 1, - aux_sym__literal_repeat1, - ACTIONS(1108), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(254), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(1096), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(672), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(817), 20, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [6352] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_file_descriptor, - ACTIONS(123), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(145), 1, - anon_sym_LBRACK, - ACTIONS(147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(209), 1, - anon_sym_DOLLAR, - ACTIONS(211), 1, - sym__special_character, - ACTIONS(213), 1, - anon_sym_DQUOTE, - ACTIONS(217), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(221), 1, - anon_sym_BQUOTE, - ACTIONS(1145), 1, - sym_word, - ACTIONS(1147), 1, - sym_variable_name, - STATE(194), 1, - sym_command_name, - STATE(469), 1, - aux_sym__literal_repeat1, - STATE(699), 1, - sym_concatenation, - STATE(3262), 1, - sym_subscript, - ACTIONS(215), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(223), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(784), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(1897), 3, - sym_subshell, - sym_test_command, - sym_command, - STATE(328), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(35), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [6443] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_file_descriptor, - ACTIONS(61), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(77), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(103), 1, - anon_sym_BQUOTE, - ACTIONS(1147), 1, - sym_variable_name, - ACTIONS(1149), 1, - sym_word, - STATE(202), 1, - sym_command_name, - STATE(662), 1, - aux_sym__literal_repeat1, - STATE(816), 1, - sym_concatenation, - STATE(3262), 1, - sym_subscript, - ACTIONS(97), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(815), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(1968), 3, - sym_subshell, - sym_test_command, - sym_command, - STATE(441), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(35), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [6534] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_file_descriptor, - ACTIONS(123), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(145), 1, - anon_sym_LBRACK, - ACTIONS(147), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(153), 1, - anon_sym_DOLLAR, - ACTIONS(155), 1, - sym__special_character, - ACTIONS(157), 1, - anon_sym_DQUOTE, - ACTIONS(161), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(163), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(165), 1, - anon_sym_BQUOTE, - ACTIONS(1147), 1, - sym_variable_name, - ACTIONS(1151), 1, - sym_word, - STATE(170), 1, - sym_command_name, - STATE(358), 1, - aux_sym__literal_repeat1, - STATE(534), 1, - sym_concatenation, - STATE(3262), 1, - sym_subscript, - ACTIONS(159), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(831), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(1897), 3, - sym_subshell, - sym_test_command, - sym_command, - STATE(281), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(35), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [6625] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, - anon_sym_LBRACK, ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(31), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(37), 1, - anon_sym_DOLLAR, ACTIONS(39), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(41), 1, + sym__special_character, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(45), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(47), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, anon_sym_BQUOTE, - ACTIONS(53), 1, + ACTIONS(55), 1, sym_file_descriptor, - ACTIONS(1147), 1, - sym_variable_name, - ACTIONS(1153), 1, + ACTIONS(1159), 1, sym_word, - STATE(218), 1, + ACTIONS(1161), 1, + sym_variable_name, + STATE(224), 1, sym_command_name, - STATE(700), 1, + STATE(735), 1, aux_sym__literal_repeat1, - STATE(778), 1, + STATE(757), 1, sym_concatenation, - STATE(3262), 1, + STATE(3263), 1, sym_subscript, - ACTIONS(43), 2, + ACTIONS(45), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(51), 2, + ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(782), 3, + STATE(763), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - STATE(2148), 3, + STATE(2097), 3, sym_subshell, sym_test_command, sym_command, @@ -26465,7 +26662,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(35), 8, + ACTIONS(37), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26474,43 +26671,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [6716] = 14, + [6668] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(782), 1, + ACTIONS(835), 1, + ts_builtin_sym_end, + ACTIONS(515), 2, sym_file_descriptor, - ACTIONS(1090), 1, - anon_sym_DQUOTE, - ACTIONS(1098), 1, + sym_variable_name, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR, - ACTIONS(1100), 1, sym__special_character, - ACTIONS(1102), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1104), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1114), 1, - aux_sym__simple_variable_name_token1, - STATE(793), 1, - aux_sym__literal_repeat1, - ACTIONS(1108), 2, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(248), 2, + sym_word, + [6719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(545), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(263), 39, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6768] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(847), 1, + sym_file_descriptor, + ACTIONS(1051), 1, + anon_sym_DQUOTE, + ACTIONS(1104), 1, + anon_sym_DOLLAR, + ACTIONS(1106), 1, + sym__special_character, + ACTIONS(1108), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1110), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1163), 1, + aux_sym__simple_variable_name_token1, + STATE(794), 1, + aux_sym__literal_repeat1, + ACTIONS(1114), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(250), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(1096), 3, + ACTIONS(1102), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(672), 6, + STATE(671), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(764), 20, + ACTIONS(843), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -26531,65 +26821,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [6787] = 24, + [6839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(1041), 2, sym_file_descriptor, - ACTIONS(61), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(77), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(85), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(103), 1, - anon_sym_BQUOTE, - ACTIONS(1147), 1, sym_variable_name, - ACTIONS(1149), 1, - sym_word, - STATE(234), 1, - sym_command_name, - STATE(662), 1, - aux_sym__literal_repeat1, - STATE(816), 1, - sym_concatenation, - STATE(3262), 1, - sym_subscript, - ACTIONS(97), 2, + ACTIONS(1039), 39, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_fi, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, - ACTIONS(105), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(818), 3, + sym_word, + [6888] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + sym_file_descriptor, + ACTIONS(65), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(81), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(89), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, + anon_sym_BQUOTE, + ACTIONS(1161), 1, + sym_variable_name, + ACTIONS(1165), 1, + sym_word, + STATE(243), 1, + sym_command_name, + STATE(661), 1, + aux_sym__literal_repeat1, + STATE(817), 1, + sym_concatenation, + STATE(3263), 1, + sym_subscript, + ACTIONS(101), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(819), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - STATE(1968), 3, + STATE(2076), 3, sym_subshell, sym_test_command, sym_command, - STATE(441), 6, + STATE(442), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(35), 8, + ACTIONS(37), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -26598,197 +26934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [6878] = 4, + [6979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1155), 1, - ts_builtin_sym_end, - ACTIONS(878), 2, + ACTIONS(545), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(874), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1070), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1068), 38, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_done, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6976] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1157), 1, - ts_builtin_sym_end, - ACTIONS(878), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(874), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7026] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(994), 1, - ts_builtin_sym_end, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(252), 38, + ACTIONS(263), 39, anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_if, @@ -26826,105 +26980,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7124] = 3, + [7028] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(1041), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1068), 38, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_fi, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7172] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(982), 1, - ts_builtin_sym_end, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7222] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(252), 38, + ACTIONS(1039), 39, anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_done, @@ -26962,352 +27026,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7270] = 3, + [7077] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1070), 2, + ACTIONS(55), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(1068), 38, - anon_sym_for, + ACTIONS(129), 1, anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, + ACTIONS(147), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, + ACTIONS(153), 1, anon_sym_LBRACK, + ACTIONS(155), 1, anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(161), 1, anon_sym_DOLLAR, + ACTIONS(163), 1, sym__special_character, + ACTIONS(165), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(169), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(171), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(173), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(252), 38, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(876), 1, - anon_sym_BQUOTE, - ACTIONS(878), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(874), 36, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(878), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(874), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_BQUOTE, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(495), 36, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(503), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(495), 37, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7558] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(894), 1, - anon_sym_BQUOTE, - ACTIONS(878), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(874), 36, - anon_sym_for, - anon_sym_LPAREN_LPAREN, - anon_sym_while, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_LBRACK_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7607] = 11, - ACTIONS(3), 1, - sym_comment, ACTIONS(1161), 1, - anon_sym_LF, - ACTIONS(1171), 1, - anon_sym_LT_LT_LT, - ACTIONS(1163), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1165), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1167), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1169), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1173), 2, + sym_variable_name, + ACTIONS(1167), 1, + sym_word, + STATE(173), 1, + sym_command_name, + STATE(349), 1, + aux_sym__literal_repeat1, + STATE(536), 1, + sym_concatenation, + STATE(3263), 1, + sym_subscript, + ACTIONS(167), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(175), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(831), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(1863), 3, + sym_subshell, + sym_test_command, + sym_command, + STATE(287), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(37), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [7168] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + sym_file_descriptor, + ACTIONS(129), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(155), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(215), 1, + anon_sym_DOLLAR, + ACTIONS(217), 1, + sym__special_character, + ACTIONS(219), 1, + anon_sym_DQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(225), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(227), 1, + anon_sym_BQUOTE, + ACTIONS(1161), 1, + sym_variable_name, + ACTIONS(1169), 1, + sym_word, + STATE(205), 1, + sym_command_name, + STATE(469), 1, + aux_sym__literal_repeat1, + STATE(736), 1, + sym_concatenation, + STATE(3263), 1, + sym_subscript, + ACTIONS(221), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(771), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(1863), 3, + sym_subshell, + sym_test_command, + sym_command, + STATE(330), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(37), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [7259] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + sym_file_descriptor, + ACTIONS(65), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(81), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(89), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, + anon_sym_BQUOTE, + ACTIONS(1161), 1, + sym_variable_name, + ACTIONS(1165), 1, + sym_word, + STATE(227), 1, + sym_command_name, + STATE(661), 1, + aux_sym__literal_repeat1, + STATE(817), 1, + sym_concatenation, + STATE(3263), 1, + sym_subscript, + ACTIONS(101), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(816), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(2076), 3, + sym_subshell, + sym_test_command, + sym_command, + STATE(442), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(37), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [7350] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(829), 1, + ts_builtin_sym_end, + ACTIONS(515), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(505), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1652), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27327,16 +27274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7670] = 4, + [7401] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(505), 1, + ACTIONS(517), 1, anon_sym_BQUOTE, - ACTIONS(503), 2, + ACTIONS(515), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(495), 36, + ACTIONS(507), 37, anon_sym_for, + anon_sym_select, anon_sym_LPAREN_LPAREN, anon_sym_while, anon_sym_if, @@ -27372,21 +27320,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7719] = 6, + [7451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1173), 2, + ACTIONS(839), 1, + anon_sym_BQUOTE, + ACTIONS(841), 2, sym_file_descriptor, sym_variable_name, - STATE(1652), 4, + ACTIONS(837), 37, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7501] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(855), 1, + anon_sym_BQUOTE, + ACTIONS(841), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(837), 37, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7551] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BQUOTE, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(507), 37, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(841), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(837), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7649] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(515), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(507), 38, + anon_sym_for, + anon_sym_select, + anon_sym_LPAREN_LPAREN, + anon_sym_while, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_LBRACK_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7697] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + STATE(1650), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 12, + ACTIONS(1173), 12, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -27399,7 +27575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - ACTIONS(1159), 19, + ACTIONS(1171), 19, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27419,18 +27595,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7772] = 6, + [7750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1179), 1, - anon_sym_LPAREN, + ACTIONS(1177), 1, + sym_variable_name, ACTIONS(1181), 1, sym_file_descriptor, - ACTIONS(1183), 1, - sym__concat, - STATE(288), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1177), 35, + STATE(1650), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 11, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(1179), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -27441,8 +27630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -27454,541 +27641,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, anon_sym_AMP, - [7825] = 11, + [7803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 1, - anon_sym_LT_LT_LT, ACTIONS(1185), 1, - anon_sym_LF, - ACTIONS(1165), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1167), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1169), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1187), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1189), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1652), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7888] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1173), 1, - sym_variable_name, - ACTIONS(1193), 1, - sym_file_descriptor, - STATE(1652), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(1191), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [7941] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 1, - sym__concat, - STATE(290), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1195), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [7991] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 1, - sym__concat, - STATE(290), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1203), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1201), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [8041] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1205), 1, - anon_sym_LF, - ACTIONS(1213), 1, - anon_sym_LT_LT_LT, - ACTIONS(1169), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1207), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1209), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1211), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(1219), 1, - sym__concat, - STATE(280), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8153] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1181), 1, - sym_file_descriptor, - ACTIONS(1183), 1, - sym__concat, - STATE(288), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1177), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1199), 1, - sym__concat, - STATE(290), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1224), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1222), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [8253] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1179), 1, anon_sym_LPAREN, - ACTIONS(1181), 1, + ACTIONS(1187), 1, sym_file_descriptor, - ACTIONS(1226), 1, + ACTIONS(1189), 1, sym__concat, - STATE(370), 1, + STATE(292), 1, aux_sym_concatenation_repeat1, - ACTIONS(1177), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8305] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1209), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 11, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8357] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1173), 1, - sym_variable_name, - ACTIONS(1193), 1, - sym_file_descriptor, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(1191), 21, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [8409] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 1, - sym__concat, - ACTIONS(1197), 1, - sym_file_descriptor, - STATE(288), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 35, + ACTIONS(1183), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -28024,1329 +27689,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [8459] = 5, + [7856] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1228), 1, - sym__concat, - STATE(287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1215), 34, + ACTIONS(1191), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(1201), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [8509] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 1, - sym_file_descriptor, - ACTIONS(1235), 1, - sym__concat, - STATE(280), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1231), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8559] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 1, - sym__concat, - ACTIONS(1239), 1, - sym_file_descriptor, - STATE(288), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1237), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8609] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym__concat, - STATE(287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1231), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [8659] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - anon_sym_LT_LT_LT, - ACTIONS(1243), 1, - anon_sym_LF, - ACTIONS(1169), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1209), 2, + ACTIONS(1175), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1211), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1245), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(505), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [8721] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1183), 1, - sym__concat, - ACTIONS(1249), 1, + ACTIONS(1177), 2, sym_file_descriptor, - STATE(288), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1247), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [8771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1251), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [8816] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 1, - sym__concat, - STATE(295), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1224), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1222), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [8865] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1257), 1, - sym__concat, - STATE(296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1231), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [8914] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1259), 1, - sym__concat, - STATE(296), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1215), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [8963] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 1, - sym__special_character, - ACTIONS(1266), 1, - sym_file_descriptor, - STATE(356), 1, - aux_sym__literal_repeat1, - ACTIONS(1262), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [9012] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(1226), 1, - sym__concat, - STATE(370), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [9061] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(1268), 1, - sym__concat, - STATE(362), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1270), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1274), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1278), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1282), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1286), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1290), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1294), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1298), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1302), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1306), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9560] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1310), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1314), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9650] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 1, - ts_builtin_sym_end, - ACTIONS(1320), 1, - anon_sym_LF, - ACTIONS(1330), 1, - anon_sym_LT_LT_LT, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1324), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1326), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1322), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1672), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [9711] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1332), 1, - anon_sym_LPAREN, - ACTIONS(1334), 1, - sym__concat, - STATE(477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1181), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1177), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [9762] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 1, - sym__special_character, - ACTIONS(1338), 1, - sym_file_descriptor, - STATE(356), 1, - aux_sym__literal_repeat1, - ACTIONS(1336), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [9811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [9901] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1173), 1, sym_variable_name, ACTIONS(1193), 2, - sym_file_descriptor, - ts_builtin_sym_end, - STATE(1672), 4, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1197), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1195), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(1650), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 11, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -29358,44 +27741,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(1191), 19, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [9952] = 3, + [7919] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1344), 34, + ACTIONS(1201), 1, + anon_sym_LT_LT_LT, + ACTIONS(1203), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, + ACTIONS(1175), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1197), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1205), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(509), 4, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(1650), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29404,9 +27782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -29417,62 +27792,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [9997] = 3, + [7982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, + ACTIONS(1189), 1, + sym__concat, + ACTIONS(1209), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1348), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [10042] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1352), 1, - sym__concat, - STATE(320), 1, + STATE(292), 1, aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1215), 33, + ACTIONS(1207), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -29483,6 +27813,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29506,17 +27838,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [10091] = 5, + [8032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1357), 1, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(1215), 1, + sym__concat, + STATE(278), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym__special_character, - STATE(321), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 2, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1222), 1, + sym__concat, + STATE(280), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1355), 33, + ACTIONS(1218), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -29539,6 +27916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -29550,19 +27928,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10140] = 6, + [8132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1173), 1, + ACTIONS(1224), 1, + sym__concat, + STATE(280), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 2, + sym_file_descriptor, sym_variable_name, - ACTIONS(1193), 1, + ACTIONS(1211), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8182] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 1, + sym__concat, + ACTIONS(1229), 1, + sym_file_descriptor, + STATE(292), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8232] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 1, + sym_variable_name, + ACTIONS(1181), 1, sym_file_descriptor, STATE(1660), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 11, + ACTIONS(1171), 11, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -29574,12 +28042,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(1191), 20, + ACTIONS(1179), 21, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -29595,13 +28064,1592 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [10191] = 3, + [8284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 3, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1231), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1660), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1173), 11, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8336] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 1, + sym__concat, + STATE(279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1235), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1233), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8386] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1239), 1, + anon_sym_LF, + ACTIONS(1245), 1, + anon_sym_LT_LT_LT, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1231), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1241), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1243), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(509), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(1660), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8448] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 1, + sym__concat, + STATE(279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1249), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1247), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8498] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 1, + sym_file_descriptor, + ACTIONS(1189), 1, + sym__concat, + STATE(292), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1183), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8548] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1237), 1, + sym__concat, + STATE(279), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1227), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8598] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1185), 1, + anon_sym_LPAREN, + ACTIONS(1187), 1, + sym_file_descriptor, + ACTIONS(1251), 1, + sym__concat, + STATE(360), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1183), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8650] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1189), 1, + sym__concat, + ACTIONS(1255), 1, + sym_file_descriptor, + STATE(292), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8700] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + anon_sym_LT_LT_LT, + ACTIONS(1257), 1, + anon_sym_LF, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1231), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1243), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1259), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1195), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(1660), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8762] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 1, + sym_file_descriptor, + ACTIONS(1261), 1, + sym__concat, + STATE(278), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8812] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 3, sym_file_descriptor, sym__concat, sym_variable_name, + ACTIONS(1263), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1267), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [8902] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1271), 1, + sym__concat, + STATE(296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1218), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [8951] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 1, + sym__concat, + STATE(296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1211), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 1, + sym__special_character, + ACTIONS(1280), 1, + sym_file_descriptor, + STATE(356), 1, + aux_sym__literal_repeat1, + ACTIONS(1276), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9049] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1282), 1, + sym__concat, + STATE(362), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1284), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1288), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1292), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1296), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1300), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9323] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1267), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9368] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1304), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9413] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1308), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1312), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1316), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1320), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1324), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9638] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1328), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9683] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1251), 1, + sym__concat, + STATE(360), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9732] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 1, + ts_builtin_sym_end, + ACTIONS(1334), 1, + anon_sym_LF, + ACTIONS(1344), 1, + anon_sym_LT_LT_LT, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1338), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1340), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1342), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1336), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1670), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [9793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1346), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9838] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1346), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9883] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1350), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [9928] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_LPAREN, + ACTIONS(1356), 1, + sym__concat, + STATE(476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1187), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1183), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [9979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1358), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [10024] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 1, + sym__special_character, + ACTIONS(1364), 1, + sym_file_descriptor, + STATE(356), 1, + aux_sym__literal_repeat1, ACTIONS(1362), 34, anon_sym_LF, anon_sym_SEMI, @@ -29613,6 +29661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -29625,7 +29675,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -29634,115 +29683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10236] = 11, + [10073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 1, - ts_builtin_sym_end, - ACTIONS(1330), 1, - anon_sym_LT_LT_LT, ACTIONS(1366), 1, - anon_sym_LF, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1324), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1326), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1368), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1672), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10297] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 10, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10348] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1372), 1, sym__concat, STATE(320), 1, aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, + ACTIONS(1213), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1231), 33, + ACTIONS(1211), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -29776,14 +29729,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [10397] = 3, + [10122] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 3, + ACTIONS(1371), 1, + sym__special_character, + STATE(321), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1369), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [10171] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1376), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1374), 34, + ACTIONS(1380), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -29818,385 +29857,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [10442] = 5, + [10261] = 6, ACTIONS(3), 1, sym_comment, + ACTIONS(1177), 1, + sym_variable_name, ACTIONS(1181), 1, sym_file_descriptor, - ACTIONS(1226), 1, - sym__concat, - STATE(370), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1177), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1378), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [10536] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 1, - sym__concat, - ACTIONS(1239), 1, - sym_file_descriptor, - STATE(370), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1237), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1251), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10630] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1270), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1274), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1278), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1282), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10810] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_RPAREN, - ACTIONS(1382), 1, - anon_sym_LF, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1245), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, + STATE(1658), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(1171), 11, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -30208,442 +29881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1286), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10916] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1290), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [10961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1294), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11006] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1298), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1302), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11096] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1306), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1310), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1314), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11231] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1390), 1, - sym__concat, - STATE(326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1203), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1201), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11280] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 1, - sym__concat, - STATE(295), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1195), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11329] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1181), 1, - sym_file_descriptor, - ACTIONS(1392), 1, - anon_sym_LPAREN, - ACTIONS(1394), 1, - sym__concat, - STATE(543), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1177), 33, + ACTIONS(1179), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -30652,8 +29890,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [10312] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1384), 1, + sym__concat, + STATE(320), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1218), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -30677,17 +29946,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [11380] = 5, + [10361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 1, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1173), 10, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [10412] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 1, + sym_variable_name, + ACTIONS(1181), 2, + sym_file_descriptor, + ts_builtin_sym_end, + STATE(1670), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 11, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(1179), 19, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [10463] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 1, sym__special_character, STATE(321), 1, aux_sym__literal_repeat1, - ACTIONS(1400), 2, + ACTIONS(1392), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1396), 33, + ACTIONS(1388), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -30721,13 +30080,99 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [11429] = 3, + [10512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1396), 3, sym_file_descriptor, sym__concat, - ACTIONS(1340), 35, + sym_variable_name, + ACTIONS(1394), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [10557] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 1, + sym_file_descriptor, + ACTIONS(1251), 1, + sym__concat, + STATE(360), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1183), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1284), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -30763,13 +30208,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [11474] = 3, + [10651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1290), 2, sym_file_descriptor, sym__concat, - ACTIONS(1340), 35, + ACTIONS(1288), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -30805,13 +30250,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [11519] = 3, + [10696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 2, + ACTIONS(1294), 2, sym_file_descriptor, sym__concat, - ACTIONS(1344), 35, + ACTIONS(1292), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -30847,13 +30292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [11564] = 3, + [10741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 2, + ACTIONS(1298), 2, sym_file_descriptor, sym__concat, - ACTIONS(1348), 35, + ACTIONS(1296), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -30889,16 +30334,1448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [11609] = 5, + [10786] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, + ACTIONS(1302), 2, + sym_file_descriptor, sym__concat, + ACTIONS(1300), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10831] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_RPAREN, + ACTIONS(1398), 1, + anon_sym_LF, ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1241), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [10892] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1406), 1, + sym__concat, + STATE(295), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1227), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [10941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1304), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [10986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1308), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11031] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1312), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1316), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11121] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1320), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1324), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1328), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11256] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1406), 1, + sym__concat, + STATE(295), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1235), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1233), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [11305] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(835), 1, + ts_builtin_sym_end, + ACTIONS(1344), 1, + anon_sym_LT_LT_LT, + ACTIONS(1408), 1, + anon_sym_LF, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1338), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1340), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1342), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1410), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1670), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [11366] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(1412), 1, + sym__concat, + STATE(347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11415] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11460] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1278), 1, + sym__special_character, + ACTIONS(1417), 1, + sym_file_descriptor, + STATE(356), 1, + aux_sym__literal_repeat1, + ACTIONS(1415), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11509] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11554] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1350), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1358), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 1, + sym_file_descriptor, + ACTIONS(1251), 1, + sym__concat, + STATE(360), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11693] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(1419), 1, + sym__concat, + STATE(354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [11742] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1406), 1, + sym__concat, + STATE(295), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1249), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1247), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [11791] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 1, + sym_file_descriptor, + ACTIONS(1422), 1, + sym__special_character, + STATE(356), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1425), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1380), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11930] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1251), 1, + sym__concat, + ACTIONS(1255), 1, + sym_file_descriptor, + STATE(360), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [11979] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 1, + sym_file_descriptor, + ACTIONS(1429), 1, + sym__concat, + STATE(347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12028] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 1, + sym__special_character, + STATE(321), 1, + aux_sym__literal_repeat1, + ACTIONS(1433), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1431), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12077] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 1, + sym_file_descriptor, + ACTIONS(1435), 1, + sym__concat, + STATE(354), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12126] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1263), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12171] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1437), 1, + sym__concat, + STATE(325), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1249), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1247), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1394), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12265] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1439), 1, + ts_builtin_sym_end, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1338), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1670), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1173), 9, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [12318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1441), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12363] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1282), 1, + sym__concat, + ACTIONS(1447), 1, sym_file_descriptor, STATE(362), 1, aux_sym_concatenation_repeat1, - ACTIONS(1402), 34, + ACTIONS(1445), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -30933,63 +31810,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [11658] = 5, + [12412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, + ACTIONS(1451), 3, sym_file_descriptor, - ACTIONS(1406), 1, sym__concat, - STATE(354), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [11707] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1255), 1, - sym__concat, - STATE(295), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1203), 2, - sym_file_descriptor, sym_variable_name, - ACTIONS(1201), 33, + ACTIONS(1449), 34, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -31021,147 +31852,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [11756] = 5, + [12457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 1, - sym_file_descriptor, - ACTIONS(1409), 1, - sym__special_character, - STATE(356), 1, - aux_sym__literal_repeat1, - ACTIONS(1355), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11805] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 1, - ts_builtin_sym_end, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1324), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1672), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 9, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [11858] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1264), 1, - sym__special_character, - ACTIONS(1416), 1, - sym_file_descriptor, - STATE(356), 1, - aux_sym__literal_repeat1, - ACTIONS(1414), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [11907] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 2, + ACTIONS(1455), 3, sym_file_descriptor, sym__concat, - ACTIONS(1362), 35, + sym_variable_name, + ACTIONS(1453), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -31172,8 +31870,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31195,39 +31891,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [11952] = 11, + [12502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 1, + ACTIONS(1187), 1, + sym_file_descriptor, + ACTIONS(1457), 1, + anon_sym_LPAREN, + ACTIONS(1459), 1, + sym__concat, + STATE(413), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1183), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, anon_sym_RPAREN, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1418), 1, - anon_sym_LF, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1370), 2, - anon_sym_PIPE, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - ACTIONS(1384), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12553] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1211), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1425), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [12643] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1195), 1, + anon_sym_RPAREN, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(1461), 1, + anon_sym_LF, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1207), 3, + ACTIONS(1259), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1660), 4, + STATE(1658), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, + ACTIONS(1171), 19, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31247,17 +32073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12013] = 5, + [12704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1398), 1, - sym__special_character, - STATE(321), 1, - aux_sym__literal_repeat1, - ACTIONS(1422), 2, + ACTIONS(1378), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1420), 33, + ACTIONS(1376), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -31280,6 +32103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -31291,16 +32115,225 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [12062] = 5, + [12749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 1, + ACTIONS(1443), 2, sym_file_descriptor, - ACTIONS(1424), 1, sym__concat, - STATE(354), 1, + ACTIONS(1441), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1449), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12839] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1453), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12884] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1437), 1, + sym__concat, + STATE(325), 1, aux_sym_concatenation_repeat1, - ACTIONS(1231), 34, + ACTIONS(1229), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1227), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1211), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [12978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1300), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -31335,13 +32368,463 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [12111] = 3, + [13022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1229), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1227), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, - ACTIONS(1374), 35, + sym_variable_name, + ACTIONS(1328), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13110] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1425), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [13154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1324), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1376), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [13242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1441), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1320), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1449), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13374] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1316), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1453), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13462] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1211), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1227), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -31377,16 +32860,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [12156] = 3, + [13550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 2, + ACTIONS(1314), 3, sym_file_descriptor, sym__concat, - ACTIONS(1426), 35, + sym_variable_name, + ACTIONS(1312), 33, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -31394,8 +32877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31417,15 +32898,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [12201] = 3, + [13594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 2, + ACTIONS(1427), 2, sym_file_descriptor, sym__concat, - ACTIONS(1378), 35, + ACTIONS(1425), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -31436,8 +32918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -31459,862 +32939,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [12246] = 5, + [13638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1390), 1, + ACTIONS(1310), 3, + sym_file_descriptor, sym__concat, - STATE(326), 1, + sym_variable_name, + ACTIONS(1308), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13682] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1376), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1304), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [13770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1463), 1, + sym__concat, + STATE(401), 1, aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, + ACTIONS(1229), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1195), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1430), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1434), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1438), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12430] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 1, - sym_file_descriptor, - ACTIONS(1442), 1, - sym__concat, - STATE(378), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1231), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1215), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12524] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1444), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12569] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1226), 1, - sym__concat, - ACTIONS(1249), 1, - sym_file_descriptor, - STATE(370), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1247), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1426), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1430), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12708] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1434), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1438), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12798] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(1448), 1, - sym__concat, - STATE(378), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1215), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1444), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [12937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1282), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [12981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1290), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1438), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1426), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1444), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13157] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1451), 1, - sym__concat, - STATE(389), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1195), 32, + ACTIONS(1227), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -32347,58 +33108,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [13205] = 3, + [13818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, + ACTIONS(1465), 1, sym__concat, - sym_variable_name, - ACTIONS(1294), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13249] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1453), 1, - sym__concat, - STATE(388), 1, + STATE(400), 1, aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, + ACTIONS(1213), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1215), 32, + ACTIONS(1211), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -32431,17 +33151,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [13297] = 5, + [13866] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1456), 1, + ACTIONS(1468), 1, sym__concat, - STATE(388), 1, + STATE(400), 1, aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, + ACTIONS(1220), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1231), 32, + ACTIONS(1218), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -32474,557 +33194,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [13345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1298), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13389] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1458), 1, - sym__special_character, - STATE(538), 1, - aux_sym__literal_repeat1, - ACTIONS(1400), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1396), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(1195), 35, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1286), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13525] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1460), 1, - sym__concat, - STATE(535), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1203), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1201), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [13573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1462), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1282), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13661] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1215), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1466), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1438), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1302), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1203), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1201), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13881] = 5, + [13914] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1470), 1, - sym__concat, - STATE(407), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 3, + sym__special_character, + STATE(540), 1, + aux_sym__literal_repeat1, + ACTIONS(1392), 2, sym_file_descriptor, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1195), 31, + ACTIONS(1388), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [13929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1434), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, @@ -33042,7 +33226,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -33054,2869 +33237,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [13973] = 5, + [13962] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1472), 1, sym__concat, - STATE(404), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1215), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14021] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1475), 1, - sym__special_character, - STATE(459), 1, - aux_sym__literal_repeat1, - ACTIONS(1400), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1396), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1306), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14113] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1477), 1, - sym__concat, - STATE(404), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1231), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1430), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1426), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1310), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1444), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14337] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1451), 1, - sym__concat, - STATE(389), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1203), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1201), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1195), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14429] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1314), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1215), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14517] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1274), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1270), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1251), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14649] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(1479), 1, - sym__concat, - STATE(502), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1434), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14785] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1460), 1, - sym__concat, - STATE(535), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1195), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1278), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1430), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [14921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1378), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [14965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1374), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15009] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1362), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15053] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 1, - sym_file_descriptor, - ACTIONS(1481), 1, - sym__special_character, - STATE(428), 1, - aux_sym__literal_repeat1, - ACTIONS(1355), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1348), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1344), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15189] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1484), 1, - anon_sym_LF, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1486), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [15247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15291] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1488), 1, - sym__concat, - STATE(433), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1215), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15383] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 1, - sym_file_descriptor, - ACTIONS(1491), 1, - sym__special_character, - STATE(505), 1, - aux_sym__literal_repeat1, - ACTIONS(1262), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1314), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15475] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1310), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15519] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1306), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1302), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1298), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15651] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1181), 1, - sym_file_descriptor, - ACTIONS(1394), 1, - sym__concat, - STATE(543), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1177), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [15699] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1294), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1290), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1286), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1278), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1274), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1270), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [15963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1251), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1378), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1426), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16095] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1470), 1, - sym__concat, - STATE(407), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1203), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1201), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16143] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1493), 1, - anon_sym_LF, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1495), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [16201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1374), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16245] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 1, - sym_file_descriptor, - ACTIONS(1491), 1, - sym__special_character, - STATE(505), 1, - aux_sym__literal_repeat1, - ACTIONS(1336), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16293] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1451), 1, - sym__concat, - STATE(389), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1224), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1222), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1444), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16385] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1497), 1, - anon_sym_LF, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1499), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [16443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1362), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16487] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1501), 1, - sym__special_character, - STATE(459), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1355), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1215), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1438), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1348), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1344), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16755] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1404), 1, - sym_file_descriptor, - ACTIONS(1479), 1, - sym__concat, - STATE(502), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1402), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16803] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1458), 1, - sym__special_character, - STATE(538), 1, - aux_sym__literal_repeat1, - ACTIONS(1422), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1420), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [16851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1434), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1416), 1, - sym_file_descriptor, - ACTIONS(1491), 1, - sym__special_character, - STATE(505), 1, - aux_sym__literal_repeat1, - ACTIONS(1414), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [16987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1430), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1314), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17075] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 1, - sym__concat, - STATE(477), 1, + STATE(537), 1, aux_sym_concatenation_repeat1, ACTIONS(1249), 2, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, ACTIONS(1247), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -35940,14 +33280,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [17123] = 3, + [14010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1310), 33, + ACTIONS(1267), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1474), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -35979,16 +33359,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17167] = 3, + [14098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1306), 33, + ACTIONS(1300), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1480), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1478), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -36020,16 +33441,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17211] = 3, + [14186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1249), 2, sym_file_descriptor, - sym__concat, sym_variable_name, - ACTIONS(1302), 33, + ACTIONS(1247), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -36061,680 +33482,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [17255] = 5, + [14230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1249), 1, - sym_file_descriptor, - ACTIONS(1394), 1, + ACTIONS(1482), 1, sym__concat, - STATE(543), 1, + STATE(412), 1, aux_sym_concatenation_repeat1, - ACTIONS(1247), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17303] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1504), 1, - sym__concat, - STATE(433), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1231), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1298), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1294), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17439] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1290), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1286), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1282), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1278), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17615] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1274), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1270), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1251), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [17747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1426), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17791] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1444), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17835] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1215), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1438), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1434), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [17967] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1470), 1, - sym__concat, - STATE(407), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1224), 3, + ACTIONS(1229), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1222), 31, + ACTIONS(1227), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36766,66 +33528,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [18015] = 8, + [14278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(1510), 1, - sym_raw_string, - ACTIONS(1512), 1, - aux_sym__simple_variable_name_token1, - STATE(1723), 1, - sym_string, - ACTIONS(545), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1506), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [18069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, + ACTIONS(1484), 1, sym__concat, + STATE(410), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 3, + sym_file_descriptor, sym_variable_name, - ACTIONS(1430), 33, + ts_builtin_sym_end, + ACTIONS(1211), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -36853,12 +33571,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [18113] = 3, + [14326] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1487), 1, + sym__special_character, + STATE(461), 1, + aux_sym__literal_repeat1, + ACTIONS(1392), 2, sym_file_descriptor, - ACTIONS(1237), 35, + sym_variable_name, + ACTIONS(1388), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -36869,8 +33592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -36883,7 +33604,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -36894,74 +33614,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18157] = 6, + [14374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1173), 2, + ACTIONS(1489), 1, + sym__concat, + STATE(410), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 3, sym_file_descriptor, sym_variable_name, - ACTIONS(1514), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 9, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [18207] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1173), 1, - sym_variable_name, - ACTIONS(1193), 1, - sym_file_descriptor, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(1191), 20, + ts_builtin_sym_end, + ACTIONS(1218), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -36980,18 +33644,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, anon_sym_AMP, - [18257] = 5, + [14422] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, + ACTIONS(1220), 1, sym_file_descriptor, - ACTIONS(1516), 1, + ACTIONS(1491), 1, sym__concat, STATE(498), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 33, + ACTIONS(1218), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37025,146 +33700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18305] = 3, + [14470] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 2, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, - ACTIONS(1378), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18349] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1519), 1, - anon_sym_LF, - ACTIONS(1173), 2, - sym_file_descriptor, sym_variable_name, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1521), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [18407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1374), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18451] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1233), 1, - sym_file_descriptor, - ACTIONS(1523), 1, - sym__concat, - STATE(506), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1231), 33, + ACTIONS(1296), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37198,34 +33741,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [18499] = 9, + [14514] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1173), 2, + ACTIONS(1463), 1, + sym__concat, + STATE(401), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1249), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1525), 4, + ACTIONS(1247), 32, anon_sym_LF, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37234,6 +33768,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1453), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -37245,13 +33824,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18555] = 3, + anon_sym_AMP, + [14606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, - ACTIONS(1362), 34, + sym_variable_name, + ACTIONS(1288), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37261,8 +33842,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1211), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37286,18 +33907,433 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [18599] = 5, + [14694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 1, + ACTIONS(1286), 3, sym_file_descriptor, - ACTIONS(1527), 1, + sym__concat, + sym_variable_name, + ACTIONS(1284), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14738] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1493), 1, + sym__concat, STATE(505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14786] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1346), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14830] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1472), 1, + sym__concat, + STATE(537), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1227), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [14878] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1449), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [14922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1292), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [14966] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1441), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [15010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1394), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1263), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1380), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15142] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 1, + sym_file_descriptor, + ACTIONS(1495), 1, + sym__special_character, + STATE(429), 1, aux_sym__literal_repeat1, - ACTIONS(1355), 33, + ACTIONS(1369), 33, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -37305,8 +34341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37327,20 +34361,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [18647] = 5, + [15190] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, + ACTIONS(1360), 2, sym_file_descriptor, - ACTIONS(1530), 1, sym__concat, - STATE(506), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 33, + ACTIONS(1358), 34, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -37372,160 +34405,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [18695] = 3, + [15234] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1348), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(1404), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1344), 34, + ACTIONS(1498), 1, anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18827] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1533), 1, - anon_sym_LF, - ACTIONS(1173), 2, + ACTIONS(1177), 2, sym_file_descriptor, sym_variable_name, ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1514), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1537), 2, + ACTIONS(1400), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1535), 3, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1500), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1660), 4, + STATE(1658), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 18, + ACTIONS(1171), 19, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37541,97 +34449,17 @@ static const uint16_t ts_small_parse_table[] = { sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [18887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - anon_sym_AMP, - [18931] = 3, + [15292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1352), 2, sym_file_descriptor, sym__concat, - ACTIONS(1314), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [18975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1249), 1, - sym_file_descriptor, - ACTIONS(1247), 35, + ACTIONS(1350), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -37642,8 +34470,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37665,60 +34491,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19019] = 3, + [15336] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 2, - sym_file_descriptor, + ACTIONS(1502), 1, sym__concat, - ACTIONS(1310), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19063] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 1, - sym__concat, - STATE(477), 1, + STATE(433), 1, aux_sym_concatenation_repeat1, - ACTIONS(1181), 2, + ACTIONS(1213), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1177), 32, + ACTIONS(1211), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37751,26 +34537,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [19111] = 5, + [15384] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 1, - sym__concat, - STATE(477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, + ACTIONS(1348), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1195), 32, + sym__concat, + ACTIONS(1346), 34, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37792,15 +34575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19159] = 3, + [15428] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 2, + ACTIONS(1280), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1306), 34, + ACTIONS(1505), 1, + sym__special_character, + STATE(507), 1, + aux_sym__literal_repeat1, + ACTIONS(1276), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37824,7 +34611,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -37835,15 +34621,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [19203] = 3, + [15476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 2, + ACTIONS(1348), 2, sym_file_descriptor, sym__concat, - ACTIONS(1302), 34, + ACTIONS(1346), 34, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -37851,8 +34638,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -37874,18 +34659,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19247] = 5, + [15520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 1, + ACTIONS(1330), 2, sym_file_descriptor, - ACTIONS(1394), 1, sym__concat, - STATE(543), 1, + ACTIONS(1328), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1324), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15608] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1320), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15652] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1316), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1312), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15740] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 1, + sym_file_descriptor, + ACTIONS(1459), 1, + sym__concat, + STATE(413), 1, aux_sym_concatenation_repeat1, - ACTIONS(1237), 33, + ACTIONS(1183), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -37919,603 +34910,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [19295] = 3, + [15788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1310), 2, sym_file_descriptor, sym__concat, - ACTIONS(1298), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19339] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1294), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1290), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1286), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1282), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19515] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1278), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1274), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1270), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1251), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19691] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(1394), 1, - sym__concat, - STATE(543), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [19739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1378), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1374), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [19827] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1539), 1, - anon_sym_LF, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1541), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 19, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [19885] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1189), 1, - anon_sym_BQUOTE, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(1543), 1, - anon_sym_LF, - ACTIONS(1173), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1514), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1537), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1545), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [19945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1181), 1, - sym_file_descriptor, - ACTIONS(1177), 35, + ACTIONS(1308), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -38526,8 +34927,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -38549,19 +34948,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [19989] = 5, + [15832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1547), 1, - sym__concat, - STATE(539), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, + ACTIONS(1306), 2, sym_file_descriptor, + sym__concat, + ACTIONS(1304), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1267), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [15920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1231), 32, + ACTIONS(1346), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -38592,15 +35071,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [20037] = 3, + [15964] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 3, + ACTIONS(1298), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1296), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1292), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16052] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1288), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1284), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1482), 1, + sym__concat, + STATE(412), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1249), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1247), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16188] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(1507), 1, + anon_sym_LF, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1509), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [16246] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 3, sym_file_descriptor, sym__concat, sym_variable_name, + ACTIONS(1394), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16290] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 1, + sym_file_descriptor, + ACTIONS(1505), 1, + sym__special_character, + STATE(507), 1, + aux_sym__literal_repeat1, ACTIONS(1362), 33, anon_sym_LF, anon_sym_SEMI, @@ -38611,6 +35389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -38623,7 +35403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -38632,24 +35411,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [20081] = 5, + [16338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 1, - sym__concat, - STATE(477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1239), 2, + ACTIONS(1378), 2, sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1237), 32, + sym__concat, + ACTIONS(1376), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -38678,106 +35454,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20129] = 5, + [16382] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1549), 1, - sym__special_character, - STATE(538), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1355), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1552), 1, + ACTIONS(1463), 1, sym__concat, - STATE(539), 1, + STATE(401), 1, aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, + ACTIONS(1235), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1215), 32, + ACTIONS(1233), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [20225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1348), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -38805,16 +35497,65 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [20269] = 3, + [16430] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(1511), 1, + anon_sym_LF, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1513), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [16488] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1344), 33, + ACTIONS(1263), 33, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -38843,19 +35584,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [20313] = 5, + [16532] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1557), 1, - sym__special_character, - ACTIONS(1559), 1, + ACTIONS(1427), 2, sym_file_descriptor, - STATE(428), 1, + sym__concat, + ACTIONS(1425), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16576] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1380), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1515), 1, + sym__special_character, + STATE(461), 1, aux_sym__literal_repeat1, - ACTIONS(1555), 33, + ACTIONS(1374), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1369), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -38886,19 +35709,643 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1211), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1453), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1358), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16800] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1447), 1, + sym_file_descriptor, + ACTIONS(1493), 1, + sym__concat, + STATE(505), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1445), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [20361] = 5, + [16848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 1, + ACTIONS(1470), 1, + sym__special_character, + STATE(540), 1, + aux_sym__literal_repeat1, + ACTIONS(1433), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1431), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [16896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, sym_file_descriptor, - ACTIONS(1561), 1, sym__concat, - STATE(498), 1, + sym_variable_name, + ACTIONS(1350), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1346), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [16984] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1417), 1, + sym_file_descriptor, + ACTIONS(1505), 1, + sym__special_character, + STATE(507), 1, + aux_sym__literal_repeat1, + ACTIONS(1415), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 1, + sym__concat, + STATE(476), 1, aux_sym_concatenation_repeat1, - ACTIONS(1231), 33, + ACTIONS(1255), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1253), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1346), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17124] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1449), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1441), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1328), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17256] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1324), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17300] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1518), 1, + sym__concat, + STATE(433), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1218), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17348] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1255), 1, + sym_file_descriptor, + ACTIONS(1459), 1, + sym__concat, + STATE(413), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1253), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -38932,14 +36379,465 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [20409] = 3, + [17396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, + ACTIONS(1322), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1340), 33, + ACTIONS(1320), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1316), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1312), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1308), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1304), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1267), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1300), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1296), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1292), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1288), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1284), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [17880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1376), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -38973,13 +36871,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [20453] = 3, + [17924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 2, + ACTIONS(1427), 3, sym_file_descriptor, sym__concat, - ACTIONS(1348), 33, + sym_variable_name, + ACTIONS(1425), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -39013,14 +36912,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [20496] = 3, + [17968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 3, + ACTIONS(1213), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1378), 32, + ACTIONS(1211), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -39051,1188 +36950,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [20539] = 5, + [18012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 1, - sym_file_descriptor, - ACTIONS(1563), 1, + ACTIONS(1482), 1, sym__concat, - STATE(550), 1, + STATE(412), 1, aux_sym_concatenation_repeat1, - ACTIONS(1231), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1374), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1378), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_file_descriptor, - ACTIONS(1565), 1, - sym__concat, - STATE(550), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1344), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20762] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1348), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20805] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20848] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1314), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1310), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [20977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1306), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1430), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1434), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1302), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1298), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1294), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21235] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1290), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21278] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1438), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21321] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1286), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1215), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1282), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21450] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1278), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1274), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21536] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1444), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1270), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1426), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21665] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1251), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21708] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1568), 1, - sym__special_character, - STATE(574), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1355), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21755] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(1571), 1, - sym__concat, - STATE(547), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [21802] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1573), 1, - sym__concat, - STATE(583), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 3, + ACTIONS(1235), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1195), 30, + ACTIONS(1233), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40261,15 +36993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [21849] = 3, + [18060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 2, + ACTIONS(1455), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1462), 33, + ACTIONS(1453), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40303,13 +37037,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [21892] = 3, + [18104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 2, + ACTIONS(1451), 3, sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1466), 33, + ACTIONS(1449), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40343,99 +37078,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [21935] = 5, + [18148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1575), 1, - sym__concat, - STATE(582), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, + ACTIONS(1209), 1, sym_file_descriptor, - sym_variable_name, - ACTIONS(1231), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [21982] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1577), 1, - sym__concat, - STATE(580), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1215), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1203), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1201), 33, + ACTIONS(1207), 35, anon_sym_LF, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -40443,6 +37094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40464,20 +37117,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22072] = 5, + [18192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1580), 1, - sym__concat, - STATE(582), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, + ACTIONS(1177), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1215), 31, + ACTIONS(1520), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1173), 9, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [18242] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1177), 1, + sym_variable_name, + ACTIONS(1181), 1, + sym_file_descriptor, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(1179), 20, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [18292] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(1522), 1, + sym__concat, + STATE(498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -40486,6 +37225,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40509,271 +37250,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [22119] = 5, + [18340] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1583), 1, - sym__concat, - STATE(580), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1231), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1527), 1, anon_sym_DQUOTE, + ACTIONS(1529), 1, sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22166] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1362), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1531), 1, aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1585), 1, - sym__special_character, - STATE(744), 1, - aux_sym__literal_repeat1, - ACTIONS(1400), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1396), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22256] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 1, - sym__concat, - STATE(579), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1195), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [22303] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1589), 1, - sym__concat, - STATE(591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1195), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22350] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1591), 1, - sym__concat, - STATE(588), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1215), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22397] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_DQUOTE, - ACTIONS(1598), 1, - sym_raw_string, - ACTIONS(1600), 1, - aux_sym__simple_variable_name_token1, - STATE(1841), 1, + STATE(1694), 1, sym_string, - ACTIONS(545), 2, + ACTIONS(555), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1594), 9, + ACTIONS(1525), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -40783,7 +37274,931 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 20, + ACTIONS(547), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [18394] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(1533), 1, + anon_sym_LF, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1535), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [18452] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1537), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [18508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1441), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [18552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1394), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1263), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18640] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 1, + sym_file_descriptor, + ACTIONS(1539), 1, + sym__concat, + STATE(508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [18688] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1380), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18732] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 1, + sym_file_descriptor, + ACTIONS(1541), 1, + sym__special_character, + STATE(507), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18780] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(1544), 1, + sym__concat, + STATE(508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [18828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1358), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18872] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BQUOTE, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(1547), 1, + anon_sym_LF, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1520), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1551), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1549), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [18932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1350), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [18976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19020] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1255), 1, + sym_file_descriptor, + ACTIONS(1253), 35, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 1, + sym__concat, + STATE(476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1187), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1183), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19156] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1356), 1, + sym__concat, + STATE(476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1227), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19204] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1328), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1324), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1320), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1316), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19380] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 1, + sym_file_descriptor, + ACTIONS(1459), 1, + sym__concat, + STATE(413), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1207), 33, + anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -40791,38 +38206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [22450] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym__special_character, - STATE(590), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1355), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40835,6 +38220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -40843,27 +38229,397 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22497] = 5, + [19428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1605), 1, + ACTIONS(1314), 2, + sym_file_descriptor, sym__concat, - STATE(588), 1, + ACTIONS(1312), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1308), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1304), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1267), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1300), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19648] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1296), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19692] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1292), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19736] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1288), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1284), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [19824] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1459), 1, + sym__concat, + STATE(413), 1, aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1231), 31, + ACTIONS(1227), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40885,22 +38641,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22544] = 3, + [19872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 4, + ACTIONS(1396), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1251), 31, + ACTIONS(1394), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -40928,19 +38684,68 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22587] = 3, + [19916] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(1553), 1, + anon_sym_LF, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1555), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 19, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [19974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1270), 31, + ACTIONS(1263), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -40968,22 +38773,37 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [22630] = 3, + [20018] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1274), 31, + ACTIONS(1195), 1, + anon_sym_BQUOTE, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(1557), 1, anon_sym_LF, - anon_sym_SEMI, + ACTIONS(1177), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1520), 2, anon_sym_PIPE, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + ACTIONS(1551), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + ACTIONS(1559), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1171), 18, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -40992,9 +38812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -41002,299 +38819,15 @@ static const uint16_t ts_small_parse_table[] = { sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - anon_sym_AMP, - [22673] = 3, + [20078] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 4, + ACTIONS(1187), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1278), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1282), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1286), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1290), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1294), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22888] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1298), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1302), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [22974] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1462), 33, + ACTIONS(1183), 35, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -41305,6 +38838,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1561), 1, + sym__concat, + STATE(541), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1218), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41328,15 +38906,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [23017] = 3, + [20170] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 4, - sym_file_descriptor, + ACTIONS(1356), 1, sym__concat, - sym_variable_name, + STATE(476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1209), 2, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1306), 31, + ACTIONS(1207), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41344,6 +38924,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1380), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41368,56 +38990,1271 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [23060] = 3, + [20262] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1310), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1563), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23103] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1266), 1, - sym_file_descriptor, - ACTIONS(1607), 1, - sym__special_character, - STATE(650), 1, + STATE(540), 1, aux_sym__literal_repeat1, - ACTIONS(1262), 32, + ACTIONS(1374), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1369), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1566), 1, + sym__concat, + STATE(541), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1211), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1358), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1350), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20446] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1571), 1, + sym__special_character, + ACTIONS(1573), 1, + sym_file_descriptor, + STATE(429), 1, + aux_sym__literal_repeat1, + ACTIONS(1569), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20494] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1358), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20537] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1449), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [20580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 1, + sym_file_descriptor, + ACTIONS(1575), 1, + sym__concat, + STATE(551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20627] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1263), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20670] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1394), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20713] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1358), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20756] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym_file_descriptor, + ACTIONS(1577), 1, + sym__concat, + STATE(551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1380), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1350), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1346), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1346), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [20975] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1328), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21018] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1324), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21061] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1320), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1316), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21147] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1441), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1449), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1312), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1308), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21319] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1304), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1267), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1453), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1211), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21491] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1300), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21534] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1296), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1292), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21620] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 1, + sym_file_descriptor, + ACTIONS(1580), 1, + sym__special_character, + STATE(651), 1, + aux_sym__literal_repeat1, + ACTIONS(1276), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41450,15 +40287,675 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [23150] = 3, + [21667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 4, + ACTIONS(1427), 3, sym_file_descriptor, sym__concat, sym_variable_name, + ACTIONS(1425), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1288), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21753] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1284), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1376), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21839] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1582), 1, + sym__special_character, + STATE(576), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1369), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21886] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1585), 1, + sym__concat, + STATE(547), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [21933] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 1, + sym__concat, + STATE(585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 3, + sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(1314), 31, + ACTIONS(1227), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [21980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1474), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22023] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1589), 1, + sym__concat, + STATE(584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1218), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1480), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1478), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22113] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1591), 1, + sym__concat, + STATE(582), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1211), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22160] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1247), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22203] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1594), 1, + sym__concat, + STATE(584), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1211), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22250] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1597), 1, + sym__concat, + STATE(582), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1218), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22297] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1599), 1, + sym__special_character, + STATE(715), 1, + aux_sym__literal_repeat1, + ACTIONS(1392), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1388), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22344] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1601), 1, + sym__concat, + STATE(580), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1227), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [22391] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1603), 1, + sym__concat, + STATE(592), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1227), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41490,15 +40987,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [23193] = 3, + [22438] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 4, - sym_file_descriptor, + ACTIONS(1605), 1, sym__concat, - sym_variable_name, + STATE(589), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 2, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1430), 31, + ACTIONS(1211), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41530,13 +41029,542 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [23236] = 3, + [22485] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 2, + ACTIONS(1610), 1, + anon_sym_DQUOTE, + ACTIONS(1612), 1, + sym_raw_string, + ACTIONS(1614), 1, + aux_sym__simple_variable_name_token1, + STATE(1833), 1, + sym_string, + ACTIONS(555), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1608), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [22538] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1616), 1, + sym__special_character, + STATE(591), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 3, sym_file_descriptor, sym_variable_name, - ACTIONS(1466), 33, + ts_builtin_sym_end, + ACTIONS(1369), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1619), 1, + sym__concat, + STATE(589), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1218), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1284), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1288), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1292), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1296), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22804] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1300), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1267), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1304), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22933] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1308), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [22976] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1312), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23019] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1316), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23062] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1474), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -41570,15 +41598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [23279] = 3, + [23105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 4, + ACTIONS(1322), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1434), 31, + ACTIONS(1320), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41610,15 +41638,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [23322] = 3, + [23148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 4, + ACTIONS(1326), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1340), 31, + ACTIONS(1324), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41650,15 +41678,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [23365] = 3, + [23191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 4, + ACTIONS(1330), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1340), 31, + ACTIONS(1328), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41690,15 +41718,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [23408] = 3, + [23234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(1443), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1344), 31, + ACTIONS(1441), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -41730,133 +41758,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [23451] = 3, + [23277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1348), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1438), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23537] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1215), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23580] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1203), 2, + ACTIONS(1480), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1201), 33, + ACTIONS(1478), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_esac, @@ -41890,14 +41798,1462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [23623] = 3, + [23320] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 4, + ACTIONS(1451), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, + ACTIONS(1449), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1346), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1346), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23449] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1350), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1358), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1453), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1211), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1247), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [23664] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1380), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1425), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23750] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1263), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1376), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1394), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [23879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1284), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [23922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1288), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [23965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1292), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24008] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + sym__special_character, + STATE(576), 1, + aux_sym__literal_repeat1, + ACTIONS(1392), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1388), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1296), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1300), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1267), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24184] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1304), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24227] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1308), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1227), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [24313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1394), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1376), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1263), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1312), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24485] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1425), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1380), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1316), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24614] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1587), 1, + sym__concat, + STATE(585), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1249), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1247), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1227), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1320), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24747] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1324), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24790] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1623), 1, + sym__special_character, + STATE(643), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1369), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24837] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1328), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [24880] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1626), 1, + sym__special_character, + STATE(643), 1, + aux_sym__literal_repeat1, + ACTIONS(1364), 2, + sym_file_descriptor, + ts_builtin_sym_end, ACTIONS(1362), 31, anon_sym_LF, anon_sym_SEMI, @@ -41906,6 +43262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -41918,7 +43276,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -41927,177 +43284,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [23666] = 3, + [24927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1446), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1444), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1374), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1426), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23795] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1378), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [23838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 3, + ACTIONS(1443), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1251), 32, + ACTIONS(1441), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -42130,18 +43326,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [23881] = 3, + [24970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(1378), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1270), 32, + ACTIONS(1376), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 1, + sym_file_descriptor, + ACTIONS(1207), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -42170,18 +43406,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [23924] = 3, + [25056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 3, + ACTIONS(1427), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1274), 32, + ACTIONS(1425), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1227), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -42210,255 +43486,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [23967] = 5, + [25142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, + ACTIONS(1374), 1, + sym_file_descriptor, + ACTIONS(1628), 1, sym__special_character, - STATE(574), 1, + STATE(651), 1, aux_sym__literal_repeat1, - ACTIONS(1400), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1396), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [24014] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1278), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1282), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1286), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24143] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1290), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24186] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1294), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24229] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1378), 33, + ACTIONS(1369), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -42481,7 +43518,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -42492,17 +43528,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [24272] = 3, + [25189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 2, + ACTIONS(1382), 3, sym_file_descriptor, sym__concat, - ACTIONS(1426), 33, + ts_builtin_sym_end, + ACTIONS(1380), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -42532,17 +43568,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [24315] = 3, + [25232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1427), 3, sym_file_descriptor, sym__concat, - ACTIONS(1374), 33, + ts_builtin_sym_end, + ACTIONS(1425), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -42572,15 +43608,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [24358] = 3, + [25275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(1265), 3, sym_file_descriptor, - ACTIONS(1195), 34, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1263), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [25318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1376), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [25361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1394), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [25404] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1211), 33, anon_sym_LF, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -42612,177 +43768,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [24401] = 3, + [25447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(1455), 2, sym_file_descriptor, sym__concat, - ACTIONS(1444), 33, + ACTIONS(1453), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24444] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1362), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1298), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24530] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1302), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1195), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -42810,20 +43805,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [24616] = 5, + [25490] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1573), 1, + ACTIONS(1603), 1, sym__concat, - STATE(583), 1, + STATE(592), 1, aux_sym_concatenation_repeat1, - ACTIONS(1203), 3, + ACTIONS(1447), 2, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(1201), 30, + ACTIONS(1445), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -42852,259 +43847,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [24663] = 3, + [25537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 3, + ACTIONS(1451), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1306), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1310), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24749] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1611), 1, - sym__special_character, - STATE(643), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1355), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1314), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1430), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24882] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1614), 1, - sym__special_character, - STATE(643), 1, - aux_sym__literal_repeat1, - ACTIONS(1338), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1336), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [24929] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1426), 33, + ACTIONS(1449), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43138,96 +43890,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [24972] = 3, + [25580] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(1417), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1444), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1580), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - sym_file_descriptor, - ACTIONS(1237), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25058] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 1, - sym_file_descriptor, - ACTIONS(1616), 1, - sym__special_character, - STATE(650), 1, + STATE(651), 1, aux_sym__literal_repeat1, - ACTIONS(1355), 32, + ACTIONS(1415), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43260,53 +43932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [25105] = 3, + [25627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(1195), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 2, + ACTIONS(1443), 2, sym_file_descriptor, sym__concat, - ACTIONS(1215), 33, + ACTIONS(1441), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43340,462 +43972,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [25191] = 3, + [25670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1438), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1631), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1362), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25277] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1444), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25320] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1374), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1426), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1378), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1434), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1430), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1215), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25578] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1416), 1, - sym_file_descriptor, - ACTIONS(1607), 1, - sym__special_character, - STATE(650), 1, - aux_sym__literal_repeat1, - ACTIONS(1414), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [25625] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1589), 1, - sym__concat, STATE(591), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1404), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1402), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25672] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1619), 1, - sym__special_character, - STATE(590), 1, aux_sym__literal_repeat1, - ACTIONS(1422), 3, + ACTIONS(1433), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1420), 30, + ACTIONS(1431), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43826,18 +44014,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [25719] = 5, + [25717] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1619), 1, + ACTIONS(1631), 1, sym__special_character, - STATE(590), 1, + STATE(591), 1, aux_sym__literal_repeat1, - ACTIONS(1400), 3, + ACTIONS(1392), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1396), 30, + ACTIONS(1388), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43868,14 +44056,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [25766] = 3, + [25764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 3, + ACTIONS(1378), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1426), 32, + ACTIONS(1376), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43908,14 +44096,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [25809] = 3, + [25807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1446), 3, + ACTIONS(1427), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1444), 32, + ACTIONS(1425), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -43948,57 +44136,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [25852] = 3, + [25850] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1195), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [25895] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1614), 1, + ACTIONS(1626), 1, sym__special_character, STATE(643), 1, aux_sym__literal_repeat1, - ACTIONS(1266), 2, + ACTIONS(1280), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1262), 31, + ACTIONS(1276), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44030,17 +44178,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [25942] = 5, + [25897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1609), 1, - sym__special_character, - STATE(574), 1, - aux_sym__literal_repeat1, - ACTIONS(1422), 2, + ACTIONS(1229), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1420), 31, + ACTIONS(1227), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [25940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1621), 1, + sym__special_character, + STATE(576), 1, + aux_sym__literal_repeat1, + ACTIONS(1433), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1431), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44072,18 +44260,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [25989] = 3, + [25987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 2, + ACTIONS(1255), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1215), 33, + ACTIONS(1253), 34, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -44112,16 +44300,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [26032] = 5, + [26030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1404), 1, + ACTIONS(1447), 1, sym_file_descriptor, - ACTIONS(1571), 1, + ACTIONS(1585), 1, sym__concat, STATE(547), 1, aux_sym_concatenation_repeat1, - ACTIONS(1402), 32, + ACTIONS(1445), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44154,53 +44342,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [26079] = 3, + [26077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1249), 1, - sym_file_descriptor, - ACTIONS(1247), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26122] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 2, + ACTIONS(1213), 2, sym_file_descriptor, sym__concat, - ACTIONS(1438), 33, + ACTIONS(1211), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44234,214 +44382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [26165] = 3, + [26120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1348), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26208] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1344), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1434), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26380] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, + ACTIONS(1213), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1215), 32, + ACTIONS(1211), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44474,14 +44422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [26423] = 3, + [26163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 3, + ACTIONS(1455), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1438), 32, + ACTIONS(1453), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -44514,616 +44462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [26466] = 3, + [26206] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 2, + ACTIONS(1455), 2, sym_file_descriptor, sym__concat, - ACTIONS(1251), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26509] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1270), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1274), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26595] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1278), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1438), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26681] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1282), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1286), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1290), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1294), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1298), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1302), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [26939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1430), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [26982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1306), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [27025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1310), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [27068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1314), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [27111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 1, - sym_file_descriptor, - ACTIONS(1607), 1, - sym__special_character, - STATE(650), 1, - aux_sym__literal_repeat1, - ACTIONS(1336), 32, + ACTIONS(1453), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45146,6 +44491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -45156,14 +44502,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [27158] = 3, + [26249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, + ACTIONS(1360), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1358), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1350), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1449), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26464] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1340), 32, + ACTIONS(1211), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45196,96 +44742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [27201] = 3, + [26507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, - sym_file_descriptor, - ACTIONS(1177), 34, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27244] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1614), 1, - sym__special_character, - STATE(643), 1, - aux_sym__literal_repeat1, - ACTIONS(1416), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1414), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27291] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, + ACTIONS(1455), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1340), 32, + ACTIONS(1453), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45318,137 +44782,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [27334] = 3, + [26550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, + ACTIONS(1601), 1, sym__concat, - ts_builtin_sym_end, - ACTIONS(1344), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [27420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [27463] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1587), 1, - sym__concat, - STATE(579), 1, + STATE(580), 1, aux_sym_concatenation_repeat1, - ACTIONS(1203), 2, + ACTIONS(1249), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1201), 31, + ACTIONS(1247), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45480,23 +44824,868 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, + [26597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1441), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1328), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1324), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1320), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26769] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + anon_sym_DQUOTE, + ACTIONS(1529), 1, + sym_raw_string, + ACTIONS(1531), 1, + aux_sym__simple_variable_name_token1, + STATE(1694), 1, + sym_string, + ACTIONS(555), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1525), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + ACTIONS(547), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [26822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1284), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26865] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1288), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1292), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1296), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [26994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1300), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27037] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1267), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27080] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1304), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1316), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27166] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1312), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27209] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1308), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27252] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1304), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1308), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27338] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1312), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1316), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27424] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1320), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1324), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, [27510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 2, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, - ACTIONS(1430), 33, + sym_variable_name, + ACTIONS(1328), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -45523,14 +45712,14 @@ static const uint16_t ts_small_parse_table[] = { [27553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 2, + ACTIONS(1360), 3, sym_file_descriptor, sym__concat, - ACTIONS(1314), 33, + ts_builtin_sym_end, + ACTIONS(1358), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -45563,10 +45752,10 @@ static const uint16_t ts_small_parse_table[] = { [27596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 2, + ACTIONS(1269), 2, sym_file_descriptor, sym__concat, - ACTIONS(1310), 33, + ACTIONS(1267), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45603,10 +45792,10 @@ static const uint16_t ts_small_parse_table[] = { [27639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 2, + ACTIONS(1302), 2, sym_file_descriptor, sym__concat, - ACTIONS(1306), 33, + ACTIONS(1300), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45643,19 +45832,20 @@ static const uint16_t ts_small_parse_table[] = { [27682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 2, + ACTIONS(1298), 2, sym_file_descriptor, sym__concat, - ACTIONS(1344), 33, + ACTIONS(1296), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -45677,20 +45867,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, [27725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 3, + ACTIONS(1294), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1434), 32, + ACTIONS(1292), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -45720,16 +45909,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [27768] = 5, + [27768] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1360), 1, + ACTIONS(1348), 3, sym_file_descriptor, - ACTIONS(1621), 1, + sym__concat, + sym_variable_name, + ACTIONS(1346), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym__special_character, - STATE(712), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1346), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1350), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27897] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1358), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [27940] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1633), 1, + sym__special_character, + STATE(715), 1, aux_sym__literal_repeat1, - ACTIONS(1355), 32, + ACTIONS(1374), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1369), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45759,17 +46109,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [27815] = 3, + [27987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 3, + ACTIONS(1382), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1434), 32, + ACTIONS(1380), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45802,13 +46151,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [27858] = 3, + [28030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(1290), 2, sym_file_descriptor, sym__concat, - ACTIONS(1362), 33, + ACTIONS(1288), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [28073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1284), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [28116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1263), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [28159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1394), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [28202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1284), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -45842,458 +46351,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [27901] = 3, + [28245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, + ACTIONS(1290), 2, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, - ACTIONS(1348), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [27944] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(1510), 1, - sym_raw_string, - ACTIONS(1512), 1, - aux_sym__simple_variable_name_token1, - STATE(1723), 1, - sym_string, - ACTIONS(545), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1506), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - ACTIONS(537), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [27997] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1251), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28040] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1270), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28083] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1274), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1278), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1282), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1302), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1298), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28298] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1294), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1290), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1374), 33, + ACTIONS(1288), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -46327,14 +46391,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28427] = 3, + [28288] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 3, + ACTIONS(1294), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1286), 32, + ACTIONS(1292), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -46365,16 +46428,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28470] = 3, + [28331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 3, + ACTIONS(1298), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1290), 32, + ACTIONS(1296), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -46405,16 +46468,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28513] = 3, + [28374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, + ACTIONS(1302), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1294), 32, + ACTIONS(1300), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -46445,16 +46508,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28556] = 3, + [28417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1269), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1298), 32, + ACTIONS(1267), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -46485,16 +46548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28599] = 3, + [28460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1306), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1302), 32, + ACTIONS(1304), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -46525,16 +46588,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28642] = 3, + [28503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 3, + ACTIONS(1310), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1306), 32, + ACTIONS(1308), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -46565,16 +46628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28685] = 3, + [28546] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, + ACTIONS(1314), 2, sym_file_descriptor, sym__concat, - sym_variable_name, - ACTIONS(1310), 32, + ACTIONS(1312), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -46605,176 +46668,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28728] = 3, + [28589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(1318), 2, sym_file_descriptor, sym__concat, - ACTIONS(1286), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1282), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1278), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1274), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [28900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1314), 32, + ACTIONS(1316), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -46805,27 +46708,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28943] = 5, + [28632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1559), 1, + ACTIONS(1322), 2, sym_file_descriptor, - ACTIONS(1624), 1, + sym__concat, + ACTIONS(1320), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym__special_character, - STATE(712), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [28675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1324), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [28718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1328), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [28761] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1364), 1, + sym_file_descriptor, + ACTIONS(1580), 1, + sym__special_character, + STATE(651), 1, aux_sym__literal_repeat1, - ACTIONS(1555), 32, + ACTIONS(1362), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -46846,189 +46871,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [28990] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1344), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1348), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29162] = 5, + [28808] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(1626), 1, sym__special_character, - STATE(744), 1, + STATE(643), 1, aux_sym__literal_repeat1, - ACTIONS(1360), 2, + ACTIONS(1417), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1355), 31, + ts_builtin_sym_end, + ACTIONS(1415), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -47051,17 +46915,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [29209] = 3, + [28855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(1187), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1270), 33, + ACTIONS(1183), 34, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [28898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [28941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [28984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1350), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [29027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1350), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -47091,728 +47115,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [29252] = 3, + [29070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 2, + ACTIONS(1374), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1251), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1636), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1378), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1362), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1374), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1344), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1430), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1444), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29550] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1426), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29592] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1438), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1215), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29676] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1434), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29718] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1430), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1239), 1, - sym_file_descriptor, - ACTIONS(1237), 33, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [29802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1378), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1378), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1462), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29928] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1426), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [29970] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1374), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30012] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1629), 1, - sym__special_character, - STATE(873), 1, + STATE(741), 1, aux_sym__literal_repeat1, - ACTIONS(1400), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1396), 30, + ACTIONS(1369), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -47836,20 +47154,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [30058] = 3, + [29117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(1382), 2, sym_file_descriptor, sym__concat, - ACTIONS(1362), 32, + ACTIONS(1380), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -47877,18 +47197,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [30100] = 3, + [29160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 2, + ACTIONS(1265), 2, sym_file_descriptor, - sym_variable_name, - ACTIONS(1195), 32, + sym__concat, + ACTIONS(1263), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -47916,442 +47237,96 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [30142] = 3, + [29203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 3, + ACTIONS(1396), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1394), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [29246] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1573), 1, + sym_file_descriptor, + ACTIONS(1639), 1, + sym__special_character, + STATE(741), 1, + aux_sym__literal_repeat1, + ACTIONS(1569), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [29293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1374), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1444), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1348), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1344), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1340), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1314), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30436] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1310), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1362), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1306), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym_file_descriptor, - sym__concat, - ACTIONS(1302), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [30604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1181), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1177), 32, + ACTIONS(1346), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48384,21 +47359,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [30646] = 3, + [29336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 2, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, - ACTIONS(1298), 32, + ts_builtin_sym_end, + ACTIONS(1346), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -48420,16 +47397,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [30688] = 3, + [29379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 2, + ACTIONS(1451), 3, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1449), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [29422] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 3, + sym_file_descriptor, + sym__concat, sym_variable_name, - ACTIONS(1195), 32, + ACTIONS(1441), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48462,13 +47479,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [30730] = 3, + [29465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 2, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, - ACTIONS(1294), 32, + sym_variable_name, + ACTIONS(1346), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [29507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1394), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [29549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1376), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48501,42 +47596,434 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [30772] = 19, + [29591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, + ACTIONS(1476), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1474), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [29633] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1641), 1, + sym__special_character, + STATE(848), 1, + aux_sym__literal_repeat1, + ACTIONS(1392), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1388), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [29679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 1, + sym_file_descriptor, + ACTIONS(1207), 33, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [29721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1211), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [29763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1187), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1183), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [29805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1453), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [29847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1394), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [29889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1376), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [29931] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1449), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [29973] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1441), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30015] = 19, + ACTIONS(3), 1, + sym_comment, ACTIONS(39), 1, - sym__special_character, + anon_sym_DOLLAR, ACTIONS(41), 1, + sym__special_character, + ACTIONS(43), 1, anon_sym_DQUOTE, - ACTIONS(45), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(47), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DOLLAR_LBRACE, ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, anon_sym_BQUOTE, - ACTIONS(53), 1, + ACTIONS(55), 1, sym_file_descriptor, - ACTIONS(1147), 1, - sym_variable_name, - ACTIONS(1153), 1, + ACTIONS(1159), 1, sym_word, - STATE(205), 1, + ACTIONS(1161), 1, + sym_variable_name, + STATE(233), 1, sym_command_name, - STATE(700), 1, + STATE(735), 1, aux_sym__literal_repeat1, - STATE(778), 1, + STATE(757), 1, sym_concatenation, - STATE(3262), 1, + STATE(3263), 1, sym_subscript, - ACTIONS(43), 2, + ACTIONS(45), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(51), 2, + ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1679), 3, + STATE(1669), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, @@ -48547,7 +48034,7 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(35), 8, + ACTIONS(37), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -48556,12 +48043,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [30846] = 3, + [30089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1249), 1, + ACTIONS(1265), 3, sym_file_descriptor, - ACTIONS(1247), 33, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1263), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30131] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1425), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1480), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1478), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30215] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1255), 1, + sym_file_descriptor, + ACTIONS(1253), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48595,53 +48199,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [30888] = 19, + [30257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(1382), 3, sym_file_descriptor, - ACTIONS(209), 1, - anon_sym_DOLLAR, - ACTIONS(211), 1, - sym__special_character, - ACTIONS(213), 1, - anon_sym_DQUOTE, - ACTIONS(217), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(221), 1, - anon_sym_BQUOTE, - ACTIONS(1145), 1, - sym_word, - ACTIONS(1147), 1, - sym_variable_name, - STATE(197), 1, - sym_command_name, - STATE(469), 1, - aux_sym__literal_repeat1, - STATE(699), 1, - sym_concatenation, - STATE(3262), 1, - sym_subscript, - ACTIONS(215), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(223), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1679), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(328), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(35), 8, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1380), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -48650,13 +48222,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [30962] = 3, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 2, + ACTIONS(1229), 3, sym_file_descriptor, sym_variable_name, - ACTIONS(1466), 32, + ts_builtin_sym_end, + ACTIONS(1227), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1394), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48689,12 +48316,223 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31004] = 3, + [30383] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(55), 1, sym_file_descriptor, - ACTIONS(1195), 33, + ACTIONS(215), 1, + anon_sym_DOLLAR, + ACTIONS(217), 1, + sym__special_character, + ACTIONS(219), 1, + anon_sym_DQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(225), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(227), 1, + anon_sym_BQUOTE, + ACTIONS(1161), 1, + sym_variable_name, + ACTIONS(1169), 1, + sym_word, + STATE(192), 1, + sym_command_name, + STATE(469), 1, + aux_sym__literal_repeat1, + STATE(736), 1, + sym_concatenation, + STATE(3263), 1, + sym_subscript, + ACTIONS(221), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1669), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(330), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(37), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [30457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1263), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1380), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1227), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1358), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1227), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48728,14 +48566,326 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31046] = 3, + [30667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 3, + ACTIONS(1352), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1350), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30709] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 2, sym_file_descriptor, sym_variable_name, + ACTIONS(1227), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [30793] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1346), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1328), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30877] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1324), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30919] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1320), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [30961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1316), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [31003] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__concat, ts_builtin_sym_end, - ACTIONS(1195), 31, + ACTIONS(1211), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48767,13 +48917,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31088] = 3, + [31045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 2, + ACTIONS(1314), 2, sym_file_descriptor, sym__concat, - ACTIONS(1290), 32, + ACTIONS(1312), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48806,13 +48956,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31130] = 3, + [31087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 2, + ACTIONS(1310), 2, sym_file_descriptor, sym__concat, - ACTIONS(1286), 32, + ACTIONS(1308), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48845,13 +48995,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31172] = 3, + [31129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 2, + ACTIONS(1306), 2, sym_file_descriptor, sym__concat, - ACTIONS(1282), 32, + ACTIONS(1304), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48884,13 +49034,169 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31214] = 3, + [31171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1239), 2, + ACTIONS(1455), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1453), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [31213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1267), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [31255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1300), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [31297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1296), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [31339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(1237), 32, + ACTIONS(1207), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -48923,55 +49229,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [31256] = 3, + [31381] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 2, + ACTIONS(1573), 1, sym_file_descriptor, - sym__concat, - ACTIONS(1278), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1643), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [31298] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1559), 1, - sym_file_descriptor, - ACTIONS(1631), 1, - sym__special_character, - STATE(801), 1, + STATE(802), 1, aux_sym__literal_repeat1, - ACTIONS(1555), 31, + ACTIONS(1569), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49003,13 +49270,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31344] = 3, + [31427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 2, + ACTIONS(1294), 2, sym_file_descriptor, sym__concat, - ACTIONS(1274), 32, + ACTIONS(1292), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49042,13 +49309,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31386] = 3, + [31469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 2, + ACTIONS(1290), 2, sym_file_descriptor, sym__concat, - ACTIONS(1270), 32, + ACTIONS(1288), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49081,13 +49348,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31428] = 3, + [31511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 2, + ACTIONS(1286), 2, sym_file_descriptor, sym__concat, - ACTIONS(1251), 32, + ACTIONS(1284), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49120,18 +49387,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31470] = 5, + [31553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1633), 1, - sym__special_character, - STATE(797), 1, - aux_sym__literal_repeat1, ACTIONS(1360), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1358), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [31595] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1645), 1, + sym__special_character, + STATE(799), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1355), 29, + ACTIONS(1369), 29, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49161,14 +49467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [31516] = 3, + [31641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 3, + ACTIONS(1352), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1215), 31, + ACTIONS(1350), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49200,14 +49506,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31558] = 3, + [31683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 3, + ACTIONS(1348), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1438), 31, + ACTIONS(1346), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49239,55 +49545,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31600] = 3, + [31725] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, + ACTIONS(1374), 1, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1348), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1648), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [31642] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 1, - sym_file_descriptor, - ACTIONS(1636), 1, - sym__special_character, - STATE(801), 1, + STATE(802), 1, aux_sym__literal_repeat1, - ACTIONS(1355), 31, + ACTIONS(1369), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49319,15 +49586,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31688] = 3, + [31771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 4, + ACTIONS(1286), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1251), 30, + ACTIONS(1284), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49358,15 +49625,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [31730] = 3, + [31813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 4, + ACTIONS(1290), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1270), 30, + ACTIONS(1288), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49397,15 +49664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [31772] = 3, + [31855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 4, + ACTIONS(1294), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1274), 30, + ACTIONS(1292), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49436,14 +49703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [31814] = 3, + [31897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1203), 3, + ACTIONS(1348), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, ts_builtin_sym_end, - ACTIONS(1201), 31, + ACTIONS(1346), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49475,14 +49742,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31856] = 3, + [31939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, + ACTIONS(1249), 3, sym_file_descriptor, - sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(1344), 31, + ACTIONS(1247), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49514,15 +49781,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [31898] = 3, + [31981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 4, + ACTIONS(1298), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1278), 30, + ACTIONS(1296), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49553,15 +49820,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [31940] = 3, + [32023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1282), 30, + ACTIONS(1300), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49592,15 +49859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [31982] = 3, + [32065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 4, + ACTIONS(1269), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1286), 30, + ACTIONS(1267), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49631,131 +49898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [32024] = 3, + [32107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1290), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1294), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1298), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, + ACTIONS(1451), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1340), 31, + ACTIONS(1449), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49787,15 +49937,15 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [32192] = 3, + [32149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1302), 30, + ACTIONS(1304), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49826,53 +49976,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [32234] = 19, + [32191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(1310), 4, sym_file_descriptor, - ACTIONS(91), 1, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1308), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR, - ACTIONS(93), 1, sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32233] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1312), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1316), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32317] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + sym_file_descriptor, ACTIONS(95), 1, - anon_sym_DQUOTE, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(1147), 1, + ACTIONS(1161), 1, sym_variable_name, - ACTIONS(1149), 1, + ACTIONS(1165), 1, sym_word, - STATE(228), 1, + STATE(232), 1, sym_command_name, - STATE(662), 1, + STATE(661), 1, aux_sym__literal_repeat1, - STATE(816), 1, + STATE(817), 1, sym_concatenation, - STATE(3262), 1, + STATE(3263), 1, sym_subscript, - ACTIONS(97), 2, + ACTIONS(101), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(105), 2, + ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1679), 3, + STATE(1669), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - STATE(441), 6, + STATE(442), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(35), 8, + ACTIONS(37), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -49881,12 +50148,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [32308] = 3, + [32391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1181), 1, + ACTIONS(1187), 1, sym_file_descriptor, - ACTIONS(1177), 33, + ACTIONS(1183), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49920,17 +50187,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [32350] = 5, + [32433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, - sym__special_character, - STATE(871), 1, - aux_sym__literal_repeat1, - ACTIONS(1559), 2, + ACTIONS(1322), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, - ACTIONS(1555), 30, + ACTIONS(1320), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -49950,6 +50215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -49958,56 +50224,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [32396] = 19, + [32475] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(53), 1, + ACTIONS(55), 1, sym_file_descriptor, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, ACTIONS(95), 1, - anon_sym_DQUOTE, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, + anon_sym_DQUOTE, ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, anon_sym_BQUOTE, - ACTIONS(1147), 1, + ACTIONS(1161), 1, sym_variable_name, - ACTIONS(1149), 1, + ACTIONS(1165), 1, sym_word, - STATE(237), 1, + STATE(246), 1, sym_command_name, - STATE(662), 1, + STATE(661), 1, aux_sym__literal_repeat1, - STATE(816), 1, + STATE(817), 1, sym_concatenation, - STATE(3262), 1, + STATE(3263), 1, sym_subscript, - ACTIONS(97), 2, + ACTIONS(101), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(105), 2, + ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1679), 3, + STATE(1669), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - STATE(441), 6, + STATE(442), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(35), 8, + ACTIONS(37), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -50016,15 +50281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [32470] = 3, + [32549] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 4, + ACTIONS(1651), 1, + sym__special_character, + STATE(870), 1, + aux_sym__literal_repeat1, + ACTIONS(1573), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(1306), 30, + ACTIONS(1569), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -50044,7 +50311,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -50053,297 +50319,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32512] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1310), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1314), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1340), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1340), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1344), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32722] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1348), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1362), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32806] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(1645), 1, - sym_raw_string, - ACTIONS(1647), 1, aux_sym__simple_variable_name_token1, - STATE(1965), 1, + sym_word, + anon_sym_AMP, + [32595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1324), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1328), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32679] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1346), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1346), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1350), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1358), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1380), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [32889] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1655), 1, + anon_sym_DQUOTE, + ACTIONS(1657), 1, + sym_raw_string, + ACTIONS(1659), 1, + aux_sym__simple_variable_name_token1, + STATE(2006), 1, sym_string, - ACTIONS(545), 3, + ACTIONS(555), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1641), 9, + ACTIONS(1653), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -50353,7 +50620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 18, + ACTIONS(547), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -50372,15 +50639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [32858] = 3, + [32941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 4, + ACTIONS(1265), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1374), 30, + ACTIONS(1263), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -50411,145 +50678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [32900] = 3, + [32983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 4, + ACTIONS(1229), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1378), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1426), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [32984] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(53), 1, - sym_file_descriptor, - ACTIONS(153), 1, - anon_sym_DOLLAR, - ACTIONS(155), 1, - sym__special_character, - ACTIONS(157), 1, - anon_sym_DQUOTE, - ACTIONS(161), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(163), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(165), 1, - anon_sym_BQUOTE, - ACTIONS(1147), 1, - sym_variable_name, - ACTIONS(1151), 1, - sym_word, - STATE(179), 1, - sym_command_name, - STATE(358), 1, - aux_sym__literal_repeat1, - STATE(534), 1, - sym_concatenation, - STATE(3262), 1, - sym_subscript, - ACTIONS(159), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1679), 3, - sym_variable_assignment, - sym_file_redirect, - aux_sym_command_repeat1, - STATE(281), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(35), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [33058] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_file_descriptor, - ACTIONS(1195), 33, + ACTIONS(1227), 33, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -50583,15 +50717,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [33100] = 3, + [33025] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 4, + ACTIONS(55), 1, + sym_file_descriptor, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(163), 1, + sym__special_character, + ACTIONS(165), 1, + anon_sym_DQUOTE, + ACTIONS(169), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(171), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(173), 1, + anon_sym_BQUOTE, + ACTIONS(1161), 1, + sym_variable_name, + ACTIONS(1167), 1, + sym_word, + STATE(171), 1, + sym_command_name, + STATE(349), 1, + aux_sym__literal_repeat1, + STATE(536), 1, + sym_concatenation, + STATE(3263), 1, + sym_subscript, + ACTIONS(167), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(175), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1669), 3, + sym_variable_assignment, + sym_file_redirect, + aux_sym_command_repeat1, + STATE(287), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(37), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [33099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1376), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 4, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1434), 30, + ACTIONS(1441), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -50622,637 +50850,1343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [33142] = 3, + [33183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1449), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1425), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1255), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1253), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1453), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1211), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33393] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1480), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1478), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [33435] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1211), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33477] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1227), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1453), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1425), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33603] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1376), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1449), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1441), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33729] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1394), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33771] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1661), 1, + sym__special_character, + STATE(848), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1369), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1263), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33859] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1474), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [33901] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1474), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33943] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1380), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [33985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1358), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1350), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 2, + sym_file_descriptor, + sym__concat, + ACTIONS(1425), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [34111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1441), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [34153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1480), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1478), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1346), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1328), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1324), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34321] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1320), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34363] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1316), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34405] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1312), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34447] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1664), 1, + sym__special_character, + STATE(799), 1, + aux_sym__literal_repeat1, + ACTIONS(1392), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1388), 29, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34493] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1308), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1304), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 3, + sym_file_descriptor, + sym__concat, + sym_variable_name, + ACTIONS(1267), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [34619] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1249), 2, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, ACTIONS(1247), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1438), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33226] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1444), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33268] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1466), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [33310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1215), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33352] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1195), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33394] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1215), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33436] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1438), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1444), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1426), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1434), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1430), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33646] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1340), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [33688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1378), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1462), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [33772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1374), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33814] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1462), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51285,131 +52219,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [33856] = 3, + [34661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1362), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1348), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [33982] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 3, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1434), 31, + ACTIONS(1328), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51441,291 +52258,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [34024] = 3, + [34703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1430), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, + ACTIONS(1666), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [34066] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1466), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34108] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1314), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [34150] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1340), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34192] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1314), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1310), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1306), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34318] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1649), 1, - sym__special_character, - STATE(797), 1, + STATE(870), 1, aux_sym__literal_repeat1, - ACTIONS(1400), 3, + ACTIONS(1374), 2, sym_file_descriptor, - sym_variable_name, ts_builtin_sym_end, - ACTIONS(1396), 29, + ACTIONS(1369), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51753,16 +52296,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [34364] = 3, + [34749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 3, + ACTIONS(1326), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1310), 31, + ACTIONS(1324), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51794,14 +52338,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [34406] = 3, + [34791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 3, + ACTIONS(1302), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1302), 31, + ACTIONS(1300), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51833,14 +52377,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [34448] = 3, + [34833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 3, + ACTIONS(1298), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1298), 31, + ACTIONS(1296), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51872,14 +52416,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [34490] = 3, + [34875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1294), 31, + ACTIONS(1292), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51911,14 +52455,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [34532] = 3, + [34917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 3, + ACTIONS(1290), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1290), 31, + ACTIONS(1288), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51950,14 +52494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [34574] = 3, + [34959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 3, + ACTIONS(1286), 3, sym_file_descriptor, sym__concat, sym_variable_name, - ACTIONS(1286), 31, + ACTIONS(1284), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -51989,133 +52533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [34616] = 3, + [35001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1282), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1203), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1201), 32, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34700] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1651), 1, - sym__special_character, - STATE(871), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1355), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [34746] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 3, + ACTIONS(1286), 3, sym_file_descriptor, sym__concat, ts_builtin_sym_end, - ACTIONS(1306), 31, + ACTIONS(1284), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -52147,522 +52572,403 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [34788] = 5, + [35043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1654), 1, + ACTIONS(1290), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1288), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, sym__special_character, - STATE(873), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 2, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35085] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1292), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1296), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35169] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1300), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35211] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1267), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35253] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1320), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35295] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1304), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35337] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1308), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1312), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + ACTIONS(1316), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1355), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1278), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1274), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34918] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1270), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [34960] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - sym_variable_name, - ACTIONS(1251), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [35002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1302), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1251), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1270), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1274), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35170] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1278), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35212] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1282), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35254] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1286), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1290), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1203), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1201), 32, + ACTIONS(1247), 32, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -52695,324 +53001,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [35380] = 3, + [35505] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1294), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1671), 1, anon_sym_DQUOTE, + ACTIONS(1673), 1, sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1675), 1, aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - ACTIONS(1298), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1195), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [35505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1466), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [35546] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(1195), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - anon_sym_AMP, - [35587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1462), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [35628] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1464), 3, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - ACTIONS(1462), 30, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [35669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1203), 2, - sym_file_descriptor, - sym_variable_name, - ACTIONS(1201), 31, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [35710] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1661), 1, - sym_raw_string, - ACTIONS(1663), 1, - aux_sym__simple_variable_name_token1, - STATE(1855), 1, + STATE(1752), 1, sym_string, - ACTIONS(1657), 9, + ACTIONS(1669), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -53022,7 +53022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 20, + ACTIONS(547), 20, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -53043,14 +53043,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, sym_test_operator, anon_sym_AMP, - [35759] = 3, + [35554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1203), 3, + ACTIONS(1229), 1, + sym_file_descriptor, + ACTIONS(1227), 32, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1201), 30, + ACTIONS(1474), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [35636] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(1227), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + anon_sym_AMP, + [35677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1480), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1478), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [35718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1227), 30, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [35759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 3, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + ACTIONS(1247), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -53084,10 +53274,10 @@ static const uint16_t ts_small_parse_table[] = { [35800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 2, + ACTIONS(1476), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1195), 31, + ACTIONS(1474), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -53122,11 +53312,11 @@ static const uint16_t ts_small_parse_table[] = { [35841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1468), 3, + ACTIONS(1480), 3, sym_file_descriptor, sym_variable_name, ts_builtin_sym_end, - ACTIONS(1466), 30, + ACTIONS(1478), 30, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -53160,9 +53350,10 @@ static const uint16_t ts_small_parse_table[] = { [35882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(1249), 2, sym_file_descriptor, - ACTIONS(1195), 32, + sym_variable_name, + ACTIONS(1247), 31, anon_sym_LF, anon_sym_SEMI, anon_sym_PIPE, @@ -53192,87 +53383,274 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, anon_sym_AMP, - [35923] = 16, + [35923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, + ACTIONS(1229), 2, + sym_file_descriptor, + sym_variable_name, + ACTIONS(1227), 31, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR, - ACTIONS(1675), 1, sym__special_character, - ACTIONS(1677), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, anon_sym_BQUOTE, - STATE(1745), 1, - aux_sym__literal_repeat1, - STATE(1944), 1, - sym__expression, - ACTIONS(1671), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1683), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1665), 3, + sym_word, + anon_sym_AMP, + [35964] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_DQUOTE, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(1916), 1, + sym__expression, + ACTIONS(1683), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1677), 3, sym_raw_string, sym_ansii_c_string, sym_word, - ACTIONS(1667), 4, + ACTIONS(1679), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1716), 6, + STATE(1724), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2011), 6, + STATE(2008), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [35989] = 9, + [36030] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1689), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(1691), 1, - sym_raw_string, + anon_sym_DOLLAR_LPAREN, ACTIONS(1693), 1, - aux_sym__simple_variable_name_token1, - STATE(1959), 1, + anon_sym_BQUOTE, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(1975), 1, + sym__expression, + ACTIONS(1683), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1677), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(1697), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1724), 6, sym_string, - ACTIONS(537), 4, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2008), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [36096] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_DQUOTE, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(1959), 1, + sym__expression, + ACTIONS(1683), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1677), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(1699), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1724), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2008), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [36162] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_DQUOTE, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(1958), 1, + sym__expression, + ACTIONS(1683), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1677), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(1701), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1724), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2008), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [36228] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1707), 1, + anon_sym_DQUOTE, + ACTIONS(1709), 1, + sym_raw_string, + ACTIONS(1711), 1, + aux_sym__simple_variable_name_token1, + STATE(1948), 1, + sym_string, + ACTIONS(547), 4, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, - ACTIONS(1685), 4, + ACTIONS(1703), 4, anon_sym_BANG, anon_sym_DASH, anon_sym_0, anon_sym__, - ACTIONS(1687), 5, + ACTIONS(1705), 5, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - ACTIONS(545), 15, + ACTIONS(555), 15, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -53288,121 +53666,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [36041] = 16, + [36280] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, anon_sym_BQUOTE, - STATE(1745), 1, + STATE(1740), 1, aux_sym__literal_repeat1, - STATE(1998), 1, + STATE(1941), 1, sym__expression, - ACTIONS(1671), 2, + ACTIONS(1683), 2, anon_sym_BANG, sym_test_operator, - ACTIONS(1683), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1665), 3, + ACTIONS(1677), 3, sym_raw_string, sym_ansii_c_string, sym_word, - ACTIONS(1695), 4, + ACTIONS(1713), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1716), 6, + STATE(1724), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2011), 6, + STATE(2008), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [36107] = 16, + [36346] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, anon_sym_BQUOTE, - STATE(1745), 1, + STATE(1740), 1, aux_sym__literal_repeat1, - STATE(2007), 1, + STATE(1904), 1, sym__expression, - ACTIONS(1671), 2, + ACTIONS(1683), 2, anon_sym_BANG, sym_test_operator, - ACTIONS(1683), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1665), 3, + ACTIONS(1677), 3, sym_raw_string, sym_ansii_c_string, sym_word, - ACTIONS(1697), 4, + ACTIONS(1715), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1716), 6, + STATE(1724), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2011), 6, + STATE(2008), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [36173] = 8, + [36412] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1703), 1, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(1918), 1, + sym__expression, + ACTIONS(1683), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1677), 3, sym_raw_string, - ACTIONS(1705), 1, + sym_ansii_c_string, + sym_word, + ACTIONS(1717), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1724), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2008), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [36478] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + anon_sym_DQUOTE, + ACTIONS(1723), 1, + sym_raw_string, + ACTIONS(1725), 1, aux_sym__simple_variable_name_token1, - STATE(1798), 1, + STATE(1869), 1, sym_string, - ACTIONS(545), 2, + ACTIONS(555), 2, sym_file_descriptor, sym_variable_name, - ACTIONS(1699), 9, + ACTIONS(1719), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -53412,7 +53840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 17, + ACTIONS(547), 17, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -53430,375 +53858,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36223] = 16, + [36528] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, anon_sym_BQUOTE, - STATE(1745), 1, + STATE(1740), 1, aux_sym__literal_repeat1, - STATE(1999), 1, + STATE(1990), 1, sym__expression, - ACTIONS(1671), 2, + ACTIONS(1683), 2, anon_sym_BANG, sym_test_operator, - ACTIONS(1683), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1665), 3, + ACTIONS(1677), 3, sym_raw_string, sym_ansii_c_string, sym_word, - ACTIONS(1707), 4, + ACTIONS(1727), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1716), 6, + STATE(1724), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2011), 6, + STATE(2008), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [36289] = 16, + [36594] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, anon_sym_BQUOTE, - STATE(1745), 1, + STATE(1740), 1, aux_sym__literal_repeat1, - STATE(1980), 1, + STATE(2024), 1, sym__expression, - ACTIONS(1671), 2, + ACTIONS(1683), 2, anon_sym_BANG, sym_test_operator, - ACTIONS(1683), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1665), 3, + ACTIONS(1677), 3, sym_raw_string, sym_ansii_c_string, sym_word, - ACTIONS(1709), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1716), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2011), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36355] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - STATE(1745), 1, - aux_sym__literal_repeat1, - STATE(1930), 1, - sym__expression, - ACTIONS(1671), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1665), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1711), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1716), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2011), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36421] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - STATE(1745), 1, - aux_sym__literal_repeat1, - STATE(1919), 1, - sym__expression, - ACTIONS(1671), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1665), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1713), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1716), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2011), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36487] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - STATE(1745), 1, - aux_sym__literal_repeat1, - STATE(1927), 1, - sym__expression, - ACTIONS(1671), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1665), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1715), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1716), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2011), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36553] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - STATE(1745), 1, - aux_sym__literal_repeat1, - STATE(1946), 1, - sym__expression, - ACTIONS(1671), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1665), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(1717), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1716), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2011), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [36619] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1723), 1, - anon_sym_DQUOTE, - ACTIONS(1725), 1, - sym_raw_string, - ACTIONS(1727), 1, - aux_sym__simple_variable_name_token1, - STATE(2141), 1, - sym_string, - ACTIONS(537), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - ACTIONS(1719), 4, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_0, - anon_sym__, - ACTIONS(1721), 5, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - ACTIONS(545), 13, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [36669] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1733), 1, - anon_sym_DQUOTE, - ACTIONS(1735), 1, - sym_raw_string, - ACTIONS(1737), 1, - aux_sym__simple_variable_name_token1, - STATE(2315), 1, - sym_string, - ACTIONS(537), 4, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, ACTIONS(1729), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1724), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2008), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [36660] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_DQUOTE, + ACTIONS(1737), 1, + sym_raw_string, + ACTIONS(1739), 1, + aux_sym__simple_variable_name_token1, + STATE(2306), 1, + sym_string, + ACTIONS(547), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + ACTIONS(1731), 4, anon_sym_BANG, anon_sym_DASH, anon_sym_0, anon_sym__, - ACTIONS(1731), 5, + ACTIONS(1733), 5, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - ACTIONS(545), 13, + ACTIONS(555), 13, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, @@ -53812,184 +53999,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [36719] = 16, + [36710] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1741), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, + ACTIONS(1745), 1, anon_sym_DQUOTE, + ACTIONS(1747), 1, + sym_raw_string, + ACTIONS(1749), 1, + aux_sym__simple_variable_name_token1, + STATE(2095), 1, + sym_string, + ACTIONS(547), 4, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + ACTIONS(1741), 4, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_0, + anon_sym__, + ACTIONS(1743), 5, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + ACTIONS(555), 13, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [36760] = 16, + ACTIONS(3), 1, + sym_comment, ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_RPAREN_RPAREN, ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1769), 1, anon_sym_BQUOTE, - STATE(1961), 1, + STATE(1944), 1, aux_sym__literal_repeat1, - STATE(2388), 1, + STATE(2385), 1, sym__expression, - ACTIONS(1745), 2, + ACTIONS(1757), 2, anon_sym_BANG, sym_test_operator, - ACTIONS(1759), 2, + ACTIONS(1771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1739), 3, + ACTIONS(1751), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1832), 6, + STATE(1761), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2164), 6, + STATE(2151), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [36782] = 15, + [36823] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, + anon_sym_RBRACE, + ACTIONS(1779), 1, + anon_sym_DOLLAR, ACTIONS(1781), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1397), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1765), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [36843] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, ACTIONS(1783), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(1787), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1489), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1785), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [36904] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1789), 1, - anon_sym_RBRACE, - ACTIONS(1793), 1, anon_sym_SLASH, - STATE(2229), 1, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1463), 2, + STATE(1473), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1791), 7, + ACTIONS(1777), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -53997,38 +54133,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [36965] = 15, + [36884] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1795), 1, anon_sym_RBRACE, ACTIONS(1799), 1, sym_regex, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1493), 2, + STATE(1491), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54043,91 +54179,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37026] = 15, + [36945] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, ACTIONS(1783), 1, - anon_sym_RBRACE, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, ACTIONS(1801), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1489), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1785), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37087] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1803), 1, anon_sym_RBRACE, - ACTIONS(1807), 1, + ACTIONS(1805), 1, anon_sym_SLASH, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1486), 2, + STATE(1465), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1805), 7, + ACTIONS(1803), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -54135,45 +54225,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37148] = 15, + [37006] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(1809), 1, + ACTIONS(1807), 1, + anon_sym_RBRACE, + ACTIONS(1811), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1495), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1809), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [37067] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1795), 1, anon_sym_RBRACE, ACTIONS(1813), 1, anon_sym_SLASH, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1461), 2, + STATE(1491), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1811), 7, + ACTIONS(1797), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -54181,38 +54317,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37209] = 15, + [37128] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1815), 1, anon_sym_RBRACE, ACTIONS(1819), 1, anon_sym_SLASH, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1459), 2, + STATE(1482), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54227,38 +54363,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37270] = 15, + [37189] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1821), 1, anon_sym_RBRACE, ACTIONS(1825), 1, - sym_regex, - STATE(2229), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1311), 2, + STATE(1179), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54273,38 +54409,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37331] = 15, + [37250] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1827), 1, anon_sym_RBRACE, ACTIONS(1831), 1, anon_sym_SLASH, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1587), 2, + STATE(1481), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54319,38 +54455,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37392] = 15, + [37311] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1833), 1, anon_sym_RBRACE, ACTIONS(1837), 1, - sym_regex, - STATE(2229), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1619), 2, + STATE(1461), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54365,38 +54501,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37453] = 15, + [37372] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1839), 1, anon_sym_RBRACE, ACTIONS(1843), 1, - anon_sym_SLASH, - STATE(2229), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1481), 2, + STATE(1254), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54411,38 +54547,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37514] = 15, + [37433] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1845), 1, anon_sym_RBRACE, ACTIONS(1849), 1, - sym_regex, - STATE(2229), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1605), 2, + STATE(1418), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54457,38 +54593,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37575] = 15, + [37494] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1851), 1, anon_sym_RBRACE, ACTIONS(1855), 1, - sym_regex, - STATE(2229), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1589), 2, + STATE(1417), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54503,38 +54639,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37636] = 15, + [37555] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1857), 1, anon_sym_RBRACE, ACTIONS(1861), 1, anon_sym_SLASH, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1472), 2, + STATE(1474), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54549,38 +54685,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37697] = 15, + [37616] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1863), 1, anon_sym_RBRACE, ACTIONS(1867), 1, sym_regex, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1457), 2, + STATE(1394), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54595,38 +54731,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37758] = 15, + [37677] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(1869), 1, anon_sym_RBRACE, ACTIONS(1873), 1, sym_regex, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1594), 2, + STATE(1390), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -54641,45 +54777,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37819] = 15, + [37738] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(1815), 1, - anon_sym_RBRACE, ACTIONS(1875), 1, + anon_sym_RBRACE, + ACTIONS(1879), 1, sym_regex, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1459), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1817), 7, + ACTIONS(1877), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -54687,29874 +54823,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [37880] = 15, + [37799] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(1877), 1, + ACTIONS(1833), 1, anon_sym_RBRACE, ACTIONS(1881), 1, sym_regex, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1454), 2, + STATE(1461), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1879), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [37941] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1851), 1, - anon_sym_RBRACE, - ACTIONS(1883), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1589), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1853), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38002] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1885), 1, - anon_sym_RBRACE, - ACTIONS(1889), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1451), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1887), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38063] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1891), 1, - anon_sym_RBRACE, - ACTIONS(1895), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1437), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1893), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38124] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(1897), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2355), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [38187] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1899), 1, - anon_sym_RBRACE, - ACTIONS(1903), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1586), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1901), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38248] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1905), 1, - anon_sym_RBRACE, - ACTIONS(1909), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1499), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1907), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38309] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1911), 1, - anon_sym_RBRACE, - ACTIONS(1915), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1582), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1913), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38370] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1917), 1, - anon_sym_RBRACE, - ACTIONS(1921), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1575), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1919), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38431] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(1923), 1, - sym_regex, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2143), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [38494] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1925), 1, - anon_sym_RBRACE, - ACTIONS(1929), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1527), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1927), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38555] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1931), 1, - anon_sym_RBRACE, - ACTIONS(1935), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1420), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1933), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38616] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1937), 1, - anon_sym_RBRACE, - ACTIONS(1941), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1526), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1939), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38677] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1943), 1, - anon_sym_RBRACE, - ACTIONS(1947), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1518), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1945), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38738] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1949), 1, - anon_sym_RBRACE, - ACTIONS(1953), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1502), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1951), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38799] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1955), 1, - anon_sym_RBRACE, - ACTIONS(1959), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1496), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1957), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38860] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1949), 1, - anon_sym_RBRACE, - ACTIONS(1961), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1502), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1951), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38921] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1963), 1, - anon_sym_RBRACE, - ACTIONS(1967), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1548), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1965), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [38982] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1969), 1, - anon_sym_RBRACE, - ACTIONS(1973), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1539), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1971), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39043] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1975), 1, - anon_sym_RBRACE, - ACTIONS(1979), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1525), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1977), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39104] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1981), 1, - anon_sym_RBRACE, - ACTIONS(1985), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1471), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1983), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39165] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1987), 1, - anon_sym_RBRACE, - ACTIONS(1991), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1469), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39226] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1993), 1, - anon_sym_RBRACE, - ACTIONS(1997), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1530), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1995), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39287] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1975), 1, - anon_sym_RBRACE, - ACTIONS(1999), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1525), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1977), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39348] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2001), 1, - anon_sym_RBRACE, - ACTIONS(2005), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1523), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2003), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39409] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2007), 1, - anon_sym_RBRACE, - ACTIONS(2011), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1519), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2009), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39470] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2013), 1, - anon_sym_RBRACE, - ACTIONS(2017), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1478), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2015), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39531] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2019), 1, - anon_sym_RBRACE, - ACTIONS(2023), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1414), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2021), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39592] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2025), 1, - anon_sym_RBRACE, - ACTIONS(2029), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1584), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2027), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39653] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2031), 1, - anon_sym_RBRACE, - ACTIONS(2035), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1515), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2033), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39714] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2037), 1, - anon_sym_RBRACE, - ACTIONS(2041), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1570), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2039), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39775] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2043), 1, - anon_sym_RBRACE, - ACTIONS(2047), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1333), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2045), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39836] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2049), 1, - anon_sym_RBRACE, - ACTIONS(2053), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1477), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2051), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39897] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2055), 1, - anon_sym_RBRACE, - ACTIONS(2059), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1482), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2057), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [39958] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2061), 1, - anon_sym_RBRACE, - ACTIONS(2065), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1488), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2063), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40019] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2067), 1, - anon_sym_RBRACE, - ACTIONS(2071), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1322), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2069), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40080] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2073), 1, - anon_sym_RBRACE, - ACTIONS(2077), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1412), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2075), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40141] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2079), 1, - anon_sym_RBRACE, - ACTIONS(2083), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1407), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2081), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40202] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2073), 1, - anon_sym_RBRACE, - ACTIONS(2085), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1412), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2075), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40263] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2087), 1, - anon_sym_RBRACE, - ACTIONS(2091), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1485), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2089), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40324] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2093), 1, - anon_sym_RBRACE, - ACTIONS(2097), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1302), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2095), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40385] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2099), 1, - anon_sym_RBRACE, - ACTIONS(2103), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1301), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2101), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40446] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2061), 1, - anon_sym_RBRACE, - ACTIONS(2105), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1488), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2063), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40507] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2107), 1, - anon_sym_RBRACE, - ACTIONS(2111), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1490), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2109), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40568] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2113), 1, - anon_sym_RBRACE, - ACTIONS(2117), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1492), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2115), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40629] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2119), 1, - anon_sym_RBRACE, - ACTIONS(2123), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1494), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2121), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40690] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2125), 1, - anon_sym_RBRACE, - ACTIONS(2129), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1505), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2127), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40751] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2131), 1, - anon_sym_RBRACE, - ACTIONS(2135), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1507), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2133), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40812] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2137), 1, - anon_sym_RBRACE, - ACTIONS(2141), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1380), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2139), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40873] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2143), 1, - anon_sym_RBRACE, - ACTIONS(2147), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1377), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2145), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40934] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2149), 1, - anon_sym_RBRACE, - ACTIONS(2153), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1512), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2151), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [40995] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2155), 1, - anon_sym_RBRACE, - ACTIONS(2159), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1510), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2157), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41056] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2149), 1, - anon_sym_RBRACE, - ACTIONS(2161), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1512), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2151), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41117] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2163), 1, - anon_sym_RBRACE, - ACTIONS(2167), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1514), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2165), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41178] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2169), 1, - anon_sym_RBRACE, - ACTIONS(2173), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1516), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41239] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2175), 1, - anon_sym_RBRACE, - ACTIONS(2179), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1520), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2177), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41300] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2181), 1, - anon_sym_RBRACE, - ACTIONS(2185), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1565), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2183), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41361] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2037), 1, - anon_sym_RBRACE, - ACTIONS(2187), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1570), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2039), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41422] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2189), 1, - anon_sym_RBRACE, - ACTIONS(2193), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1558), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2191), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41483] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2195), 1, - anon_sym_RBRACE, - ACTIONS(2199), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1435), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2197), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41544] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2201), 1, - anon_sym_RBRACE, - ACTIONS(2205), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1632), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2203), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41605] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2207), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2358), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [41668] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2209), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2361), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [41731] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2211), 1, - anon_sym_RBRACE, - ACTIONS(2215), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1544), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2213), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41792] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2217), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2356), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [41855] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2219), 1, - anon_sym_RBRACE, - ACTIONS(2223), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1299), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2221), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41916] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(2229), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1541), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2227), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [41977] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2099), 1, - anon_sym_RBRACE, - ACTIONS(2231), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1301), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2101), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42038] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2233), 1, - anon_sym_RBRACE, - ACTIONS(2237), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1547), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2235), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42099] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2239), 1, - anon_sym_RBRACE, - ACTIONS(2243), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2241), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42160] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2245), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2342), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [42223] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2247), 1, - anon_sym_RBRACE, - ACTIONS(2251), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1555), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2249), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42284] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2253), 1, - anon_sym_RBRACE, - ACTIONS(2257), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1634), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2255), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42345] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2259), 1, - anon_sym_RBRACE, - ACTIONS(2263), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1404), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2261), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42406] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2239), 1, - anon_sym_RBRACE, - ACTIONS(2265), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1557), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2241), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42467] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2267), 1, - anon_sym_RBRACE, - ACTIONS(2271), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1560), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2269), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42528] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2273), 1, - anon_sym_RBRACE, - ACTIONS(2277), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1441), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42589] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2279), 1, - anon_sym_RBRACE, - ACTIONS(2283), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1562), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2281), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42650] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2285), 1, - anon_sym_RBRACE, - ACTIONS(2289), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1573), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2287), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42711] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2291), 1, - anon_sym_RBRACE, - ACTIONS(2295), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1578), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2293), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42772] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2297), 1, - anon_sym_RBRACE, - ACTIONS(2301), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1564), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2299), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42833] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2285), 1, - anon_sym_RBRACE, - ACTIONS(2303), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1573), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2287), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [42894] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2305), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2349), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [42957] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2307), 1, - anon_sym_RBRACE, - ACTIONS(2311), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1572), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2309), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43018] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2313), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2346), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [43081] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_RBRACE, - ACTIONS(2319), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1597), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2317), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43142] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2321), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2393), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [43205] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2323), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2389), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [43268] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2325), 1, - anon_sym_RBRACE, - ACTIONS(2329), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1601), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2327), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43329] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(2335), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1295), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2333), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43390] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2337), 1, - anon_sym_RBRACE, - ACTIONS(2341), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1613), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2339), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43451] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2343), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2383), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [43514] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2345), 1, - anon_sym_RBRACE, - ACTIONS(2349), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1607), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2347), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43575] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2337), 1, - anon_sym_RBRACE, - ACTIONS(2351), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1613), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2339), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43636] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2353), 1, - anon_sym_RBRACE, - ACTIONS(2357), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1615), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2355), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43697] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2359), 1, - anon_sym_RBRACE, - ACTIONS(2363), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1361), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2361), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43758] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2365), 1, - anon_sym_RBRACE, - ACTIONS(2369), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1359), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2367), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43819] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2371), 1, - anon_sym_RBRACE, - ACTIONS(2375), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1357), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2373), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43880] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2377), 1, - anon_sym_RBRACE, - ACTIONS(2381), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1352), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2379), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [43941] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2383), 1, - anon_sym_RBRACE, - ACTIONS(2387), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1350), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2385), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44002] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2377), 1, - anon_sym_RBRACE, - ACTIONS(2389), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1352), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2379), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44063] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2391), 1, - anon_sym_RBRACE, - ACTIONS(2395), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1344), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2393), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44124] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2397), 1, - anon_sym_RBRACE, - ACTIONS(2401), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1403), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2399), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44185] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2403), 1, - anon_sym_RBRACE, - ACTIONS(2407), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1568), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2405), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44246] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2409), 1, - anon_sym_RBRACE, - ACTIONS(2413), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1439), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2411), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44307] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2415), 1, - anon_sym_RBRACE, - ACTIONS(2419), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1571), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2417), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44368] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2421), 1, - anon_sym_RBRACE, - ACTIONS(2425), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1340), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2423), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44429] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2427), 1, - anon_sym_RBRACE, - ACTIONS(2431), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1293), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2429), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44490] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2433), 1, - anon_sym_RBRACE, - ACTIONS(2437), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1402), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2435), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44551] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2439), 1, - anon_sym_RBRACE, - ACTIONS(2443), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1422), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2441), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44612] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2445), 1, - anon_sym_RBRACE, - ACTIONS(2449), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1618), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2447), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44673] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2451), 1, - anon_sym_RBRACE, - ACTIONS(2455), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1365), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2453), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44734] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2457), 1, - anon_sym_RBRACE, - ACTIONS(2461), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1303), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2459), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44795] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2463), 1, - anon_sym_RBRACE, - ACTIONS(2467), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1620), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2465), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44856] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2469), 1, - anon_sym_RBRACE, - ACTIONS(2473), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1465), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2471), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44917] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(2475), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1541), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2227), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [44978] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2477), 1, - anon_sym_RBRACE, - ACTIONS(2481), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1192), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2479), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45039] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2483), 1, - anon_sym_RBRACE, - ACTIONS(2487), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1197), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2485), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45100] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2489), 1, - anon_sym_RBRACE, - ACTIONS(2493), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1279), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2491), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45161] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2495), 1, - anon_sym_RBRACE, - ACTIONS(2499), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1413), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2497), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45222] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2501), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1397), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1765), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45283] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2503), 1, - anon_sym_RBRACE, - ACTIONS(2507), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1354), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2505), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45344] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2457), 1, - anon_sym_RBRACE, - ACTIONS(2509), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1303), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2459), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45405] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2511), 1, - anon_sym_RBRACE, - ACTIONS(2515), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1202), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2513), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45466] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2517), 1, - anon_sym_RBRACE, - ACTIONS(2521), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1297), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2519), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45527] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2523), 1, - anon_sym_RBRACE, - ACTIONS(2527), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1348), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2525), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45588] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2529), 1, - anon_sym_RBRACE, - ACTIONS(2533), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1211), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2531), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45649] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2535), 1, - anon_sym_RBRACE, - ACTIONS(2539), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1346), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2537), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45710] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2541), 1, - anon_sym_RBRACE, - ACTIONS(2545), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1500), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2543), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45771] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2547), 1, - anon_sym_RBRACE, - ACTIONS(2551), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1329), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2549), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45832] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2553), 1, - anon_sym_RBRACE, - ACTIONS(2557), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1277), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2555), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45893] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2559), 1, - anon_sym_RBRACE, - ACTIONS(2563), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1327), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2561), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [45954] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2565), 1, - anon_sym_RBRACE, - ACTIONS(2569), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1325), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2567), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46015] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2571), 1, - anon_sym_RBRACE, - ACTIONS(2575), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1323), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2573), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46076] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2577), 1, - anon_sym_RBRACE, - ACTIONS(2581), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1320), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2579), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46137] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2571), 1, - anon_sym_RBRACE, - ACTIONS(2583), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1323), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2573), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46198] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2585), 1, - anon_sym_RBRACE, - ACTIONS(2589), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1317), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2587), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46259] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2591), 1, - anon_sym_RBRACE, - ACTIONS(2595), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1315), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2593), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46320] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2597), 1, - anon_sym_RBRACE, - ACTIONS(2601), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1288), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2599), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46381] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2603), 1, - anon_sym_RBRACE, - ACTIONS(2607), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1282), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2605), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46442] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2609), 1, - anon_sym_RBRACE, - ACTIONS(2613), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1334), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2611), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46503] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2615), 1, - anon_sym_RBRACE, - ACTIONS(2619), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1280), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2617), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46564] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2621), 1, - anon_sym_RBRACE, - ACTIONS(2625), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1431), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2623), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46625] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2627), 1, - anon_sym_RBRACE, - ACTIONS(2631), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1278), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2629), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46686] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2633), 1, - anon_sym_RBRACE, - ACTIONS(2637), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1430), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2635), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46747] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2639), 1, - anon_sym_RBRACE, - ACTIONS(2643), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1275), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2641), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46808] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2645), 1, - anon_sym_RBRACE, - ACTIONS(2649), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1220), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2647), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46869] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2651), 1, - anon_sym_RBRACE, - ACTIONS(2655), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1225), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2653), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46930] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2657), 1, - anon_sym_RBRACE, - ACTIONS(2661), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1331), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2659), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [46991] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2627), 1, - anon_sym_RBRACE, - ACTIONS(2663), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1278), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2629), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47052] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2665), 1, - anon_sym_RBRACE, - ACTIONS(2669), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1269), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2667), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47113] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2671), 1, - anon_sym_RBRACE, - ACTIONS(2675), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1309), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2673), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47174] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2677), 1, - anon_sym_RBRACE, - ACTIONS(2681), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1267), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2679), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47235] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2683), 1, - anon_sym_RBRACE, - ACTIONS(2687), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1254), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2685), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47296] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2689), 1, - anon_sym_RBRACE, - ACTIONS(2693), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1444), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2691), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47357] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2695), 1, - anon_sym_RBRACE, - ACTIONS(2699), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1226), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2697), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47418] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2701), 1, - anon_sym_RBRACE, - ACTIONS(2705), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1227), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2703), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47479] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2707), 1, - anon_sym_RBRACE, - ACTIONS(2711), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1229), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2709), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47540] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2713), 1, - anon_sym_RBRACE, - ACTIONS(2717), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1252), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2715), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47601] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2719), 1, - anon_sym_RBRACE, - ACTIONS(2723), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1248), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2721), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47662] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2725), 1, - anon_sym_RBRACE, - ACTIONS(2729), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1241), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2727), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47723] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2701), 1, - anon_sym_RBRACE, - ACTIONS(2731), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1227), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2703), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47784] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2733), 1, - anon_sym_RBRACE, - ACTIONS(2737), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1234), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2735), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47845] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2739), 1, - anon_sym_RBRACE, - ACTIONS(2743), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1641), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2741), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [47906] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - ACTIONS(2745), 1, - sym_regex, - STATE(1745), 1, - aux_sym__literal_repeat1, - STATE(1937), 1, - sym__expression, - ACTIONS(1671), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1665), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1716), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2011), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [47969] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2747), 1, - anon_sym_RBRACE, - ACTIONS(2751), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1236), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2749), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48030] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2753), 1, - anon_sym_RBRACE, - ACTIONS(2757), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1259), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2755), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48091] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2759), 1, - anon_sym_RBRACE, - ACTIONS(2763), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1283), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2761), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48152] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2773), 1, - sym__special_character, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(2785), 1, - sym_regex, - STATE(2127), 1, - aux_sym__literal_repeat1, - STATE(2369), 1, - sym__expression, - ACTIONS(2769), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2765), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2168), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2332), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [48215] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2787), 1, - anon_sym_RPAREN_RPAREN, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2335), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [48278] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2789), 1, - anon_sym_RBRACE, - ACTIONS(2793), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1639), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2791), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48339] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2795), 1, - anon_sym_RBRACE, - ACTIONS(2799), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1290), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2797), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48400] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2801), 1, - anon_sym_RBRACE, - ACTIONS(2805), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1599), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2803), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48461] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2807), 1, - anon_sym_RBRACE, - ACTIONS(2811), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1624), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2809), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48522] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2813), 1, - anon_sym_RBRACE, - ACTIONS(2817), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1272), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2815), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48583] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2819), 1, - anon_sym_RBRACE, - ACTIONS(2823), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1224), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2821), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48644] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2725), 1, - anon_sym_RBRACE, - ACTIONS(2825), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1241), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2727), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48705] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2827), 1, - anon_sym_RBRACE, - ACTIONS(2831), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1217), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2829), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48766] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2833), 1, - anon_sym_RBRACE, - ACTIONS(2837), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1304), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2835), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48827] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2801), 1, - anon_sym_RBRACE, - ACTIONS(2839), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1599), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2803), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48888] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2841), 1, - anon_sym_RBRACE, - ACTIONS(2845), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1214), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2843), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [48949] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2847), 1, - anon_sym_RBRACE, - ACTIONS(2851), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1588), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2849), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49010] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2853), 1, - anon_sym_RBRACE, - ACTIONS(2857), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1312), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2855), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49071] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2859), 1, - anon_sym_RBRACE, - ACTIONS(2863), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1286), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2861), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49132] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2865), 1, - anon_sym_RBRACE, - ACTIONS(2869), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1326), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2867), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49193] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2833), 1, - anon_sym_RBRACE, - ACTIONS(2871), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1304), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2835), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49254] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2873), 1, - anon_sym_RBRACE, - ACTIONS(2877), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1358), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2875), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49315] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2879), 1, - anon_sym_RBRACE, - ACTIONS(2883), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1371), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2881), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49376] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2885), 1, - anon_sym_RBRACE, - ACTIONS(2889), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1585), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2887), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49437] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2891), 1, - anon_sym_RBRACE, - ACTIONS(2895), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1263), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2893), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49498] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2897), 1, - anon_sym_RBRACE, - ACTIONS(2901), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1579), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2899), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49559] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2903), 1, - anon_sym_RBRACE, - ACTIONS(2907), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1574), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2905), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49620] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2909), 1, - anon_sym_RBRACE, - ACTIONS(2913), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1631), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2911), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49681] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2915), 1, - anon_sym_RBRACE, - ACTIONS(2919), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1628), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2917), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49742] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2909), 1, - anon_sym_RBRACE, - ACTIONS(2921), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1631), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2911), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49803] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2923), 1, - anon_sym_RBRACE, - ACTIONS(2927), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1633), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2925), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49864] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_RBRACE, - ACTIONS(2933), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1429), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2931), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49925] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2935), 1, - anon_sym_RBRACE, - ACTIONS(2939), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1427), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2937), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [49986] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2941), 1, - anon_sym_RBRACE, - ACTIONS(2945), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1418), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2943), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50047] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2947), 1, - anon_sym_RBRACE, - ACTIONS(2951), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1178), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2949), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50108] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2941), 1, - anon_sym_RBRACE, - ACTIONS(2953), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1418), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2943), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50169] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2955), 1, - anon_sym_RBRACE, - ACTIONS(2959), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1416), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2957), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50230] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2961), 1, - anon_sym_RBRACE, - ACTIONS(2965), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1382), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2963), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50291] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2967), 1, - anon_sym_RBRACE, - ACTIONS(2971), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1379), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2969), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50352] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2973), 1, - anon_sym_RBRACE, - ACTIONS(2977), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1410), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2975), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50413] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2979), 1, - anon_sym_RBRACE, - ACTIONS(2983), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1409), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2981), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50474] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(1923), 1, - sym_regex, - ACTIONS(2987), 1, - sym__special_character, - STATE(2126), 1, - aux_sym__literal_repeat1, - STATE(2143), 1, - sym__expression, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2985), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [50537] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2989), 1, - anon_sym_RBRACE, - ACTIONS(2993), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1396), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2991), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50598] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2995), 1, - anon_sym_RBRACE, - ACTIONS(2999), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1285), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2997), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50659] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3001), 1, - anon_sym_RBRACE, - ACTIONS(3005), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1255), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3003), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50720] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3007), 1, - anon_sym_RBRACE, - ACTIONS(3011), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1251), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3009), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50781] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2671), 1, - anon_sym_RBRACE, - ACTIONS(3013), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1309), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2673), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50842] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3015), 1, - anon_sym_RBRACE, - ACTIONS(3019), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1366), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3017), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50903] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3021), 1, - anon_sym_RBRACE, - ACTIONS(3025), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1247), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3023), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [50964] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3007), 1, - anon_sym_RBRACE, - ACTIONS(3027), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1251), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3009), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51025] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3029), 1, - anon_sym_RBRACE, - ACTIONS(3033), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1237), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3031), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51086] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3035), 1, - anon_sym_RBRACE, - ACTIONS(3039), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1231), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3037), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51147] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3041), 1, - anon_sym_RBRACE, - ACTIONS(3045), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1308), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3043), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51208] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3047), 1, - anon_sym_RBRACE, - ACTIONS(3051), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1258), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3049), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51269] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3053), 1, - anon_sym_RBRACE, - ACTIONS(3057), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1244), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3055), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51330] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3059), 1, - anon_sym_RBRACE, - ACTIONS(3063), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1364), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3061), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51391] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3065), 1, - anon_sym_RBRACE, - ACTIONS(3069), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1194), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3067), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51452] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3071), 1, - anon_sym_RBRACE, - ACTIONS(3075), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1193), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3073), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51513] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(3081), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1200), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3079), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51574] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3083), 1, - anon_sym_RBRACE, - ACTIONS(3087), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1204), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3085), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51635] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, - sym__special_character, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - ACTIONS(3109), 1, - sym_regex, - STATE(2151), 1, - aux_sym__literal_repeat1, - STATE(2387), 1, - sym__expression, - ACTIONS(3093), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3089), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2145), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2366), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [51698] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(3111), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1200), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3079), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51759] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3113), 1, - anon_sym_RBRACE, - ACTIONS(3117), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1191), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3115), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51820] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3119), 1, - anon_sym_RBRACE, - ACTIONS(3123), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1190), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3121), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51881] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3125), 1, - anon_sym_RBRACE, - ACTIONS(3129), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1362), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3127), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [51942] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3059), 1, - anon_sym_RBRACE, - ACTIONS(3131), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1364), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3061), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52003] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3133), 1, - anon_sym_RBRACE, - ACTIONS(3137), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1262), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3135), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52064] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3139), 1, - anon_sym_RBRACE, - ACTIONS(3143), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1394), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3141), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52125] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3145), 1, - anon_sym_RBRACE, - ACTIONS(3149), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1386), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3147), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52186] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3151), 1, - anon_sym_RBRACE, - ACTIONS(3155), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1188), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3153), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52247] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3119), 1, - anon_sym_RBRACE, - ACTIONS(3157), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1190), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3121), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52308] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3159), 1, - anon_sym_RBRACE, - ACTIONS(3163), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1199), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3161), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52369] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3165), 1, - anon_sym_RBRACE, - ACTIONS(3169), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1389), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3167), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52430] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3171), 1, - anon_sym_RBRACE, - ACTIONS(3175), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1289), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3173), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52491] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3145), 1, - anon_sym_RBRACE, - ACTIONS(3177), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1386), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3147), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52552] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3179), 1, - anon_sym_RBRACE, - ACTIONS(3183), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1385), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3181), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52613] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3185), 1, - anon_sym_RBRACE, - ACTIONS(3189), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1198), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3187), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52674] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3191), 1, - anon_sym_RBRACE, - ACTIONS(3195), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1376), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3193), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52735] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3197), 1, - anon_sym_RBRACE, - ACTIONS(3201), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1183), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3199), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52796] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(3207), 1, - sym_regex, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1181), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3205), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52857] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3209), 1, - anon_sym_RBRACE, - ACTIONS(3213), 1, - anon_sym_SLASH, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1375), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3211), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52918] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3215), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [52976] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3219), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1552), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3221), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53034] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3223), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53092] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3225), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53150] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3225), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1185), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3227), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53208] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3229), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53266] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3229), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1424), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3231), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53324] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3233), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53382] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3203), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1181), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3205), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53440] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3235), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1212), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3237), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53498] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3239), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53556] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3239), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1180), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3241), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53614] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3203), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53672] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3197), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53730] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3235), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53788] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3119), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53846] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3151), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53904] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2529), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1211), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2531), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [53962] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, - sym__special_character, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - STATE(2151), 1, - aux_sym__literal_repeat1, - STATE(2396), 1, - sym__expression, - ACTIONS(3093), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3089), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2145), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2366), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [54022] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3083), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54080] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3077), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54138] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3053), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54196] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3047), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54254] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3243), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1213), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3245), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54312] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3243), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54370] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3247), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1261), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3249), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54428] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3247), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54486] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3251), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54544] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3253), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54602] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3255), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54660] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3257), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1218), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3259), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54718] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3261), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54776] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3263), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54834] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3257), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54892] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3265), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [54950] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3267), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55008] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3269), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55066] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3269), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1205), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3271), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55124] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3273), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55182] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3275), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55240] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3277), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55298] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2987), 1, - sym__special_character, - STATE(2126), 1, - aux_sym__literal_repeat1, - STATE(2374), 1, - sym__expression, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2985), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [55358] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2707), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55416] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - STATE(1745), 1, - aux_sym__literal_repeat1, - STATE(1937), 1, - sym__expression, - ACTIONS(1671), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1665), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1716), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2011), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [55476] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3275), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1207), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3279), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55534] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2841), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1214), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2843), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55592] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3281), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55650] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2701), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55708] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2733), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55766] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2747), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55824] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3283), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1242), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3285), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55882] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3283), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55940] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2747), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1236), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2749), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [55998] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3287), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56056] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3287), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1206), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3289), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56114] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3291), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1245), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3293), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56172] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3291), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56230] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3295), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1249), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3297), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56288] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3295), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56346] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3299), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56404] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3299), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1209), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3301), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56462] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3281), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1210), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3303), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56520] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3047), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1258), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3049), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56578] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2841), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56636] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3305), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56694] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3307), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1271), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3309), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56752] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3307), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56810] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3311), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56868] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3035), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1231), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3037), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56926] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3313), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [56984] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2827), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57042] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3315), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57100] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3313), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1216), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3317), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57158] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3035), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57216] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2725), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57274] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3319), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57332] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2819), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57390] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3029), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57448] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3321), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57506] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3323), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1284), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3325), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57564] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3323), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57622] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2853), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57680] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3327), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57738] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3329), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57796] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2865), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57854] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3331), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57912] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3333), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [57970] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3335), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58028] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3337), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58086] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3339), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58144] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3339), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1264), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3341), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58202] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3343), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58260] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3343), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1265), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3345), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58318] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3347), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58376] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3007), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58434] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2677), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1267), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2679), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58492] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3331), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1253), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3349), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58550] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3351), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58608] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3351), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1266), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3353), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58666] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3021), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58724] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2677), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58782] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3355), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58840] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2665), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58898] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3355), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1256), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3357), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [58956] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2627), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59014] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2833), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59072] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3359), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59130] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1821), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59188] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2457), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59246] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3361), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59304] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2639), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59362] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2671), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59420] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2873), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59478] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3363), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59536] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3365), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59594] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3367), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59652] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3367), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1287), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3369), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59710] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3371), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59768] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3371), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1291), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3373), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59826] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2451), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59884] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2427), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1293), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2429), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [59942] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3375), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60000] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3375), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1292), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3377), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60058] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2427), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60116] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2331), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60174] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2273), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60232] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2879), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60290] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3379), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60348] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3381), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1372), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3383), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60406] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3385), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1442), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3387), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60464] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2657), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60522] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2609), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60580] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3389), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60638] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3385), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60696] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3381), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60754] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3391), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60812] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3393), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60870] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3395), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60928] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3395), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1310), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3397), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [60986] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3399), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61044] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3399), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1313), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3401), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61102] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2591), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1315), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2593), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61160] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3403), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61218] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3403), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1314), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3405), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61276] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2099), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61334] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2591), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61392] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3407), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1335), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3409), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61450] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2585), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61508] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3407), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61566] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2571), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61624] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2609), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1334), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2611), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61682] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2577), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61740] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3411), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1339), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3413), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61798] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3411), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61856] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3415), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1305), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3417), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61914] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2219), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [61972] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3415), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62030] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3419), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62088] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3421), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62146] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3423), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62204] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3425), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62262] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3427), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62320] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3429), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62378] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3431), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1462), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3433), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62436] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2273), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1441), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2275), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62494] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3429), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1336), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3435), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62552] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3437), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62610] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3437), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1337), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3439), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62668] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2495), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62726] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2421), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1340), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2423), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62784] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62842] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2987), 1, - sym__special_character, - STATE(2117), 1, - sym__expression, - STATE(2126), 1, - aux_sym__literal_repeat1, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2985), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [62902] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3441), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [62960] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3441), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1338), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3443), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63018] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2421), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63076] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3445), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1446), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3447), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63134] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2439), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63192] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2879), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1371), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2881), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63250] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3449), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1373), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3451), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63308] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2391), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63366] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3449), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63424] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2377), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63482] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2891), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1263), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2893), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63540] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2383), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63598] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3453), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63656] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3453), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1260), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3455), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63714] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2891), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63772] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3445), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63830] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2489), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63888] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3457), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1374), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3459), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [63946] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3461), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64004] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3463), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64062] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3465), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64120] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3457), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64178] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3467), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64236] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3469), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64294] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3471), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64352] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3165), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64410] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3145), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64468] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3473), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64526] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3473), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1368), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3475), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64584] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3059), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64642] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3477), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64700] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2360), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [64760] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3125), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64818] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, - sym__special_character, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - STATE(2151), 1, - aux_sym__literal_repeat1, - STATE(2387), 1, - sym__expression, - ACTIONS(3093), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3089), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2145), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2366), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [64878] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, - sym__special_character, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - STATE(2151), 1, - aux_sym__literal_repeat1, - STATE(2339), 1, - sym__expression, - ACTIONS(3093), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3089), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2145), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2366), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [64938] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3139), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [64996] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2989), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65054] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1398), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3481), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65112] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3477), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1369), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3483), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65170] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3479), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65228] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2359), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [65288] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2987), 1, - sym__special_character, - STATE(2126), 1, - aux_sym__literal_repeat1, - STATE(2143), 1, - sym__expression, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2985), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [65348] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2989), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1396), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2991), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65406] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3485), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1400), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3487), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65464] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3485), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65522] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3489), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1401), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3491), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65580] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3489), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65638] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2409), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65696] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3493), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65754] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3495), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1440), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3497), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65812] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3499), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65870] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3501), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65928] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2511), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [65986] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2225), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66044] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2477), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66102] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2143), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1377), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2145), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66160] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2987), 1, - sym__special_character, - STATE(2126), 1, - aux_sym__literal_repeat1, - STATE(2338), 1, - sym__expression, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2985), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [66220] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3503), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66278] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3503), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1370), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3505), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66336] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2947), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66394] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2941), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66452] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2372), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [66512] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2143), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66570] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3495), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66628] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2137), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66686] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2409), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1439), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2411), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66744] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2935), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66802] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - STATE(1745), 1, - aux_sym__literal_repeat1, - STATE(1948), 1, - sym__expression, - ACTIONS(1671), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1665), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1716), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2011), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [66862] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66920] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3215), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1443), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3507), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [66978] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2073), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67036] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3509), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1445), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3511), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67094] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3509), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67152] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, - sym__special_character, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - STATE(2151), 1, - aux_sym__literal_repeat1, - STATE(2378), 1, - sym__expression, - ACTIONS(3093), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3089), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2145), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2366), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [67212] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3513), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67270] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2929), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1429), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2931), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67328] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3515), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1542), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3517), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67386] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3515), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67444] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3519), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1546), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3521), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67502] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3519), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67560] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2291), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67618] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2285), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67676] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3523), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67734] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3525), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67792] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3527), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67850] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3529), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67908] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3529), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1432), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3531), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [67966] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2079), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68024] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3533), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1447), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3535), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68082] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3431), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68140] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3537), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68198] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3533), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68256] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3539), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68314] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3541), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68372] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2915), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68430] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3543), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68488] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3545), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68546] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3547), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68604] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3549), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68662] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3551), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68720] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3553), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68778] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3555), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68836] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3555), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1448), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3557), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [68894] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2773), 1, - sym__special_character, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - STATE(2127), 1, - aux_sym__literal_repeat1, - STATE(2354), 1, - sym__expression, - ACTIONS(2769), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2765), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2168), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2332), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [68954] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3559), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69012] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3559), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1449), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3561), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69070] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1885), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1451), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1887), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69128] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3563), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69186] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3563), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1450), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3565), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69244] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1885), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69302] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2143), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [69362] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1877), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69420] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3567), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69478] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1815), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69536] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3569), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69594] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1863), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69652] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2773), 1, - sym__special_character, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - STATE(2127), 1, - aux_sym__literal_repeat1, - STATE(2384), 1, - sym__expression, - ACTIONS(2769), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2765), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2168), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2332), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [69712] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3571), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69770] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3573), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69828] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3575), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69886] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3575), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1464), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3577), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [69944] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3579), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70002] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1795), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70060] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3579), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1467), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3581), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70118] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3583), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70176] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3585), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70234] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3587), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70292] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3589), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70350] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1993), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70408] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3589), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1474), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3591), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70466] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1987), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1469), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1989), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70524] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1783), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70582] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3593), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70640] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3593), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1475), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3595), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70698] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2049), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1477), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2051), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70756] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3597), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70814] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1905), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70872] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3597), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1476), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3599), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70930] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2049), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [70988] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2031), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71046] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2055), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71104] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3601), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1517), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3603), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71162] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2061), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71220] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3601), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71278] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2087), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71336] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2031), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1515), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2033), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71394] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3605), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71452] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3607), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1521), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3609), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71510] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3605), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1468), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3611), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71568] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3607), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71626] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2909), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71684] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3613), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71742] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1987), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71800] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3615), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71858] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3617), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71916] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3619), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [71974] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3619), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1501), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3621), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72032] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3623), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72090] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3623), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1503), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3625), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72148] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2125), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1505), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2127), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72206] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3627), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72264] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3627), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1504), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3629), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72322] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2125), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72380] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3631), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1522), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3633), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72438] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2131), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72496] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3631), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72554] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2149), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72612] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3635), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72670] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1981), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72728] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1975), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72786] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2155), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72844] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3637), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72902] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3639), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [72960] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1969), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73018] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2395), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [73078] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1963), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73136] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1949), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73194] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1955), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73252] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2243), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [73312] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3641), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1550), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3643), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73370] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3641), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73428] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, - sym__special_character, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - STATE(2151), 1, - aux_sym__literal_repeat1, - STATE(2371), 1, - sym__expression, - ACTIONS(3093), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3089), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2145), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2366), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [73488] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3645), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73546] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3647), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73604] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2987), 1, - sym__special_character, - STATE(2126), 1, - aux_sym__literal_repeat1, - STATE(2367), 1, - sym__expression, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2985), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [73664] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2773), 1, - sym__special_character, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - STATE(2127), 1, - aux_sym__literal_repeat1, - STATE(2333), 1, - sym__expression, - ACTIONS(2769), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2765), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2168), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2332), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [73724] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1963), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1548), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1965), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73782] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3649), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1551), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3651), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73840] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3653), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73898] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3649), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [73956] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3655), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74014] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2529), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74072] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3657), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74130] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3659), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74188] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3661), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74246] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3661), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1538), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3663), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74304] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3665), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74362] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3667), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74420] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3219), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74478] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3667), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1540), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3669), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74536] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3671), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74594] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3673), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74652] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3675), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74710] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2345), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [74770] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2211), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1544), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2213), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74828] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3677), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74886] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3677), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1543), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3679), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [74944] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2211), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75002] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3681), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75060] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3681), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1433), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3683), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75118] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2233), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75176] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2195), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1435), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2197), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75234] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2239), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75292] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1669), 1, - anon_sym_LPAREN, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1675), 1, - sym__special_character, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - STATE(1745), 1, - aux_sym__literal_repeat1, - STATE(1908), 1, - sym__expression, - ACTIONS(1671), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1665), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1716), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2011), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [75352] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2247), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75410] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3685), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75468] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3687), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75526] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3685), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1434), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3689), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75584] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3691), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75642] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3691), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1532), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3693), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75700] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2195), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75758] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3695), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75816] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2253), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75874] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2201), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75932] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2807), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [75990] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1869), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76048] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3695), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1533), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3697), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76106] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3699), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1625), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3701), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76164] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3699), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76222] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2801), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76280] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2201), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1632), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2203), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76338] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2773), 1, - sym__special_character, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - STATE(2127), 1, - aux_sym__literal_repeat1, - STATE(2369), 1, - sym__expression, - ACTIONS(2769), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2765), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2168), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2332), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [76398] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1851), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76456] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2379), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [76516] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2189), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76574] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2037), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76632] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1845), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76690] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2181), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76748] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2789), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76806] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1833), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76864] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LPAREN, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3097), 1, - sym__special_character, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - STATE(2151), 1, - aux_sym__literal_repeat1, - STATE(2373), 1, - sym__expression, - ACTIONS(3093), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3089), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2145), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2366), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [76924] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3703), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1621), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3705), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [76982] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3707), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1609), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3709), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77040] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3711), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77098] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3703), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77156] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3713), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77214] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3715), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77272] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3717), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77330] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(1833), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1619), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -84569,43 +54869,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [77388] = 14, + [37860] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(2739), 1, + ACTIONS(1883), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(1887), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1384), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(1885), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -84613,43 +54915,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [77446] = 14, + [37921] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3717), 1, + ACTIONS(1889), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(1893), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1593), 2, + STATE(1455), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3719), 7, + ACTIONS(1891), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -84657,43 +54961,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [77504] = 14, + [37982] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3721), 1, + ACTIONS(1895), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(1899), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1453), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(1897), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -84701,43 +55007,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [77562] = 14, + [38043] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1761), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1763), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1769), 1, anon_sym_BQUOTE, - ACTIONS(3721), 1, - anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(1901), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + STATE(2364), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1595), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1751), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(1761), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3723), 7, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [38106] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1903), 1, + anon_sym_RBRACE, + ACTIONS(1907), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1423), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1905), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -84745,43 +55100,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [77620] = 14, + [38167] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3725), 1, + ACTIONS(1909), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(1913), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1622), 2, + STATE(1416), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3727), 7, + ACTIONS(1911), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -84789,36 +55146,3538 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [77678] = 14, + [38228] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1915), 1, + anon_sym_RBRACE, + ACTIONS(1919), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1386), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1917), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38289] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1883), 1, + anon_sym_RBRACE, + ACTIONS(1921), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1384), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1885), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38350] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1923), 1, + anon_sym_RBRACE, + ACTIONS(1927), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1502), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1925), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38411] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1929), 1, + anon_sym_RBRACE, + ACTIONS(1933), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1383), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1931), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38472] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1935), 1, + anon_sym_RBRACE, + ACTIONS(1939), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1380), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1937), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38533] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1941), 1, + anon_sym_RBRACE, + ACTIONS(1945), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1376), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1943), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38594] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1947), 1, + anon_sym_RBRACE, + ACTIONS(1951), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1302), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1949), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38655] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1953), 1, + anon_sym_RBRACE, + ACTIONS(1957), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1414), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1955), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38716] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1959), 1, + anon_sym_RBRACE, + ACTIONS(1963), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1301), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1961), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38777] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1965), 1, + anon_sym_RBRACE, + ACTIONS(1969), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1297), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1967), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38838] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1971), 1, + anon_sym_RBRACE, + ACTIONS(1975), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1296), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1973), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38899] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1977), 1, + anon_sym_RBRACE, + ACTIONS(1981), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1294), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1979), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [38960] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1971), 1, + anon_sym_RBRACE, + ACTIONS(1983), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1296), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1973), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39021] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1985), 1, + anon_sym_RBRACE, + ACTIONS(1989), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1358), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1987), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39082] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1991), 1, + anon_sym_RBRACE, + ACTIONS(1995), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1347), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1993), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39143] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1997), 1, + anon_sym_RBRACE, + ACTIONS(2001), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1307), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1999), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39204] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2003), 1, + anon_sym_RBRACE, + ACTIONS(2007), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1290), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2005), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39265] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2009), 1, + anon_sym_RBRACE, + ACTIONS(2013), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1287), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2011), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39326] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2015), 1, + anon_sym_RBRACE, + ACTIONS(2019), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1313), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2017), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39387] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1997), 1, + anon_sym_RBRACE, + ACTIONS(2021), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1307), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1999), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39448] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2023), 1, + anon_sym_RBRACE, + ACTIONS(2027), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1300), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2025), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39509] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2029), 1, + anon_sym_RBRACE, + ACTIONS(2033), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1299), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2031), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39570] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2035), 1, + anon_sym_RBRACE, + ACTIONS(2039), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1298), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2037), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39631] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2041), 1, + anon_sym_RBRACE, + ACTIONS(2045), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1409), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2043), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39692] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2047), 1, + anon_sym_RBRACE, + ACTIONS(2051), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1430), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2049), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39753] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2053), 1, + anon_sym_RBRACE, + ACTIONS(2057), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1516), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2055), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39814] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2059), 1, + anon_sym_RBRACE, + ACTIONS(2063), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1432), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2061), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39875] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2065), 1, + anon_sym_RBRACE, + ACTIONS(2069), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1258), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2067), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39936] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2071), 1, + anon_sym_RBRACE, + ACTIONS(2075), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1480), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2073), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [39997] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2077), 1, + anon_sym_RBRACE, + ACTIONS(2081), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1484), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2079), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40058] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2083), 1, + anon_sym_RBRACE, + ACTIONS(2087), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1490), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2085), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40119] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2089), 1, + anon_sym_RBRACE, + ACTIONS(2093), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1256), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2091), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40180] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2095), 1, + anon_sym_RBRACE, + ACTIONS(2099), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1406), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2097), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40241] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2101), 1, + anon_sym_RBRACE, + ACTIONS(2105), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1251), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2103), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40302] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2041), 1, + anon_sym_RBRACE, + ACTIONS(2107), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1409), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2043), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40363] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2109), 1, + anon_sym_RBRACE, + ACTIONS(2113), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1487), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2111), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40424] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2115), 1, + anon_sym_RBRACE, + ACTIONS(2119), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1379), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2117), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40485] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2121), 1, + anon_sym_RBRACE, + ACTIONS(2125), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1250), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2123), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40546] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2083), 1, + anon_sym_RBRACE, + ACTIONS(2127), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1490), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2085), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40607] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2129), 1, + anon_sym_RBRACE, + ACTIONS(2133), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1492), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2131), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40668] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2135), 1, + anon_sym_RBRACE, + ACTIONS(2139), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1494), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2137), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40729] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2141), 1, + anon_sym_RBRACE, + ACTIONS(2145), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1496), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2143), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40790] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2147), 1, + anon_sym_RBRACE, + ACTIONS(2151), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1506), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2149), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40851] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2153), 1, + anon_sym_RBRACE, + ACTIONS(2157), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1508), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2155), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40912] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2159), 1, + anon_sym_RBRACE, + ACTIONS(2163), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1371), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2161), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [40973] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2165), 1, + anon_sym_RBRACE, + ACTIONS(2169), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1513), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41034] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2171), 1, + anon_sym_RBRACE, + ACTIONS(2175), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1511), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2173), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41095] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2165), 1, + anon_sym_RBRACE, + ACTIONS(2177), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1513), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2167), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41156] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2179), 1, + anon_sym_RBRACE, + ACTIONS(2183), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1515), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2181), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41217] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2185), 1, + anon_sym_RBRACE, + ACTIONS(2189), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1517), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2187), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41278] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2047), 1, + anon_sym_RBRACE, + ACTIONS(2191), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1430), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2049), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41339] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2193), 1, + anon_sym_RBRACE, + ACTIONS(2197), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1435), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2195), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41400] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2199), 1, + anon_sym_RBRACE, + ACTIONS(2203), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1438), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2201), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41461] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2205), 1, + anon_sym_RBRACE, + ACTIONS(2209), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1401), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2207), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41522] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(2211), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2361), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [41585] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2213), 1, + anon_sym_RBRACE, + ACTIONS(2217), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1521), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2215), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41646] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(2219), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2360), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [41709] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(2221), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2359), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [41772] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2223), 1, + anon_sym_RBRACE, + ACTIONS(2227), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1621), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2225), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41833] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2229), 1, + anon_sym_RBRACE, + ACTIONS(2233), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1544), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2231), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [41894] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(2235), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2351), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [41957] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2237), 1, + anon_sym_RBRACE, + ACTIONS(2241), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1247), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2239), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42018] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2121), 1, + anon_sym_RBRACE, + ACTIONS(2243), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1250), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2123), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42079] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2245), 1, + anon_sym_RBRACE, + ACTIONS(2249), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1547), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2247), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42140] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2251), 1, + anon_sym_RBRACE, + ACTIONS(2255), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1557), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2253), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42201] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2257), 1, + anon_sym_RBRACE, + ACTIONS(2261), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1555), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2259), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42262] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2263), 1, + anon_sym_RBRACE, + ACTIONS(2267), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1404), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2265), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42323] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2269), 1, + anon_sym_RBRACE, + ACTIONS(2273), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1427), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2271), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42384] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2275), 1, + anon_sym_RBRACE, + ACTIONS(2279), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1425), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2277), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42445] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2251), 1, + anon_sym_RBRACE, + ACTIONS(2281), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1557), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2253), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42506] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2283), 1, + anon_sym_RBRACE, + ACTIONS(2287), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1560), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2285), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42567] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2289), 1, + anon_sym_RBRACE, + ACTIONS(2293), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1442), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2291), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42628] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2295), 1, + anon_sym_RBRACE, + ACTIONS(2299), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1273), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2297), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42689] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2301), 1, + anon_sym_RBRACE, + ACTIONS(2305), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1562), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2303), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42750] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2269), 1, + anon_sym_RBRACE, + ACTIONS(2307), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1427), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2271), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42811] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2309), 1, + anon_sym_RBRACE, + ACTIONS(2313), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1428), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2311), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [42872] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(2315), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2319), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1597), 2, + STATE(1564), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -84833,43 +58692,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [77736] = 14, + [42933] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3725), 1, + ACTIONS(2321), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2325), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1468), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2323), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -84877,619 +58738,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [77794] = 15, + [42994] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1749), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1751), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1753), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - STATE(1961), 1, + ACTIONS(2327), 1, + anon_sym_RBRACE, + ACTIONS(2331), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - STATE(2117), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1739), 3, + STATE(1470), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1832), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2164), 6, + ACTIONS(2329), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [43055] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(2333), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2353), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [77854] = 14, + [43118] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3729), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77912] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3731), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [77970] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3733), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78028] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3735), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1623), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3737), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78086] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3729), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1596), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3739), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78144] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(2987), 1, - sym__special_character, - STATE(2126), 1, - aux_sym__literal_repeat1, - STATE(2334), 1, - sym__expression, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2985), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [78204] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2315), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78262] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2767), 1, anon_sym_LPAREN, - ACTIONS(2771), 1, + ACTIONS(1759), 1, anon_sym_DOLLAR, - ACTIONS(2773), 1, + ACTIONS(1761), 1, sym__special_character, - ACTIONS(2775), 1, + ACTIONS(1763), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(1765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, + ACTIONS(1767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, + ACTIONS(1769), 1, anon_sym_BQUOTE, - STATE(2127), 1, + ACTIONS(2335), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, aux_sym__literal_repeat1, STATE(2348), 1, sym__expression, - ACTIONS(2769), 2, + ACTIONS(1757), 2, anon_sym_BANG, sym_test_operator, - ACTIONS(2783), 2, + ACTIONS(1771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2765), 3, + ACTIONS(1751), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2168), 6, + STATE(1761), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2332), 6, + STATE(2151), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [78322] = 14, + [43181] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(2325), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78380] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, - anon_sym_DOLLAR, - ACTIONS(1749), 1, - sym__special_character, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - STATE(1961), 1, - aux_sym__literal_repeat1, - STATE(2343), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1739), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(1832), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2164), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [78440] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1761), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1763), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3741), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1642), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3743), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78498] = 14, - ACTIONS(3), 1, - sym_comment, ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1769), 1, anon_sym_BQUOTE, ACTIONS(2337), 1, - anon_sym_RBRACE, - STATE(2229), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + STATE(2390), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1751), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(1761), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [78556] = 14, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43244] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3735), 1, + ACTIONS(2339), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2343), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1597), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2341), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85497,43 +58971,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [78614] = 14, + [43305] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(2345), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2349), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1629), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2347), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85541,43 +59017,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [78672] = 14, + [43366] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1761), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1763), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1769), 1, anon_sym_BQUOTE, - ACTIONS(3745), 1, + ACTIONS(2351), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2384), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43429] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2353), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2357), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1601), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2355), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85585,43 +59110,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [78730] = 14, + [43490] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3747), 1, + ACTIONS(2359), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2363), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1613), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2361), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85629,43 +59156,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [78788] = 14, + [43551] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1761), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1763), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1769), 1, anon_sym_BQUOTE, - ACTIONS(3749), 1, + ACTIONS(2365), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2380), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [43614] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2367), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2371), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1607), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2369), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85673,43 +59249,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [78846] = 14, + [43675] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3741), 1, + ACTIONS(2359), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2373), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1613), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2361), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85717,43 +59295,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [78904] = 14, + [43736] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3751), 1, + ACTIONS(2375), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2379), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1617), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2377), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85761,43 +59341,413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [78962] = 14, + [43797] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, + ACTIONS(2381), 1, + anon_sym_RBRACE, + ACTIONS(2385), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1361), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2383), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [43858] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2387), 1, + anon_sym_RBRACE, + ACTIONS(2391), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1359), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2389), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [43919] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2397), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1354), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2395), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [43980] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2399), 1, + anon_sym_RBRACE, ACTIONS(2403), 1, - anon_sym_RBRACE, - STATE(2229), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1352), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2401), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [44041] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2405), 1, + anon_sym_RBRACE, + ACTIONS(2409), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1348), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2407), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [44102] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2399), 1, + anon_sym_RBRACE, + ACTIONS(2411), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1352), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2401), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [44163] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2413), 1, + anon_sym_RBRACE, + ACTIONS(2417), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1344), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2415), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [44224] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2419), 1, + anon_sym_RBRACE, + ACTIONS(2423), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1471), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2421), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [44285] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2425), 1, + anon_sym_RBRACE, + ACTIONS(2429), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1568), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2405), 7, + ACTIONS(2427), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85805,43 +59755,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79020] = 14, + [44346] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3756), 1, - anon_sym_RBRACE, - ACTIONS(3761), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(3764), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(3767), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(3770), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3773), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3776), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - STATE(2229), 1, + ACTIONS(2431), 1, + anon_sym_RBRACE, + ACTIONS(2435), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(3779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1342), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(3753), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3758), 7, + ACTIONS(2433), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85849,43 +59801,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79078] = 14, + [44407] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3782), 1, + ACTIONS(2437), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2441), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1570), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2439), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85893,88 +59847,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79136] = 15, + [44468] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2443), 1, + anon_sym_RBRACE, + ACTIONS(2447), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1339), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2445), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [44529] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2449), 1, + anon_sym_RBRACE, + ACTIONS(2453), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1243), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2451), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [44590] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, anon_sym_LPAREN, - ACTIONS(2771), 1, + ACTIONS(1759), 1, anon_sym_DOLLAR, - ACTIONS(2773), 1, + ACTIONS(1761), 1, sym__special_character, - ACTIONS(2775), 1, + ACTIONS(1763), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(1765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, + ACTIONS(1767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, + ACTIONS(1769), 1, anon_sym_BQUOTE, - STATE(2127), 1, + ACTIONS(2455), 1, + sym_regex, + STATE(1944), 1, aux_sym__literal_repeat1, - STATE(2391), 1, + STATE(2101), 1, sym__expression, - ACTIONS(2769), 2, + ACTIONS(1757), 2, anon_sym_BANG, sym_test_operator, - ACTIONS(2783), 2, + ACTIONS(1771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2765), 3, + ACTIONS(1751), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2168), 6, + STATE(1761), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2332), 6, + STATE(2151), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [79196] = 14, + [44653] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3782), 1, + ACTIONS(2457), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2461), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1566), 2, + STATE(1412), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3784), 7, + ACTIONS(2459), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -85982,43 +60032,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79254] = 14, + [44714] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(2403), 1, + ACTIONS(2463), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2467), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1619), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2465), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -86026,43 +60078,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79312] = 14, + [44775] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3786), 1, + ACTIONS(2469), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2473), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1240), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2471), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -86070,43 +60124,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79370] = 14, + [44836] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(2415), 1, + ACTIONS(2475), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2479), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1262), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2477), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -86114,43 +60170,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79428] = 14, + [44897] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3707), 1, + ACTIONS(2481), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2485), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1467), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(2483), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -86158,36 +60216,2154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79486] = 14, + [44958] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2487), 1, + anon_sym_RBRACE, + ACTIONS(2491), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1415), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2489), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45019] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2493), 1, + anon_sym_RBRACE, + ACTIONS(2497), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1437), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2495), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45080] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2457), 1, + anon_sym_RBRACE, + ACTIONS(2499), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1412), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2459), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45141] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2501), 1, + anon_sym_RBRACE, + ACTIONS(2505), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1180), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2503), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45202] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2507), 1, + anon_sym_RBRACE, + ACTIONS(2511), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1479), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2509), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45263] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2513), 1, + anon_sym_RBRACE, + ACTIONS(2517), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1398), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2515), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45324] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + anon_sym_RBRACE, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2519), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1473), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1777), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45385] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2521), 1, + anon_sym_RBRACE, + ACTIONS(2525), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1355), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2523), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45446] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2527), 1, + anon_sym_RBRACE, + ACTIONS(2531), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1349), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2529), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45507] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2533), 1, + anon_sym_RBRACE, + ACTIONS(2537), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1500), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2535), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45568] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2539), 1, + anon_sym_RBRACE, + ACTIONS(2543), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1259), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2541), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45629] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1839), 1, + anon_sym_RBRACE, + ACTIONS(2545), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1254), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1841), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45690] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2547), 1, + anon_sym_RBRACE, + ACTIONS(2551), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1444), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2549), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45751] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2553), 1, + anon_sym_RBRACE, + ACTIONS(2557), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1367), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2555), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45812] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2559), 1, + anon_sym_RBRACE, + ACTIONS(2563), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1329), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2561), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45873] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2565), 1, + anon_sym_RBRACE, + ACTIONS(2569), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1327), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2567), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45934] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2571), 1, + anon_sym_RBRACE, + ACTIONS(2575), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1252), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2573), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [45995] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2577), 1, + anon_sym_RBRACE, + ACTIONS(2581), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1325), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2579), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46056] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2583), 1, + anon_sym_RBRACE, + ACTIONS(2587), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1322), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2585), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46117] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2589), 1, + anon_sym_RBRACE, + ACTIONS(2593), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1320), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2591), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46178] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2583), 1, + anon_sym_RBRACE, + ACTIONS(2595), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1322), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2585), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46239] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2597), 1, + anon_sym_RBRACE, + ACTIONS(2601), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1317), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2599), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46300] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2603), 1, + anon_sym_RBRACE, + ACTIONS(2607), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1315), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2605), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46361] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2609), 1, + anon_sym_RBRACE, + ACTIONS(2613), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1284), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2611), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46422] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2615), 1, + anon_sym_RBRACE, + ACTIONS(2619), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1335), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2617), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46483] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2621), 1, + anon_sym_RBRACE, + ACTIONS(2625), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1282), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2623), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46544] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2627), 1, + anon_sym_RBRACE, + ACTIONS(2631), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1332), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2629), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46605] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2633), 1, + anon_sym_RBRACE, + ACTIONS(2637), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1279), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2635), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46666] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2639), 1, + anon_sym_RBRACE, + ACTIONS(2643), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1446), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2641), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46727] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2645), 1, + anon_sym_RBRACE, + ACTIONS(2649), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1276), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2647), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46788] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2651), 1, + anon_sym_RBRACE, + ACTIONS(2655), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1357), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2653), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46849] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2657), 1, + anon_sym_RBRACE, + ACTIONS(2661), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1523), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2659), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46910] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2663), 1, + anon_sym_RBRACE, + ACTIONS(2667), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1271), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2665), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [46971] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2669), 1, + anon_sym_RBRACE, + ACTIONS(2673), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1536), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2671), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47032] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2675), 1, + anon_sym_RBRACE, + ACTIONS(2679), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1324), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2677), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47093] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2645), 1, + anon_sym_RBRACE, + ACTIONS(2681), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1276), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2647), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47154] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2683), 1, + anon_sym_RBRACE, + ACTIONS(2687), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1268), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2685), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47215] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2689), 1, + anon_sym_RBRACE, + ACTIONS(2693), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1328), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2691), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47276] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2695), 1, + anon_sym_RBRACE, + ACTIONS(2699), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1266), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2697), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47337] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2701), 1, + anon_sym_RBRACE, + ACTIONS(2705), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1253), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2703), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47398] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2707), 1, + anon_sym_RBRACE, + ACTIONS(2711), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1537), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2709), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47459] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2713), 1, + anon_sym_RBRACE, + ACTIONS(2717), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1541), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2715), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47520] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2719), 1, + anon_sym_RBRACE, + ACTIONS(2723), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1550), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2721), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47581] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2725), 1, + anon_sym_RBRACE, + ACTIONS(2729), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1552), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2727), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47642] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2731), 1, + anon_sym_RBRACE, + ACTIONS(2735), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1249), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2733), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47703] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2675), 1, + anon_sym_RBRACE, + ACTIONS(2737), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1324), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2677), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47764] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(2739), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2743), 1, + anon_sym_SLASH, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1641), 2, + STATE(1242), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -86202,88 +62378,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79544] = 15, + [47825] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2767), 1, - anon_sym_LPAREN, - ACTIONS(2771), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(2773), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(2775), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - STATE(2127), 1, - aux_sym__literal_repeat1, - STATE(2362), 1, - sym__expression, - ACTIONS(2769), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2765), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2168), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - STATE(2332), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [79604] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3788), 1, + ACTIONS(2719), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2745), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1645), 2, + STATE(1550), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3790), 7, + ACTIONS(2721), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -86291,81 +62424,3769 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79662] = 15, + [47886] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1743), 1, - anon_sym_LPAREN, - ACTIONS(1747), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1749), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1751), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1753), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - STATE(1961), 1, + ACTIONS(2747), 1, + anon_sym_RBRACE, + ACTIONS(2751), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - STATE(2336), 1, - sym__expression, - ACTIONS(1745), 2, - anon_sym_BANG, - sym_test_operator, - ACTIONS(1759), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1739), 3, + STATE(1559), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(1832), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - STATE(2164), 6, + ACTIONS(2749), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [47947] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2753), 1, + anon_sym_RBRACE, + ACTIONS(2757), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1642), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2755), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48008] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_DQUOTE, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(2759), 1, + sym_regex, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(2025), 1, + sym__expression, + ACTIONS(1683), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1677), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1724), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2008), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [79722] = 14, + [48071] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3788), 1, + ACTIONS(2761), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(2765), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1563), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2763), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48132] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2767), 1, + anon_sym_RBRACE, + ACTIONS(2771), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1585), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2769), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48193] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2773), 1, + anon_sym_RBRACE, + ACTIONS(2777), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1594), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2775), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48254] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2787), 1, + sym__special_character, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(2799), 1, + sym_regex, + STATE(2125), 1, + aux_sym__literal_repeat1, + STATE(2368), 1, + sym__expression, + ACTIONS(2783), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2779), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2189), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2370), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [48317] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(2801), 1, + anon_sym_RPAREN_RPAREN, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2334), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [48380] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2803), 1, + anon_sym_RBRACE, + ACTIONS(2807), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1598), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2805), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48441] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2809), 1, + anon_sym_RBRACE, + ACTIONS(2813), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1638), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2811), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48502] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2815), 1, + anon_sym_RBRACE, + ACTIONS(2819), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1580), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2817), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48563] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2821), 1, + anon_sym_RBRACE, + ACTIONS(2825), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1588), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2823), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48624] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2827), 1, + anon_sym_RBRACE, + ACTIONS(2831), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1233), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2829), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48685] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2833), 1, + anon_sym_RBRACE, + ACTIONS(2837), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1225), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2835), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48746] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2839), 1, + anon_sym_RBRACE, + ACTIONS(2843), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1223), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2841), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48807] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2833), 1, + anon_sym_RBRACE, + ACTIONS(2845), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1225), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2835), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48868] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2815), 1, + anon_sym_RBRACE, + ACTIONS(2847), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1580), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2817), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48929] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2849), 1, + anon_sym_RBRACE, + ACTIONS(2853), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1599), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2851), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [48990] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2855), 1, + anon_sym_RBRACE, + ACTIONS(2859), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1215), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2857), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49051] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2861), 1, + anon_sym_RBRACE, + ACTIONS(2865), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1576), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2863), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49112] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2867), 1, + anon_sym_RBRACE, + ACTIONS(2871), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1605), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2869), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49173] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2873), 1, + anon_sym_RBRACE, + ACTIONS(2877), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1208), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2875), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49234] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2879), 1, + anon_sym_RBRACE, + ACTIONS(2883), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1309), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2881), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49295] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2885), 1, + anon_sym_RBRACE, + ACTIONS(2889), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1232), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2887), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49356] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2849), 1, + anon_sym_RBRACE, + ACTIONS(2891), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1599), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2851), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49417] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2893), 1, + anon_sym_RBRACE, + ACTIONS(2897), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1616), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2895), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49478] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2899), 1, + anon_sym_RBRACE, + ACTIONS(2903), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1640), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2901), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49539] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2905), 1, + anon_sym_RBRACE, + ACTIONS(2909), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1419), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2907), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49600] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2911), 1, + anon_sym_RBRACE, + ACTIONS(2915), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1591), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2913), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49661] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2917), 1, + anon_sym_RBRACE, + ACTIONS(2921), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1589), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2919), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49722] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2923), 1, + anon_sym_RBRACE, + ACTIONS(2927), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1633), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2925), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49783] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LPAREN, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + sym__special_character, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + ACTIONS(2949), 1, + sym_regex, + STATE(2088), 1, + aux_sym__literal_repeat1, + STATE(2388), 1, + sym__expression, + ACTIONS(2933), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2929), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2141), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2345), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [49846] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2951), 1, + anon_sym_RBRACE, + ACTIONS(2955), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1518), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2953), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49907] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2957), 1, + anon_sym_RBRACE, + ACTIONS(2961), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1501), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2959), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [49968] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2963), 1, + anon_sym_RBRACE, + ACTIONS(2967), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1625), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2965), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50029] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2969), 1, + anon_sym_RBRACE, + ACTIONS(2973), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1622), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2971), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50090] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2963), 1, + anon_sym_RBRACE, + ACTIONS(2975), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1625), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2965), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50151] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2977), 1, + anon_sym_RBRACE, + ACTIONS(2981), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1631), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2979), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50212] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2983), 1, + anon_sym_RBRACE, + ACTIONS(2987), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1420), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2985), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50273] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2989), 1, + anon_sym_RBRACE, + ACTIONS(2993), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1628), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2991), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50334] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2995), 1, + anon_sym_RBRACE, + ACTIONS(2999), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1466), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2997), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50395] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(3005), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1407), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3003), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50456] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3007), 1, + anon_sym_RBRACE, + ACTIONS(3011), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1245), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3009), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50517] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3013), 1, + anon_sym_RBRACE, + ACTIONS(3017), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1397), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3015), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50578] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3019), 1, + anon_sym_RBRACE, + ACTIONS(3023), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1291), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3021), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50639] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3025), 1, + anon_sym_RBRACE, + ACTIONS(3029), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1178), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3027), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50700] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3031), 1, + anon_sym_RBRACE, + ACTIONS(3035), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1449), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3033), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50761] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2995), 1, + anon_sym_RBRACE, + ACTIONS(3037), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1466), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2997), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50822] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3039), 1, + anon_sym_RBRACE, + ACTIONS(3043), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1236), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3041), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50883] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3045), 1, + anon_sym_RBRACE, + ACTIONS(3049), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1227), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3047), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [50944] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3051), 1, + anon_sym_RBRACE, + ACTIONS(3055), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1226), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3053), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51005] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3057), 1, + anon_sym_RBRACE, + ACTIONS(3061), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1530), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3059), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51066] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3063), 1, + anon_sym_RBRACE, + ACTIONS(3067), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1221), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3065), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51127] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3051), 1, + anon_sym_RBRACE, + ACTIONS(3069), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1226), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3053), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51188] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3071), 1, + anon_sym_RBRACE, + ACTIONS(3075), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1210), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3073), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51249] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3077), 1, + anon_sym_RBRACE, + ACTIONS(3081), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1308), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3079), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51310] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3083), 1, + anon_sym_RBRACE, + ACTIONS(3087), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1289), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3085), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51371] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3089), 1, + anon_sym_RBRACE, + ACTIONS(3093), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1207), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3091), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51432] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3095), 1, + anon_sym_RBRACE, + ACTIONS(3099), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1230), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3097), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51493] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3101), 1, + anon_sym_RBRACE, + ACTIONS(3105), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1228), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3103), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51554] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3107), 1, + anon_sym_RBRACE, + ACTIONS(3111), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1194), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3109), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51615] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3113), 1, + anon_sym_RBRACE, + ACTIONS(3117), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1193), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3115), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51676] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3119), 1, + anon_sym_RBRACE, + ACTIONS(3123), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1200), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3121), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51737] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3125), 1, + anon_sym_RBRACE, + ACTIONS(3129), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1578), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3127), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51798] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3131), 1, + anon_sym_RBRACE, + ACTIONS(3135), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1214), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3133), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51859] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3119), 1, + anon_sym_RBRACE, + ACTIONS(3137), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1200), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3121), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51920] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3139), 1, + anon_sym_RBRACE, + ACTIONS(3143), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1199), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3141), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [51981] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3145), 1, + anon_sym_RBRACE, + ACTIONS(3149), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1192), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3147), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52042] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2977), 1, + anon_sym_RBRACE, + ACTIONS(3151), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1631), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2979), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52103] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3019), 1, + anon_sym_RBRACE, + ACTIONS(3153), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1291), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3021), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52164] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3155), 1, + anon_sym_RBRACE, + ACTIONS(3159), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1257), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3157), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52225] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3161), 1, + anon_sym_RBRACE, + ACTIONS(3165), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1212), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3163), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52286] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3167), 1, + anon_sym_RBRACE, + ACTIONS(3171), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1190), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3169), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52347] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3173), 1, + anon_sym_RBRACE, + ACTIONS(3177), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1188), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3175), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52408] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3167), 1, + anon_sym_RBRACE, + ACTIONS(3179), 1, + sym_regex, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1190), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3169), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52469] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3181), 1, + anon_sym_RBRACE, + ACTIONS(3185), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1572), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3183), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52530] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3187), 1, + anon_sym_RBRACE, + ACTIONS(3191), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1573), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3189), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52591] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3193), 1, + anon_sym_RBRACE, + ACTIONS(3197), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1195), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3195), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52652] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(2455), 1, + sym_regex, + ACTIONS(3201), 1, + sym__special_character, + STATE(2101), 1, + sym__expression, + STATE(2111), 1, + aux_sym__literal_repeat1, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3199), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [52715] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3203), 1, + anon_sym_RBRACE, + ACTIONS(3207), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1198), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3205), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52776] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3209), 1, + anon_sym_RBRACE, + ACTIONS(3213), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1574), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3211), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52837] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3215), 1, + anon_sym_RBRACE, + ACTIONS(3219), 1, + anon_sym_SLASH, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1197), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -86380,168 +66201,20267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [79780] = 14, + [52898] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(3792), 1, + ACTIONS(3221), 1, anon_sym_RBRACE, - STATE(2229), 1, + ACTIONS(3225), 1, + sym_regex, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1182), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3223), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [52959] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3227), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53017] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1889), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53075] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3231), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53133] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3231), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1185), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3233), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53191] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3235), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53249] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3235), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1184), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3237), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53307] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3239), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53365] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3241), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53423] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3243), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53481] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2501), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1180), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2503), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53539] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3245), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53597] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3245), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1350), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3247), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53655] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2501), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53713] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3249), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53771] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3221), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53829] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3167), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53887] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3173), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [53945] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3025), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54003] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LPAREN, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + sym__special_character, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + STATE(2088), 1, + aux_sym__literal_repeat1, + STATE(2395), 1, + sym__expression, + ACTIONS(2933), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2929), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2141), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2345), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [54063] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3131), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54121] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3119), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54179] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3101), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54237] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3095), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54295] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3251), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1231), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3253), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54353] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3255), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54411] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3257), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54469] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3259), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54527] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3261), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54585] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3263), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54643] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3265), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54701] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3267), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54759] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3265), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1203), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3269), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54817] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3271), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54875] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3267), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1186), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3273), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54933] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3019), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [54991] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3271), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1204), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3275), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55049] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3251), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55107] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3277), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55165] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3277), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1191), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3279), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55223] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3095), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1230), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3097), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55281] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2873), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1208), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2875), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55339] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3281), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1234), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3283), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55397] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3089), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1207), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3091), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55455] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3285), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55513] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3285), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1205), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3287), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55571] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3289), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55629] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3289), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1206), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3291), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55687] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2873), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55745] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3089), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55803] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3071), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55861] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3281), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55919] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3293), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1235), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3295), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [55977] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3293), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56035] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3297), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56093] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3051), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56151] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3063), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56209] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3299), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56267] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3301), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56325] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2539), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56383] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3303), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56441] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3305), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56499] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3307), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56557] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3309), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56615] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3309), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1237), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3311), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56673] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2855), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56731] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3313), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56789] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3313), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1238), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3315), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56847] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1839), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56905] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2469), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1240), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2471), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [56963] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3317), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57021] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3317), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1239), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3319), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57079] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2833), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57137] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2469), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57195] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2449), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57253] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2475), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57311] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2839), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57369] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2295), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57427] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3321), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1275), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3323), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57485] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2121), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57543] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3013), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57601] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2237), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57659] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3321), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57717] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2295), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1273), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2297), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57775] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3325), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1277), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3327), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57833] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3325), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57891] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3329), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [57949] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3331), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58007] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3333), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58065] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3335), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58123] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3335), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1263), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3337), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58181] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3339), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58239] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3339), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1264), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3341), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58297] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2695), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1266), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2697), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58355] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3343), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58413] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3345), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1278), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3347), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58471] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3345), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58529] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3343), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1265), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3349), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58587] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3351), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58645] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2695), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58703] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3353), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58761] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3355), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58819] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2683), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58877] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2787), 1, + sym__special_character, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + STATE(2125), 1, + aux_sym__literal_repeat1, + STATE(2336), 1, + sym__expression, + ACTIONS(2783), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2779), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2189), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2370), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [58937] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2493), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1437), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2495), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [58995] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2645), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59053] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3357), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59111] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2663), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59169] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3359), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59227] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3361), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59285] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3363), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59343] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3363), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1283), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3365), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59401] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2689), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59459] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3367), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59517] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3001), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59575] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3367), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1285), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3369), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59633] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2009), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1287), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2011), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59691] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3371), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59749] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3371), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1286), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3373), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59807] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2009), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59865] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2003), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59923] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2015), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [59981] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1997), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60039] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1991), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60097] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1971), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60155] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1977), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60213] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LPAREN, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + sym__special_character, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + STATE(2088), 1, + aux_sym__literal_repeat1, + STATE(2378), 1, + sym__expression, + ACTIONS(2933), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2929), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2141), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2345), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [60273] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2372), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [60333] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3227), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1356), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3375), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60391] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3377), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60449] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1985), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60507] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2675), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60565] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2627), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60623] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3379), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60681] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3381), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60739] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3383), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1360), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3385), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60797] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3383), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60855] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3387), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60913] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3389), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [60971] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3389), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1310), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3391), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61029] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3393), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61087] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3393), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1311), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3395), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61145] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2603), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1315), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2605), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61203] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3397), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61261] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3397), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1314), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3399), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61319] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2603), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61377] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1985), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1358), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1987), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61435] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2615), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61493] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2597), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61551] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3401), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1340), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3403), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61609] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2583), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61667] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3401), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61725] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2589), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61783] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2615), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1335), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2617), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61841] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3405), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1306), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3407), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61899] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3405), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [61957] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3409), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1362), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3411), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62015] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3413), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1343), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3415), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62073] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3413), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62131] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3417), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62189] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3419), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62247] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3421), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62305] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3423), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62363] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3425), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62421] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3423), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1336), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3427), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62479] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3429), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62537] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3431), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62595] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3433), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62653] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3433), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1337), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3435), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62711] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2443), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1339), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2445), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62769] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3409), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62827] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3437), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62885] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2487), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [62943] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3439), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63001] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3437), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1338), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3441), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63059] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2443), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63117] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3443), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1366), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3445), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63175] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2413), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63233] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2457), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63291] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3447), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63349] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2989), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63407] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3443), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63465] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2399), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63523] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3449), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63581] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2405), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63639] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3451), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63697] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2101), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [63757] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3001), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1407), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3003), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63815] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_DQUOTE, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(1908), 1, + sym__expression, + ACTIONS(1683), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1677), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1724), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2008), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [63875] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3453), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63933] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2977), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [63991] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3455), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64049] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3457), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64107] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3459), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64165] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3461), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64223] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2787), 1, + sym__special_character, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + STATE(2125), 1, + aux_sym__literal_repeat1, + STATE(2383), 1, + sym__expression, + ACTIONS(2783), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2779), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2189), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2370), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [64283] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2371), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [64343] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2235), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [64403] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3463), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64461] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1915), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64519] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3465), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64577] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3461), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1368), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3467), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64635] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3469), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64693] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1883), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64751] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3469), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1369), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3471), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64809] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3473), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1375), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3475), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64867] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1869), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64925] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1863), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [64983] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3477), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1395), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3479), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65041] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3477), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65099] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1863), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1394), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1865), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65157] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3481), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1396), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3483), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65215] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2159), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1371), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2161), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65273] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3481), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65331] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3485), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65389] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3487), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65447] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3489), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1399), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3491), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65505] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3489), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65563] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3493), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65621] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3495), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65679] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3473), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65737] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2431), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65795] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3497), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65853] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3499), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65911] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3501), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [65969] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3503), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1377), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3505), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66027] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3501), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1391), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3507), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66085] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3509), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66143] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3509), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1392), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3511), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66201] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3513), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66259] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3503), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66317] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3513), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1370), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3515), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66375] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2159), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66433] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_DQUOTE, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(1965), 1, + sym__expression, + ACTIONS(1683), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1677), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1724), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2008), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [66493] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3517), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1448), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3519), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66551] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2289), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66609] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3521), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1447), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3523), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66667] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2115), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66725] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3521), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66783] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2041), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66841] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2059), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66899] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2047), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [66957] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2193), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67015] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3517), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67073] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2289), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1442), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2291), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67131] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3429), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1462), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3525), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67189] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2095), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67247] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2205), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1401), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2207), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67305] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3527), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67363] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3527), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1400), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3529), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67421] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2205), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67479] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2263), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67537] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3531), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1202), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3533), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67595] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2199), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67653] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3535), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1439), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3537), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67711] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3535), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67769] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2199), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1438), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2201), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67827] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3539), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1441), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3541), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67885] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3539), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [67943] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3543), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1443), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3545), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68001] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3531), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68059] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3543), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68117] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3547), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68175] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3549), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1469), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3551), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68233] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3553), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68291] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3549), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68349] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3555), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68407] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2269), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68465] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3557), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68523] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2275), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68581] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3559), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68639] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3561), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68697] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3563), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68755] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3565), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68813] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3567), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68871] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3569), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68929] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3571), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [68987] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3571), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1450), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3573), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69045] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3575), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69103] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(3201), 1, + sym__special_character, + STATE(2101), 1, + sym__expression, + STATE(2111), 1, + aux_sym__literal_repeat1, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3199), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [69163] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3575), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1451), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3577), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69221] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1895), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1453), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1897), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69279] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3579), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69337] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3579), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1452), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3581), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69395] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1895), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69453] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3583), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69511] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(3201), 1, + sym__special_character, + STATE(2111), 1, + aux_sym__literal_repeat1, + STATE(2344), 1, + sym__expression, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3199), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [69571] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3563), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1445), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3585), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69629] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1833), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69687] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2493), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69745] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1875), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69803] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2507), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69861] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3587), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69919] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + anon_sym_RBRACE, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [69977] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2533), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70035] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LPAREN, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + sym__special_character, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + STATE(2088), 1, + aux_sym__literal_repeat1, + STATE(2342), 1, + sym__expression, + ACTIONS(2933), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2929), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2141), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2345), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [70095] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2657), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70153] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1807), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70211] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3589), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1526), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3591), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70269] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3593), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70327] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3595), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70385] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3597), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70443] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3589), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70501] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3599), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70559] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1795), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70617] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(1923), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70675] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3599), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1476), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3601), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70733] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3603), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70791] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3603), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1477), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3605), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70849] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2071), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1480), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2073), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70907] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3607), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [70965] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3607), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1478), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3609), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71023] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2657), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1523), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2659), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71081] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2071), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71139] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2053), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71197] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2077), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71255] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3611), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1520), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3613), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71313] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2083), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71371] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3611), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71429] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2109), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71487] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2053), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1516), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2055), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71545] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3615), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1527), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3617), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71603] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3619), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1522), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3621), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71661] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3615), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71719] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2821), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71777] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3619), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71835] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3623), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71893] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3625), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [71951] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3627), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72009] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3629), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72067] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3629), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1503), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3631), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72125] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3633), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72183] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3633), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1504), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3635), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72241] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2147), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1506), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2149), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72299] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3637), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72357] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3637), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1505), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3639), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72415] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2147), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72473] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3641), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1524), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3643), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72531] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2153), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72589] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3641), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72647] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2165), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72705] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2815), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72763] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3645), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1528), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3647), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72821] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3649), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72879] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2171), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72937] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3651), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [72995] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3645), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73053] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3653), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73111] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2394), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [73171] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3655), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73229] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3657), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73287] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3659), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73345] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(3201), 1, + sym__special_character, + STATE(2111), 1, + aux_sym__literal_repeat1, + STATE(2374), 1, + sym__expression, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3199), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [73405] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2983), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73463] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LPAREN, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + sym__special_character, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + STATE(2088), 1, + aux_sym__literal_repeat1, + STATE(2397), 1, + sym__expression, + ACTIONS(2933), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2929), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2141), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2345), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [73523] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3661), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73581] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3663), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73639] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(3201), 1, + sym__special_character, + STATE(2111), 1, + aux_sym__literal_repeat1, + STATE(2381), 1, + sym__expression, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3199), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [73699] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2787), 1, + sym__special_character, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + STATE(2125), 1, + aux_sym__literal_repeat1, + STATE(2367), 1, + sym__expression, + ACTIONS(2783), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2779), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2189), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2370), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [73759] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2725), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73817] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2719), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [73875] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2349), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [73935] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1671), 1, + anon_sym_DQUOTE, + ACTIONS(1681), 1, + anon_sym_LPAREN, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1687), 1, + sym__special_character, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + STATE(1740), 1, + aux_sym__literal_repeat1, + STATE(2025), 1, + sym__expression, + ACTIONS(1683), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1677), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1724), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2008), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [73995] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3665), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74053] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2747), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74111] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3667), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74169] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3669), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74227] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3671), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74285] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LPAREN, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + sym__special_character, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + STATE(2088), 1, + aux_sym__literal_repeat1, + STATE(2388), 1, + sym__expression, + ACTIONS(2933), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2929), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2141), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2345), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [74345] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3671), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1540), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3673), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74403] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3675), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74461] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2787), 1, + sym__special_character, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + STATE(2125), 1, + aux_sym__literal_repeat1, + STATE(2368), 1, + sym__expression, + ACTIONS(2783), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2779), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2189), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2370), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [74521] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3675), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1542), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3677), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74579] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2761), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74637] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3679), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1565), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3681), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74695] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3679), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74753] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2761), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1563), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2763), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74811] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2229), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1544), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2231), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74869] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3683), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74927] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3683), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1543), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3685), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [74985] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2229), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75043] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3687), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1567), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3689), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75101] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3687), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75159] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2245), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75217] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3691), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1579), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3693), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75275] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2251), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75333] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3691), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75391] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2257), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75449] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3695), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75507] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3697), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75565] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3699), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75623] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3701), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75681] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3701), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1532), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3703), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75739] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3705), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75797] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2362), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [75857] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2969), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75915] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2963), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [75973] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2995), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76031] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3705), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1533), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3707), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76089] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2809), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76147] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2379), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [76207] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3031), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76265] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3709), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76323] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2753), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76381] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3711), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1643), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3713), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76439] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3715), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76497] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3717), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76555] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2931), 1, + anon_sym_LPAREN, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2937), 1, + sym__special_character, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + STATE(2088), 1, + aux_sym__literal_repeat1, + STATE(2354), 1, + sym__expression, + ACTIONS(2933), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2929), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2141), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2345), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [76615] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2867), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76673] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3719), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76731] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3721), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76789] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3711), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76847] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3723), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76905] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3723), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1582), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3725), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [76963] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3727), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77021] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3727), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1583), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3729), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77079] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3731), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77137] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2849), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77195] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3733), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77253] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3735), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77311] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3737), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77369] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2893), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77427] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2899), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77485] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3737), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1593), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3739), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77543] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3741), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77601] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3741), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1595), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3743), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77659] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3745), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1637), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3747), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77717] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2339), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1597), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2341), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77775] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3745), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77833] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2131), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [77893] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3749), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [77951] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(3201), 1, + sym__special_character, + STATE(2111), 1, + aux_sym__literal_repeat1, + STATE(2131), 1, + sym__expression, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3199), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [78011] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(3201), 1, + sym__special_character, + STATE(2111), 1, + aux_sym__literal_repeat1, + STATE(2373), 1, + sym__expression, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3199), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [78071] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2899), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1640), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2901), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78129] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2787), 1, + sym__special_character, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + STATE(2125), 1, + aux_sym__literal_repeat1, + STATE(2356), 1, + sym__expression, + ACTIONS(2783), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2779), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2189), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2370), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [78189] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3749), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1596), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3751), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78247] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2339), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78305] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2341), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [78365] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3753), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1635), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3755), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78423] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3753), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78481] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2353), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78539] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2753), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1642), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2755), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78597] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2359), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78655] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2917), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1589), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2919), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78713] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2367), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78771] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3757), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78829] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3757), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1587), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3759), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [78887] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2787), 1, + sym__special_character, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + STATE(2125), 1, + aux_sym__literal_repeat1, + STATE(2389), 1, + sym__expression, + ACTIONS(2783), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2779), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2189), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2370), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [78947] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2917), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79005] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2425), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1568), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2427), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79063] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3764), 1, + anon_sym_RBRACE, + ACTIONS(3769), 1, + anon_sym_DOLLAR, + ACTIONS(3772), 1, + sym__special_character, + ACTIONS(3775), 1, + anon_sym_DQUOTE, + ACTIONS(3778), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3781), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3784), 1, + anon_sym_BQUOTE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(3787), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(3761), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3766), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79121] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3790), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79179] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2911), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79237] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3790), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1566), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3792), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79295] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2425), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79353] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_LPAREN, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2787), 1, + sym__special_character, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + STATE(2125), 1, + aux_sym__literal_repeat1, + STATE(2338), 1, + sym__expression, + ACTIONS(2783), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2779), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2189), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2370), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [79413] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(2437), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79471] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1755), 1, + anon_sym_LPAREN, + ACTIONS(1759), 1, + anon_sym_DOLLAR, + ACTIONS(1761), 1, + sym__special_character, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + STATE(1944), 1, + aux_sym__literal_repeat1, + STATE(2335), 1, + sym__expression, + ACTIONS(1757), 2, + anon_sym_BANG, + sym_test_operator, + ACTIONS(1771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1751), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(1761), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + STATE(2151), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [79531] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3794), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79589] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3796), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1644), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3794), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79838] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3792), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79896] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3796), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1627), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(3217), 7, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_POUND, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - [79954] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1767), 1, - anon_sym_DOLLAR, - ACTIONS(1769), 1, - sym__special_character, - ACTIONS(1771), 1, - anon_sym_DQUOTE, - ACTIONS(1773), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, - anon_sym_BQUOTE, - ACTIONS(3786), 1, - anon_sym_RBRACE, - STATE(2229), 1, - aux_sym__literal_repeat1, - ACTIONS(1779), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1608), 2, - sym_concatenation, - aux_sym_expansion_repeat1, - ACTIONS(1761), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, @@ -86556,43 +86476,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [80012] = 14, + [79647] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(3800), 1, anon_sym_RBRACE, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1627), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(3229), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -86600,43 +86520,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [80070] = 14, + [79705] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1769), 1, + ACTIONS(1781), 1, sym__special_character, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3796), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79763] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, anon_sym_BQUOTE, ACTIONS(3802), 1, anon_sym_RBRACE, - STATE(2229), 1, + STATE(2230), 1, aux_sym__literal_repeat1, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1627), 2, + STATE(1586), 2, sym_concatenation, aux_sym_expansion_repeat1, - ACTIONS(1761), 3, + ACTIONS(1773), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2165), 6, + STATE(2150), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(3217), 7, + ACTIONS(3804), 7, anon_sym_EQ, anon_sym_DASH, anon_sym_COLON, @@ -86644,18 +86608,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, - [80128] = 7, + [79821] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(3806), 1, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3802), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, sym_raw_string, - ACTIONS(3808), 1, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79879] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3806), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1645), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3808), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79937] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3806), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [79995] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3810), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [80053] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3812), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [80111] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1779), 1, + anon_sym_DOLLAR, + ACTIONS(1781), 1, + sym__special_character, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, + ACTIONS(3814), 1, + anon_sym_RBRACE, + STATE(2230), 1, + aux_sym__literal_repeat1, + ACTIONS(1793), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1627), 2, + sym_concatenation, + aux_sym_expansion_repeat1, + ACTIONS(1773), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2150), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(3229), 7, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_POUND, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + [80169] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(3818), 1, + sym_raw_string, + ACTIONS(3820), 1, aux_sym__simple_variable_name_token1, STATE(2237), 1, sym_string, - ACTIONS(3804), 9, + ACTIONS(3816), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -86665,7 +86893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 14, + ACTIONS(547), 14, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COLON, @@ -86680,182 +86908,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80171] = 5, + [80212] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1412), 2, - sym_file_descriptor, + ACTIONS(3822), 1, anon_sym_LF, - STATE(1652), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 19, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1193), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1652), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1191), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80247] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 1, - anon_sym_LT_LT_LT, - ACTIONS(3810), 1, - anon_sym_LF, - ACTIONS(3814), 1, - sym_file_descriptor, - ACTIONS(1165), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1167), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1169), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1187), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1189), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1652), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3812), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [80298] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LF, - ACTIONS(3826), 1, - anon_sym_LT_LT_LT, - ACTIONS(3829), 1, - sym_file_descriptor, - ACTIONS(3823), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1650), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3820), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3818), 10, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - [80343] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1171), 1, - anon_sym_LT_LT_LT, - ACTIONS(3814), 1, - sym_file_descriptor, ACTIONS(3832), 1, - anon_sym_LF, - ACTIONS(1163), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1165), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1167), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1169), 2, + anon_sym_LT_LT_LT, + ACTIONS(3835), 1, + sym_file_descriptor, + ACTIONS(3829), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(505), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1652), 4, + STATE(1647), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3812), 8, + ACTIONS(3826), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -86864,24 +86934,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [80394] = 8, + ACTIONS(3824), 10, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP, + [80257] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1171), 1, - anon_sym_LT_LT_LT, - ACTIONS(3814), 1, + ACTIONS(1181), 2, sym_file_descriptor, - ACTIONS(3834), 1, anon_sym_LF, - ACTIONS(1169), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, STATE(1650), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3812), 8, + ACTIONS(1179), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -86890,7 +86974,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3836), 10, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80294] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1439), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(1650), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1173), 19, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80333] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1201), 1, + anon_sym_LT_LT_LT, + ACTIONS(3838), 1, + anon_sym_LF, + ACTIONS(3844), 1, + sym_file_descriptor, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(1647), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3842), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(3840), 10, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -86901,10 +87049,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_AMP, - [80439] = 4, + [80378] = 11, ACTIONS(3), 1, sym_comment, + ACTIONS(1201), 1, + anon_sym_LT_LT_LT, + ACTIONS(3844), 1, + sym_file_descriptor, + ACTIONS(3846), 1, + anon_sym_LF, + ACTIONS(1175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1197), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1205), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(509), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(1650), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3842), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [80429] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1201), 1, + anon_sym_LT_LT_LT, + ACTIONS(3844), 1, + sym_file_descriptor, + ACTIONS(3848), 1, + anon_sym_LF, + ACTIONS(1175), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, ACTIONS(1193), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1197), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1195), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(1650), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3842), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [80480] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + anon_sym_LT_LT_LT, + ACTIONS(3850), 1, + anon_sym_LF, + ACTIONS(3854), 1, + sym_file_descriptor, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1231), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1241), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1243), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(509), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(1660), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3852), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [80530] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3822), 1, + anon_sym_LF, + ACTIONS(3859), 1, + anon_sym_LT_LT_LT, + ACTIONS(3862), 1, + sym_file_descriptor, + ACTIONS(3829), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(1654), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3856), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(3824), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP, + [80574] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + anon_sym_LT_LT_LT, + ACTIONS(3854), 1, + sym_file_descriptor, + ACTIONS(3865), 1, + anon_sym_LF, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1231), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1243), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1259), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(1195), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(1660), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3852), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [80624] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1231), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1439), 2, sym_file_descriptor, anon_sym_LF, STATE(1660), 4, @@ -86912,149 +87257,7 @@ static const uint16_t ts_small_parse_table[] = { sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1191), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [80475] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LF, - ACTIONS(3844), 1, - anon_sym_LT_LT_LT, - ACTIONS(3847), 1, - sym_file_descriptor, - ACTIONS(3841), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1654), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3838), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3818), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_BQUOTE, - anon_sym_AMP, - [80519] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1193), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1191), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80555] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - anon_sym_LT_LT_LT, - ACTIONS(3850), 1, - anon_sym_LF, - ACTIONS(3854), 1, - sym_file_descriptor, - ACTIONS(1169), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1209), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1211), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1245), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(505), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3852), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [80605] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1209), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1412), 2, - sym_file_descriptor, - anon_sym_LF, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 18, + ACTIONS(1173), 18, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -87073,94 +87276,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [80643] = 11, + [80662] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1213), 1, - anon_sym_LT_LT_LT, - ACTIONS(3854), 1, - sym_file_descriptor, - ACTIONS(3856), 1, + ACTIONS(3822), 1, anon_sym_LF, - ACTIONS(1169), 2, + ACTIONS(3873), 1, + anon_sym_LT_LT_LT, + ACTIONS(3876), 1, + sym_file_descriptor, + ACTIONS(3870), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1207), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(1209), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1211), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(1662), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3852), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [80693] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3816), 1, - anon_sym_LF, - ACTIONS(3861), 1, - anon_sym_LT_LT_LT, - ACTIONS(3864), 1, - sym_file_descriptor, - ACTIONS(3823), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1659), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3858), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3818), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - [80737] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3834), 1, - anon_sym_LF, - ACTIONS(3869), 1, - sym_file_descriptor, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1654), 4, + STATE(1657), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, @@ -87174,7 +87302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3836), 9, + ACTIONS(3824), 9, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -87184,164 +87312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_BQUOTE, anon_sym_AMP, - [80781] = 5, + [80706] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, - sym__concat, - STATE(1666), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1195), 22, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, + ACTIONS(1404), 1, anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_AMP, - [80819] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1213), 1, - anon_sym_LT_LT_LT, - ACTIONS(3834), 1, - anon_sym_LF, - ACTIONS(3854), 1, - sym_file_descriptor, - ACTIONS(1169), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(1659), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3852), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(3836), 9, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - [80863] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1412), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1514), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 17, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [80900] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - sym__concat, - STATE(1666), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3873), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3875), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [80937] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 1, - ts_builtin_sym_end, - ACTIONS(1330), 1, - anon_sym_LT_LT_LT, - ACTIONS(3877), 1, + ACTIONS(3838), 1, anon_sym_LF, ACTIONS(3881), 1, sym_file_descriptor, - ACTIONS(1324), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1326), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 2, + ACTIONS(1402), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1322), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1672), 4, + STATE(1657), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, @@ -87355,17 +87338,192 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [80986] = 5, + ACTIONS(3840), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_BQUOTE, + anon_sym_AMP, + [80750] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(3883), 1, sym__concat, - STATE(1673), 1, + STATE(1664), 1, aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, + ACTIONS(1229), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1231), 21, + ACTIONS(1227), 22, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_AMP, + [80788] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1245), 1, + anon_sym_LT_LT_LT, + ACTIONS(3838), 1, + anon_sym_LF, + ACTIONS(3854), 1, + sym_file_descriptor, + ACTIONS(1199), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(1654), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3852), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(3840), 9, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP, + [80832] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1179), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [80868] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 2, + sym_file_descriptor, + anon_sym_LF, + STATE(1660), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1179), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1439), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + STATE(1670), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1173), 16, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [80941] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3885), 1, + sym__concat, + STATE(1679), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1218), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -87387,55 +87545,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [81023] = 4, + [80978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, + ACTIONS(3887), 1, sym__concat, - STATE(1694), 1, + STATE(1725), 1, aux_sym_concatenation_repeat1, - ACTIONS(1195), 23, + ACTIONS(1229), 2, + sym_file_descriptor, anon_sym_LF, + ACTIONS(1227), 21, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym__special_character, - sym_test_operator, + anon_sym_BQUOTE, anon_sym_AMP, + [81015] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3895), 1, + anon_sym_LT_LT_LT, + ACTIONS(3898), 1, + sym_file_descriptor, + ACTIONS(3822), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3892), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(1666), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3824), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP, + ACTIONS(3889), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, [81058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, - sym__special_character, - STATE(1678), 1, - aux_sym__literal_repeat1, - ACTIONS(3887), 2, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1439), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3889), 21, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1173), 17, anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -87453,100 +87647,33 @@ static const uint16_t ts_small_parse_table[] = { [81095] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(982), 1, + ACTIONS(835), 1, ts_builtin_sym_end, - ACTIONS(1330), 1, + ACTIONS(1344), 1, anon_sym_LT_LT_LT, - ACTIONS(3881), 1, - sym_file_descriptor, - ACTIONS(3893), 1, - anon_sym_LF, - ACTIONS(1324), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1326), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1328), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1368), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1672), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3879), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [81144] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - sym__concat, - STATE(1714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1195), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_AMP, - [81181] = 8, - ACTIONS(3), 1, - sym_comment, ACTIONS(3901), 1, - anon_sym_LT_LT_LT, - ACTIONS(3904), 1, - sym_file_descriptor, - ACTIONS(3816), 2, - ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3898), 2, + ACTIONS(3905), 1, + sym_file_descriptor, + ACTIONS(1338), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1340), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1342), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(1671), 4, + ACTIONS(1410), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1670), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3818), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - ACTIONS(3895), 8, + ACTIONS(3903), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -87555,261 +87682,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [81224] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 1, - anon_sym_LT_LT_LT, - ACTIONS(3881), 1, - sym_file_descriptor, - ACTIONS(1328), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(3834), 2, - ts_builtin_sym_end, - anon_sym_LF, - STATE(1671), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3836), 7, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_AMP, - ACTIONS(3879), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [81267] = 5, + [81144] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(3907), 1, - sym__concat, - STATE(1673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1215), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81304] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3891), 1, - sym__special_character, - STATE(1678), 1, - aux_sym__literal_repeat1, - ACTIONS(3910), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3912), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81341] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - sym__concat, - STATE(1666), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3914), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3916), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81378] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_BQUOTE, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, - sym_file_descriptor, - ACTIONS(3918), 1, - anon_sym_LF, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1514), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1537), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1535), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [81427] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(505), 1, - anon_sym_RPAREN, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, - sym_file_descriptor, - ACTIONS(3920), 1, - anon_sym_LF, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1245), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [81476] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3922), 1, - sym__special_character, - STATE(1678), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1355), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81513] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3925), 1, sym_word, - ACTIONS(3932), 1, + ACTIONS(3914), 1, sym_file_descriptor, - ACTIONS(3935), 1, + ACTIONS(3917), 1, sym_variable_name, - STATE(3262), 1, + STATE(3263), 1, sym_subscript, - STATE(1679), 3, + STATE(1669), 3, sym_variable_assignment, sym_file_redirect, aux_sym_command_repeat1, - ACTIONS(3927), 8, + ACTIONS(3909), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -87818,7 +87706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(3930), 10, + ACTIONS(3912), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -87829,17 +87717,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [81556] = 5, + [81187] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(1344), 1, + anon_sym_LT_LT_LT, + ACTIONS(3905), 1, + sym_file_descriptor, + ACTIONS(1342), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(3838), 2, + ts_builtin_sym_end, + anon_sym_LF, + STATE(1666), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3840), 7, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_AMP, + ACTIONS(3903), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [81230] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BQUOTE, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(3920), 1, + anon_sym_LF, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1520), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1551), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1549), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3879), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [81279] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1181), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + STATE(1670), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1179), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81314] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3926), 1, sym__special_character, - STATE(1678), 1, + STATE(1676), 1, aux_sym__literal_repeat1, - ACTIONS(3938), 2, + ACTIONS(3922), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(3940), 21, + ACTIONS(3924), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -87861,56 +87853,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [81593] = 11, + [81351] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 1, - anon_sym_RPAREN, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, - sym_file_descriptor, - ACTIONS(3942), 1, + ACTIONS(3928), 1, + sym__concat, + STATE(1738), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 23, anon_sym_LF, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1207), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [81642] = 7, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + anon_sym_AMP, + [81386] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(3932), 1, anon_sym_DQUOTE, - ACTIONS(3948), 1, + ACTIONS(3934), 1, sym_raw_string, - ACTIONS(3950), 1, + ACTIONS(3936), 1, aux_sym__simple_variable_name_token1, - STATE(2467), 1, + STATE(2486), 1, sym_string, - ACTIONS(3944), 9, + ACTIONS(3930), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -87920,7 +87905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - ACTIONS(537), 12, + ACTIONS(547), 12, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -87933,49 +87918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [81683] = 5, + [81427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1412), 2, + ACTIONS(3938), 1, + sym__special_character, + STATE(1676), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 2, sym_file_descriptor, anon_sym_LF, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 17, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81720] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - sym__concat, - STATE(1666), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3952), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3954), 21, + ACTIONS(1369), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -87997,17 +87950,659 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [81757] = 5, + [81464] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3956), 1, + ACTIONS(3883), 1, sym__concat, - STATE(1689), 1, + STATE(1664), 1, aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, + ACTIONS(3941), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(1195), 21, + ACTIONS(3943), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81501] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 1, + sym__concat, + STATE(1664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3945), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3947), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81538] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3949), 1, + sym__concat, + STATE(1679), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1211), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81575] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1332), 1, + ts_builtin_sym_end, + ACTIONS(1344), 1, + anon_sym_LT_LT_LT, + ACTIONS(3905), 1, + sym_file_descriptor, + ACTIONS(3952), 1, + anon_sym_LF, + ACTIONS(1338), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1340), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1342), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1336), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1670), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3903), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [81624] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1439), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1520), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(1173), 17, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [81661] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 1, + sym__concat, + STATE(1664), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3954), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3956), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81698] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3926), 1, + sym__special_character, + STATE(1676), 1, + aux_sym__literal_repeat1, + ACTIONS(3958), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3960), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81735] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 1, + sym__concat, + STATE(1693), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1227), 21, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_AMP, + [81772] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1195), 1, + anon_sym_BQUOTE, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(3962), 1, + anon_sym_LF, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1520), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1551), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1559), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3879), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [81821] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_RPAREN, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(3964), 1, + anon_sym_LF, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1241), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3879), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [81870] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1195), 1, + anon_sym_RPAREN, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(3966), 1, + anon_sym_LF, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1259), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3879), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [81919] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3926), 1, + sym__special_character, + STATE(1676), 1, + aux_sym__literal_repeat1, + ACTIONS(3968), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3970), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [81956] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(3972), 1, + anon_sym_LF, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1509), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3879), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [82002] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3974), 1, + sym__concat, + STATE(1722), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1218), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [82038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1425), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82070] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_DQUOTE, + ACTIONS(3980), 1, + anon_sym_DOLLAR, + ACTIONS(3982), 1, + sym__special_character, + ACTIONS(3984), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3986), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3988), 1, + anon_sym_BQUOTE, + STATE(2489), 1, + aux_sym__literal_repeat1, + ACTIONS(3990), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1749), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(3978), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2425), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82122] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3992), 1, + sym__concat, + STATE(1679), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1218), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1376), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82190] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_DQUOTE, + ACTIONS(3980), 1, + anon_sym_DOLLAR, + ACTIONS(3982), 1, + sym__special_character, + ACTIONS(3984), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3986), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3988), 1, + anon_sym_BQUOTE, + STATE(2489), 1, + aux_sym__literal_repeat1, + ACTIONS(3990), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1749), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(3994), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2425), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82242] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3996), 1, + sym__special_character, + STATE(1711), 1, + aux_sym__literal_repeat1, + ACTIONS(3958), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3960), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -88026,39 +88621,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, anon_sym_BQUOTE, anon_sym_AMP, - [81794] = 11, + [82278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1189), 1, - anon_sym_BQUOTE, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, + ACTIONS(3998), 1, + sym__concat, + STATE(1690), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3941), 3, sym_file_descriptor, - ACTIONS(3958), 1, + sym_variable_name, + sym_word, + ACTIONS(3943), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [82314] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(4000), 1, anon_sym_LF, ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1514), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(1537), 2, + ACTIONS(1400), 2, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1545), 3, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1535), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1660), 4, + STATE(1658), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, + ACTIONS(3879), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -88067,24 +88690,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [81843] = 5, + [82360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1412), 3, + ACTIONS(1360), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - STATE(1672), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(1175), 16, + ACTIONS(1358), 21, anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_LT, @@ -88099,19 +88719,1089 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [81880] = 4, + [82392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1193), 3, + ACTIONS(1213), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, anon_sym_LF, - STATE(1672), 4, + ACTIONS(1211), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82424] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3887), 1, + sym__concat, + STATE(1725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3941), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3943), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [82460] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1453), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1449), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82524] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(4002), 1, + anon_sym_LF, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1537), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(1191), 18, + ACTIONS(3879), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [82570] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(4004), 1, + anon_sym_LF, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1555), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3879), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [82616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1441), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82648] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_DQUOTE, + ACTIONS(3980), 1, + anon_sym_DOLLAR, + ACTIONS(3982), 1, + sym__special_character, + ACTIONS(3984), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3986), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3988), 1, + anon_sym_BQUOTE, + STATE(2489), 1, + aux_sym__literal_repeat1, + ACTIONS(3990), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1749), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(3976), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(4006), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(2425), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82700] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1394), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82732] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1263), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1380), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82796] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4008), 1, + sym__special_character, + STATE(1711), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1369), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [82832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1284), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1288), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [82896] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3996), 1, + sym__special_character, + STATE(1711), 1, + aux_sym__literal_repeat1, + ACTIONS(3922), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3924), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [82932] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3887), 1, + sym__concat, + STATE(1725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3945), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3947), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [82968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1292), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83000] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 1, + sym__concat, + STATE(1693), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3954), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3956), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1296), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1300), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83100] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3998), 1, + sym__concat, + STATE(1690), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3945), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(3947), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [83136] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1267), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83168] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4011), 1, + sym__concat, + STATE(1722), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1211), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [83204] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4014), 1, + sym__concat, + STATE(1723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1211), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [83240] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3928), 1, + sym__concat, + STATE(1738), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4017), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [83274] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4019), 1, + sym__concat, + STATE(1723), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1218), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [83310] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 1, + sym__concat, + STATE(1693), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3945), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3947), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 1, + sym__concat, + STATE(1693), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3941), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3943), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83382] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1304), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83414] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1308), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83446] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(4021), 1, + anon_sym_LF, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1513), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + STATE(1658), 4, + sym_file_redirect, + sym_heredoc_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3879), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [83492] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3998), 1, + sym__concat, + STATE(1690), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1227), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [83528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1312), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1316), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1320), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83624] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4023), 1, + sym__concat, + STATE(1807), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1227), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -88129,162 +89819,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + sym__special_character, anon_sym_AMP, - [81915] = 5, + [83660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3960), 1, + ACTIONS(3996), 1, + sym__special_character, + STATE(1711), 1, + aux_sym__literal_repeat1, + ACTIONS(3968), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3970), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [83696] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3887), 1, + sym__concat, + STATE(1725), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3954), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3956), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [83732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4025), 1, sym__concat, STATE(1739), 1, aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1231), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [81951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1274), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [81983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1270), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1251), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1362), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82079] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3962), 1, - sym__concat, - STATE(1712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1231), 22, + ACTIONS(1218), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -88307,140 +89913,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, sym_test_operator, anon_sym_AMP, - [82113] = 3, + [83766] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 3, - sym_file_descriptor, + ACTIONS(4027), 1, sym__concat, - anon_sym_LF, - ACTIONS(1374), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1344), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1378), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82209] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3969), 1, - anon_sym_DOLLAR, - ACTIONS(3972), 1, - sym__special_character, - ACTIONS(3975), 1, - anon_sym_DQUOTE, - ACTIONS(3978), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3981), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3984), 1, - anon_sym_BQUOTE, - STATE(2490), 1, - aux_sym__literal_repeat1, - ACTIONS(3987), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1698), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3964), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(3967), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2426), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82261] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3990), 1, - sym__special_character, - STATE(1699), 1, - aux_sym__literal_repeat1, - ACTIONS(1355), 22, + STATE(1739), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -88463,1003 +89943,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, sym_test_operator, anon_sym_AMP, - [82295] = 13, + [83800] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, - anon_sym_DQUOTE, - ACTIONS(3997), 1, - anon_sym_DOLLAR, - ACTIONS(3999), 1, - sym__special_character, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - STATE(2490), 1, - aux_sym__literal_repeat1, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1698), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3993), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(3995), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2426), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1340), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82379] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, - sym_file_descriptor, - ACTIONS(4009), 1, - anon_sym_LF, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1495), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [82425] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - sym__concat, - STATE(1714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3914), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3916), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1340), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82493] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym__concat, - STATE(1743), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3952), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(3954), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [82529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1430), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1195), 22, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_AMP, - [82593] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3946), 1, - anon_sym_DQUOTE, - ACTIONS(3997), 1, - anon_sym_DOLLAR, - ACTIONS(3999), 1, - sym__special_character, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - STATE(2490), 1, - aux_sym__literal_repeat1, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1698), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3993), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(4013), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2426), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [82645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1434), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82677] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym__concat, - STATE(1743), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3873), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(3875), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [82713] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - sym__concat, - STATE(1689), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3873), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3875), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [82749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4015), 1, - sym__concat, - STATE(1712), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [82783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1438), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82815] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4018), 1, - sym__concat, - STATE(1673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1231), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1215), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82883] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 1, - sym__concat, - STATE(1694), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4020), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [82917] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4022), 1, - sym__concat, - STATE(1873), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1195), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_AMP, - [82953] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1314), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [82985] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, - sym_file_descriptor, - ACTIONS(4024), 1, - anon_sym_LF, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1521), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [83031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1444), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83063] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, - sym_file_descriptor, - ACTIONS(4026), 1, - anon_sym_LF, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1541), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [83109] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4028), 1, - sym__special_character, - STATE(1738), 1, - aux_sym__literal_repeat1, - ACTIONS(3887), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3889), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [83145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1426), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83177] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym__concat, - STATE(1743), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1195), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83213] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - sym__concat, - STATE(1714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3873), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3875), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83249] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1310), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3871), 1, - sym__concat, - STATE(1714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3952), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3954), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83317] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1306), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1302), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83381] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, - sym_file_descriptor, - ACTIONS(4030), 1, - anon_sym_LF, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1499), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [83427] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, - sym_file_descriptor, ACTIONS(4032), 1, + sym__special_character, + STATE(1748), 1, + aux_sym__literal_repeat1, + ACTIONS(4030), 22, anon_sym_LF, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [83834] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1324), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(1525), 3, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1328), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83898] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(1227), 22, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_AMP, + [83930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1346), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1346), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [83994] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1350), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [84026] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1404), 1, + anon_sym_LT_LT_LT, + ACTIONS(3881), 1, + sym_file_descriptor, + ACTIONS(4034), 1, + anon_sym_LF, + ACTIONS(1386), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(1400), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + ACTIONS(1402), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(1500), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - STATE(1660), 4, + STATE(1658), 4, sym_file_redirect, sym_heredoc_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, + ACTIONS(3879), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -89468,417 +90183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [83473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1298), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83505] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4028), 1, - sym__special_character, - STATE(1738), 1, - aux_sym__literal_repeat1, - ACTIONS(3910), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3912), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [83541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1294), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1290), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83605] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - sym__concat, - STATE(1689), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3914), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3916), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [83641] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3946), 1, - anon_sym_DQUOTE, - ACTIONS(3997), 1, - anon_sym_DOLLAR, - ACTIONS(3999), 1, - sym__special_character, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - STATE(2490), 1, - aux_sym__literal_repeat1, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1698), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3993), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - ACTIONS(4034), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(2426), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [83693] = 5, + [84072] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(4036), 1, sym__special_character, - STATE(1738), 1, + STATE(1748), 1, aux_sym__literal_repeat1, - ACTIONS(1360), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1355), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [83729] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4039), 1, - sym__concat, - STATE(1739), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1215), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [83765] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4028), 1, - sym__special_character, - STATE(1738), 1, - aux_sym__literal_repeat1, - ACTIONS(3938), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3940), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [83801] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4042), 1, - sym__concat, - STATE(1741), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1215), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83837] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3956), 1, - sym__concat, - STATE(1689), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3952), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3954), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [83873] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4045), 1, - sym__concat, - STATE(1741), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1231), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [83909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1286), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [83941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4049), 1, - sym__special_character, - STATE(1699), 1, - aux_sym__literal_repeat1, - ACTIONS(4047), 22, + ACTIONS(1369), 22, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -89901,193 +90213,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, sym_test_operator, anon_sym_AMP, - [83975] = 3, + [84106] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1348), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1278), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84039] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1388), 1, - anon_sym_LT_LT_LT, - ACTIONS(3869), 1, - sym_file_descriptor, - ACTIONS(4051), 1, - anon_sym_LF, - ACTIONS(1370), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(1384), 2, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1386), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(1486), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - STATE(1660), 4, - sym_file_redirect, - sym_heredoc_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(3867), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [84085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1282), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1378), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(4044), 1, anon_sym_DOLLAR, + ACTIONS(4047), 1, sym__special_character, + ACTIONS(4050), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(4053), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4056), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4059), 1, anon_sym_BQUOTE, + STATE(2489), 1, + aux_sym__literal_repeat1, + ACTIONS(4062), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [84148] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3873), 2, - sym_file_descriptor, + STATE(1749), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(4039), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + ACTIONS(4042), 4, anon_sym_LF, - ACTIONS(3875), 21, anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_AMP, - [84179] = 3, + STATE(2425), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 3, + ACTIONS(1294), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1278), 20, + ACTIONS(1292), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -90108,149 +90280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [84210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1282), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [84241] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4022), 1, - sym__concat, - STATE(1873), 1, - aux_sym_concatenation_repeat1, - ACTIONS(3952), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3954), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4053), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4055), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4057), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4059), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84338] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4061), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4063), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [84369] = 3, + [84189] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4065), 2, @@ -90278,13 +90308,300 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84400] = 3, + [84220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4069), 2, + ACTIONS(1378), 1, + sym__concat, + ACTIONS(1376), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84251] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1227), 23, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + anon_sym_AMP, + [84280] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 1, + sym__special_character, + STATE(1822), 1, + aux_sym__literal_repeat1, + ACTIONS(3968), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3970), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [84315] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 1, + sym__concat, + ACTIONS(1284), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84346] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4023), 1, + sym__concat, + STATE(1807), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3954), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3956), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [84381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 1, + sym__concat, + ACTIONS(1288), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84412] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 1, + sym__special_character, + STATE(1822), 1, + aux_sym__literal_repeat1, + ACTIONS(3922), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3924), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [84447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + sym__concat, + ACTIONS(1292), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84478] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + sym__concat, + ACTIONS(1296), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84509] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4075), 1, + sym__concat, + STATE(1902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4017), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4071), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [84544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4071), 21, + ACTIONS(3947), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -90306,35 +90623,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84431] = 3, + [84575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4073), 2, - sym_file_descriptor, + ACTIONS(1302), 1, + sym__concat, + ACTIONS(1300), 22, anon_sym_LF, - ACTIONS(4075), 21, anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, anon_sym_AMP, - [84462] = 3, + [84606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym__concat, + ACTIONS(1267), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 1, + sym__concat, + ACTIONS(1304), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + sym__concat, + ACTIONS(1308), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + sym__concat, + ACTIONS(1312), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 1, + sym__concat, + ACTIONS(1316), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + sym__concat, + ACTIONS(1320), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 1, + sym__concat, + ACTIONS(1324), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 1, + sym__concat, + ACTIONS(1328), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + sym__concat, + ACTIONS(1346), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + sym__concat, + ACTIONS(1346), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [84916] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4077), 2, @@ -90362,7 +90959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84493] = 3, + [84947] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4081), 2, @@ -90390,7 +90987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84524] = 3, + [84978] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4085), 2, @@ -90418,7 +91015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84555] = 3, + [85009] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4089), 2, @@ -90446,7 +91043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84586] = 3, + [85040] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4093), 2, @@ -90474,7 +91071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84617] = 3, + [85071] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4097), 2, @@ -90502,7 +91099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84648] = 3, + [85102] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4101), 2, @@ -90530,7 +91127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84679] = 3, + [85133] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4105), 2, @@ -90558,7 +91155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84710] = 3, + [85164] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4109), 2, @@ -90586,7 +91183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84741] = 3, + [85195] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4113), 2, @@ -90614,7 +91211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84772] = 3, + [85226] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4117), 2, @@ -90642,7 +91239,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84803] = 3, + [85257] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4121), 2, @@ -90670,7 +91267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84834] = 3, + [85288] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4125), 2, @@ -90698,7 +91295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84865] = 3, + [85319] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4129), 2, @@ -90726,7 +91323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84896] = 3, + [85350] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4133), 2, @@ -90754,7 +91351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84927] = 3, + [85381] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4137), 2, @@ -90782,7 +91379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84958] = 3, + [85412] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4141), 2, @@ -90810,35 +91407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [84989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1286), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85020] = 3, + [85443] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4145), 2, @@ -90866,7 +91435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85051] = 3, + [85474] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4149), 2, @@ -90894,18 +91463,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85082] = 5, + [85505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4153), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(3938), 3, + ACTIONS(4153), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4155), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [85536] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4157), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4159), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [85567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4161), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4163), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [85598] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4167), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [85629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 1, + sym__concat, + ACTIONS(1350), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [85660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4169), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4171), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [85691] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4173), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4175), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [85722] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4023), 1, + sym__concat, + STATE(1807), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3941), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3940), 18, + ACTIONS(3943), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -90924,13 +91689,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85117] = 3, + [85757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4155), 2, + ACTIONS(1360), 1, + sym__concat, + ACTIONS(1358), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [85788] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4157), 21, + ACTIONS(4179), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -90952,13 +91745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85148] = 3, + [85819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4159), 2, + ACTIONS(4181), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4161), 21, + ACTIONS(4183), 21, anon_sym_SEMI, anon_sym_esac, anon_sym_PIPE, @@ -90980,569 +91773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4165), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4169), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4171), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4173), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85272] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1290), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1294), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85334] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1298), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1302), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85396] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1306), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85427] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1310), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1314), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85489] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1340), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1340), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1344), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1348), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1426), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [85644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1362), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1374), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4177), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4179), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4181), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [85768] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4183), 1, - sym__special_character, - STATE(1853), 1, - aux_sym__literal_repeat1, - ACTIONS(3938), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(3940), 18, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [85803] = 3, + [85850] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4185), 2, @@ -91570,18 +91801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [85834] = 3, + [85881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 3, + ACTIONS(4189), 2, sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1378), 20, + ACTIONS(4191), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91596,48 +91828,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [85865] = 3, + [85912] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 4, + ACTIONS(4193), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1374), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [85896] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 3, - sym_file_descriptor, - sym__concat, anon_sym_LF, - ACTIONS(1270), 20, + ACTIONS(4195), 21, anon_sym_SEMI, + anon_sym_esac, anon_sym_PIPE, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91652,134 +91856,2133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, anon_sym_AMP, - [85927] = 3, + [85943] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 3, - sym_file_descriptor, + ACTIONS(4197), 1, sym__concat, - anon_sym_LF, - ACTIONS(1251), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [85958] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1444), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [85989] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1362), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1215), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86051] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4191), 1, - sym__concat, - STATE(1867), 1, + STATE(1812), 1, aux_sym_concatenation_repeat1, - ACTIONS(1231), 5, + ACTIONS(1220), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1218), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [85978] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 1, + sym__concat, + ACTIONS(1380), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [86009] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4069), 1, + sym__special_character, + STATE(1822), 1, + aux_sym__literal_repeat1, + ACTIONS(3958), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3960), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4201), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4205), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86106] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4207), 1, + sym__concat, + STATE(1812), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1213), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1211), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4210), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4212), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86172] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 1, + sym__concat, + ACTIONS(1263), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [86203] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 1, + sym__concat, + ACTIONS(1394), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [86234] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 1, + sym__concat, + ACTIONS(1441), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [86265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 1, + sym__concat, + ACTIONS(1449), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [86296] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 1, + sym__concat, + ACTIONS(1453), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [86327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym__concat, + ACTIONS(1211), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [86358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4214), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4216), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 1, + sym__concat, + ACTIONS(1425), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [86420] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4218), 1, + sym__special_character, + STATE(1822), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1369), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86455] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4221), 1, + sym__special_character, + STATE(1823), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1369), 18, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86490] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1284), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86521] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3941), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3943), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1288), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86583] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1292), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1296), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1300), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1267), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1304), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1308), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86769] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1376), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [86800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3954), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3956), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86831] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1312), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1425), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [86893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1316), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [86924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4224), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4226), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [86955] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1211), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [86986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1453), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [87017] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1320), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87048] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1324), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87079] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4230), 1, + anon_sym_esac, + ACTIONS(4232), 1, + sym__special_character, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3480), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1966), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87134] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4234), 1, + anon_sym_esac, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3453), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1968), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87189] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1328), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1441), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87251] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4075), 1, + sym__concat, + STATE(1902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1233), 16, + ACTIONS(1229), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [87286] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1449), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [87317] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4236), 1, + anon_sym_esac, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3385), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1983), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1441), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [87403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1449), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87434] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 1, + sym__special_character, + STATE(1823), 1, + aux_sym__literal_repeat1, + ACTIONS(3958), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(3960), 18, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87469] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1346), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87500] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1346), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87531] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1350), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1358), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1453), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1211), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87655] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4240), 1, + anon_sym_esac, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3282), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1987), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1380), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87741] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4242), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4244), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [87772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4023), 1, + sym__concat, + STATE(1807), 1, + aux_sym_concatenation_repeat1, + ACTIONS(3945), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3947), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [87807] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4248), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [87838] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4250), 1, + anon_sym_esac, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3416), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2023), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1425), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87924] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4252), 1, + anon_sym_esac, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3408), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1972), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1263), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [88010] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4254), 1, + anon_sym_esac, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3459), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1957), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1376), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [88096] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1394), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88127] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1263), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88158] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4256), 1, + anon_sym_esac, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3460), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1907), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1380), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88244] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_word, + ACTIONS(1394), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [88275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1358), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88306] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4258), 1, + anon_sym_esac, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3301), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1999), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1350), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88392] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4260), 1, + sym__concat, + STATE(1878), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1213), 16, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -91796,800 +93999,642 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [86086] = 3, + [88427] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1438), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(2785), 1, anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1348), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86148] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4195), 1, + ACTIONS(4263), 1, anon_sym_esac, - ACTIONS(4197), 1, - sym__special_character, - STATE(2929), 1, + STATE(2928), 1, aux_sym__literal_repeat1, - STATE(3037), 1, + STATE(3036), 1, sym_concatenation, - STATE(3278), 1, + STATE(3298), 1, sym_last_case_item, - ACTIONS(2783), 2, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1997), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + ACTIONS(4228), 3, + sym_raw_string, + sym_ansii_c_string, + sym_word, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4267), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [88513] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1346), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88544] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4271), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [88575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1346), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88606] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1328), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4275), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [88668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1324), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88699] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1320), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1316), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1312), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1308), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1304), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88854] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1267), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1300), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88916] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 1, + sym__special_character, + STATE(1823), 1, + aux_sym__literal_repeat1, + ACTIONS(3922), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(3924), 18, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [88951] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1296), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [88982] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 3, + sym_file_descriptor, + sym__concat, + anon_sym_LF, + ACTIONS(1288), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [89013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4279), 21, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [89044] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4281), 1, + anon_sym_esac, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3279), 1, + sym_last_case_item, + ACTIONS(2797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1996), 2, sym_case_item, aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, + ACTIONS(4228), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2913), 6, + STATE(2914), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [86203] = 3, + [89099] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1344), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(2785), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2789), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(2791), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86234] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1340), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, + ACTIONS(4232), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1340), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1434), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86327] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1430), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [86358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1434), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [86389] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1430), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1314), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1310), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1306), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1438), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [86544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1274), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [86575] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1215), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [86606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1302), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(1195), 21, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_BQUOTE, - anon_sym_AMP, - [86668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 3, - sym_file_descriptor, - sym__concat, - anon_sym_LF, - ACTIONS(1444), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [86699] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4201), 1, - sym__concat, - STATE(1812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4020), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4199), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [86734] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3914), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3916), 21, - anon_sym_SEMI, + ACTIONS(4283), 1, anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [86765] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4203), 1, - anon_sym_esac, - STATE(2929), 1, + STATE(2928), 1, aux_sym__literal_repeat1, - STATE(3037), 1, + STATE(3036), 1, sym_concatenation, - STATE(3280), 1, + STATE(3278), 1, sym_last_case_item, - ACTIONS(2783), 2, + ACTIONS(2797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, STATE(1995), 2, sym_case_item, aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, + ACTIONS(4228), 3, sym_raw_string, sym_ansii_c_string, sym_word, - STATE(2913), 6, + STATE(2914), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [86820] = 3, + [89154] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4205), 2, + ACTIONS(1229), 2, sym_file_descriptor, anon_sym_LF, - ACTIONS(4207), 21, + ACTIONS(1227), 21, anon_sym_SEMI, - anon_sym_esac, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [86851] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4209), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3460), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2021), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86906] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4211), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3440), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1976), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [86961] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4183), 1, - sym__special_character, - STATE(1853), 1, - aux_sym__literal_repeat1, - ACTIONS(3887), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(3889), 18, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [86996] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4153), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(3887), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3889), 18, - anon_sym_SEMI, - anon_sym_PIPE, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_AMP, @@ -92605,43 +94650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_AMP, - [87031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1298), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87062] = 3, + anon_sym_AMP, + [89185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 3, + ACTIONS(1286), 3, sym_file_descriptor, sym__concat, anon_sym_LF, - ACTIONS(1426), 20, + ACTIONS(1284), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_RPAREN, @@ -92662,1454 +94681,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [87093] = 3, - ACTIONS(3), 1, + [89216] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, + ACTIONS(4285), 1, sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1294), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87124] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1290), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1286), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87186] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4022), 1, - sym__concat, - STATE(1873), 1, + STATE(1878), 1, aux_sym_concatenation_repeat1, - ACTIONS(3914), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3916), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + ACTIONS(1218), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1220), 16, + anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87221] = 3, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [89251] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 4, - sym_file_descriptor, + ACTIONS(3998), 1, sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1282), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1278), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1274), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1270), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_word, - ACTIONS(1251), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87376] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4153), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(3910), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3912), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87411] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4022), 1, - sym__concat, - STATE(1873), 1, + STATE(1690), 1, aux_sym_concatenation_repeat1, - ACTIONS(3873), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3875), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87446] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4213), 1, - sym__special_character, - STATE(1853), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 3, + ACTIONS(1249), 3, sym_file_descriptor, sym_variable_name, sym_word, - ACTIONS(1355), 18, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [87481] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4216), 1, - sym__special_character, - STATE(1854), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1355), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - sym__concat, - ACTIONS(1426), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [87547] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4219), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3415), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2015), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87602] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4223), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87633] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4225), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3407), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2014), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [87688] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 1, - sym__concat, - ACTIONS(1444), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [87719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__concat, - ACTIONS(1215), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [87750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3954), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87781] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 1, - sym__concat, - ACTIONS(1438), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [87812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4227), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4229), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [87843] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 1, - sym__concat, - ACTIONS(1434), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [87874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - sym__concat, - ACTIONS(1430), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [87905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 1, - sym__concat, - ACTIONS(1378), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [87936] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4231), 1, - sym__concat, - STATE(1867), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1217), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [87971] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4234), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3301), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1994), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 1, - sym__concat, - ACTIONS(1374), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4236), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4238), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88088] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4240), 1, - sym__concat, - STATE(1871), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1217), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1215), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88123] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 1, - sym__concat, - ACTIONS(1362), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88154] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4243), 1, - sym__concat, - STATE(1871), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1231), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 1, - sym__concat, - ACTIONS(1348), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88220] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 1, - sym__concat, - ACTIONS(1344), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - sym__concat, - ACTIONS(1340), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - sym__concat, - ACTIONS(1340), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 1, - sym__concat, - ACTIONS(1314), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 1, - sym__concat, - ACTIONS(1310), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 1, - sym__concat, - ACTIONS(1306), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, - sym__concat, - ACTIONS(1302), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4247), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88468] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4249), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3306), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1905), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [88523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4251), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4253), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88554] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4257), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - sym__concat, - ACTIONS(1298), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 1, - sym__concat, - ACTIONS(1294), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 1, - sym__concat, - ACTIONS(1290), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88678] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 1, - sym__concat, - ACTIONS(1286), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88709] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4259), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4261), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88740] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4011), 1, - sym__concat, - STATE(1743), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1203), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1201), 18, + ACTIONS(1247), 18, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -94128,532 +94741,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [88775] = 3, + [89286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 1, - sym__concat, - ACTIONS(1282), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, + ACTIONS(4295), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 1, - sym__concat, - ACTIONS(1278), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 1, - sym__concat, - ACTIONS(1274), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 1, - sym__concat, - ACTIONS(1270), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 1, - sym__concat, - ACTIONS(1251), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [88930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4263), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4265), 21, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [88961] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4267), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3457), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2034), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 23, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - anon_sym_AMP, - [89045] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4269), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3455), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2028), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89100] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4201), 1, - sym__concat, - STATE(1812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1197), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - [89135] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4271), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3383), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2003), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89190] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4273), 1, - anon_sym_esac, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3385), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2005), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - ACTIONS(4193), 3, - sym_raw_string, - sym_ansii_c_string, - sym_word, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89245] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1340), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1342), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [89275] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3338), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89329] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4277), 1, - sym__concat, - STATE(2146), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1197), 15, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - [89363] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4279), 1, - sym__special_character, - STATE(1907), 1, - aux_sym__literal_repeat1, - ACTIONS(1355), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1360), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [89397] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4282), 4, + ACTIONS(4287), 4, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - ACTIONS(4284), 13, + ACTIONS(4289), 13, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ, @@ -94667,4740 +94771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_test_operator, - [89433] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4183), 1, - sym__special_character, - STATE(1853), 1, - aux_sym__literal_repeat1, - ACTIONS(1400), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1396), 17, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89467] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4292), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89499] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1215), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1217), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [89529] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - sym_word, - ACTIONS(4296), 1, - anon_sym_LPAREN, - ACTIONS(4298), 1, - anon_sym_DOLLAR, - ACTIONS(4300), 1, - sym__special_character, - ACTIONS(4304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4308), 1, - anon_sym_BQUOTE, - ACTIONS(4312), 1, - sym__empty_value, - STATE(585), 1, - aux_sym__literal_repeat1, - ACTIONS(4302), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4310), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(870), 2, - sym_concatenation, - sym_array, - STATE(394), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89583] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1701), 1, - anon_sym_DQUOTE, - ACTIONS(4314), 1, - sym_word, - ACTIONS(4316), 1, - anon_sym_LPAREN, - ACTIONS(4318), 1, - anon_sym_DOLLAR, - ACTIONS(4320), 1, - sym__special_character, - ACTIONS(4324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4328), 1, - anon_sym_BQUOTE, - ACTIONS(4332), 1, - sym__empty_value, - STATE(1909), 1, - aux_sym__literal_repeat1, - ACTIONS(4322), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4330), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2196), 2, - sym_concatenation, - sym_array, - STATE(1891), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4177), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [89667] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1438), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1440), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [89697] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4334), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89729] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1348), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1350), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [89759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4236), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4238), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [89789] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4336), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4284), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [89825] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4338), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4251), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4253), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [89887] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4259), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4261), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [89949] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4342), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [89977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4247), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [90007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4257), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [90037] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4344), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4284), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [90073] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(898), 1, - anon_sym_DQUOTE, - ACTIONS(4346), 1, - sym_word, - ACTIONS(4348), 1, - anon_sym_LPAREN, - ACTIONS(4350), 1, - anon_sym_DOLLAR, - ACTIONS(4352), 1, - sym__special_character, - ACTIONS(4356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4358), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4360), 1, - anon_sym_BQUOTE, - ACTIONS(4364), 1, - sym__empty_value, - STATE(764), 1, - aux_sym__literal_repeat1, - ACTIONS(4354), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4362), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(894), 2, - sym_concatenation, - sym_array, - STATE(705), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3954), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [90157] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4366), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4284), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [90193] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4368), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [90225] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4370), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [90253] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1344), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1346), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [90283] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4372), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [90315] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1362), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1364), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [90345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4171), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4173), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [90375] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [90403] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4374), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [90431] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4376), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [90463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4085), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4087), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [90493] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1434), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1436), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [90523] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4378), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [90555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4169), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [90585] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4380), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4284), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [90621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4165), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [90651] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4382), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4284), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [90687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4161), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [90717] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4384), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [90745] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4386), 1, - sym__special_character, - STATE(1949), 1, - aux_sym__literal_repeat1, - ACTIONS(1355), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1360), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [90779] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1314), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1316), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [90809] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4389), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [90841] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4155), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4157), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [90871] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1302), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1304), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [90901] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 1, - anon_sym_DQUOTE, - ACTIONS(4391), 1, - sym_word, - ACTIONS(4393), 1, - anon_sym_LPAREN, - ACTIONS(4395), 1, - anon_sym_DOLLAR, - ACTIONS(4397), 1, - sym__special_character, - ACTIONS(4401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4403), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4405), 1, - anon_sym_BQUOTE, - ACTIONS(4409), 1, - sym__empty_value, - STATE(862), 1, - aux_sym__literal_repeat1, - ACTIONS(4399), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4407), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(896), 2, - sym_concatenation, - sym_array, - STATE(640), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90955] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1298), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1300), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [90985] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1444), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1446), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4411), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91047] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1374), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1376), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91077] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1426), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1428), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91107] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1294), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1296), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91137] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4415), 1, - sym__special_character, - STATE(1949), 1, - aux_sym__literal_repeat1, - ACTIONS(4047), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4413), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91171] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1378), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1380), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91201] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 1, - anon_sym_DOLLAR, - ACTIONS(471), 1, - sym__special_character, - ACTIONS(473), 1, - anon_sym_DQUOTE, - ACTIONS(475), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(477), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(479), 1, - anon_sym_BQUOTE, - ACTIONS(4417), 1, - sym_word, - ACTIONS(4419), 1, - anon_sym_LPAREN, - ACTIONS(4423), 1, - sym__empty_value, - STATE(348), 1, - aux_sym__literal_repeat1, - ACTIONS(481), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4421), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(401), 2, - sym_concatenation, - sym_array, - STATE(278), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91255] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4425), 1, - sym__concat, - STATE(1964), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1217), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1426), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [91319] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1430), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1432), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91349] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91381] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4263), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4265), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [91411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4227), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4229), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [91441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1444), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [91471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1215), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [91501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1438), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [91531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3873), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3875), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [91561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1434), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [91591] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1290), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1292), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91621] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3407), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4179), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4181), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [91705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1430), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [91735] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1340), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1342), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [91765] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4430), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4284), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [91801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4185), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4187), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [91831] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4432), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91863] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3873), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(3875), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91893] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4434), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1378), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [91955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1374), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [91985] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4436), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3952), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(3954), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92047] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1362), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [92077] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1348), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [92107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4221), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4223), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [92137] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4438), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4105), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4107), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [92199] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3334), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92253] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3306), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92307] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3301), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92361] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4440), 1, - sym__concat, - STATE(2124), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym__special_character, - ACTIONS(1197), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [92395] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4442), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4284), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [92431] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4444), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4284), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [92467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4151), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [92497] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4145), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4147), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [92527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1344), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [92557] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3455), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92611] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(549), 1, - anon_sym_DOLLAR, - ACTIONS(551), 1, - sym__special_character, - ACTIONS(553), 1, - anon_sym_DQUOTE, - ACTIONS(555), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(557), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(559), 1, - anon_sym_BQUOTE, - ACTIONS(4446), 1, - sym_word, - ACTIONS(4448), 1, - anon_sym_LPAREN, - ACTIONS(4452), 1, - sym__empty_value, - STATE(391), 1, - aux_sym__literal_repeat1, - ACTIONS(561), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4450), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(581), 2, - sym_concatenation, - sym_array, - STATE(355), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92665] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3457), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [92719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4141), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4143), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [92749] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4288), 1, - anon_sym_QMARK, - ACTIONS(4286), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4290), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4454), 4, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - ACTIONS(4284), 13, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [92785] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4137), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4139), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [92815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4456), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92847] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4458), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92879] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4020), 22, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_EQ, - anon_sym_PLUS_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG_EQ, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - anon_sym_AMP, - [92907] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1310), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1312), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [92937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4460), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92969] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3384), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93023] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3386), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4462), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [93109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4135), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [93139] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1286), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1288), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93169] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(619), 1, - anon_sym_DOLLAR, - ACTIONS(621), 1, - sym__special_character, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(627), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_BQUOTE, - ACTIONS(4464), 1, - sym_word, - ACTIONS(4466), 1, - anon_sym_LPAREN, - ACTIONS(4470), 1, - sym__empty_value, - STATE(665), 1, - aux_sym__literal_repeat1, - ACTIONS(631), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4468), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(805), 2, - sym_concatenation, - sym_array, - STATE(451), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93223] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1282), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1284), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93253] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3415), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93307] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1278), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1280), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93337] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1274), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1276), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [93367] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(744), 1, - anon_sym_DQUOTE, - ACTIONS(4472), 1, - sym_word, - ACTIONS(4474), 1, - anon_sym_LPAREN, - ACTIONS(4476), 1, - anon_sym_DOLLAR, - ACTIONS(4478), 1, - sym__special_character, - ACTIONS(4482), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4484), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4486), 1, - anon_sym_BQUOTE, - ACTIONS(4490), 1, - sym__empty_value, - STATE(405), 1, - aux_sym__literal_repeat1, - ACTIONS(4480), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4488), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(616), 2, - sym_concatenation, - sym_array, - STATE(345), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1340), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93451] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4129), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4131), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [93481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1340), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93511] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3471), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93565] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1314), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4492), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [93627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1310), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1306), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93687] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1302), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93717] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4275), 1, - sym_word, - STATE(2929), 1, - aux_sym__literal_repeat1, - STATE(3037), 1, - sym_concatenation, - STATE(3427), 1, - sym_last_case_item, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4193), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2113), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(2913), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [93771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1298), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1294), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3914), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(3916), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [93861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1290), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [93891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4205), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4207), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [93921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4125), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4127), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [93951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4053), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4055), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [93981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1286), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [94011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1282), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [94041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1278), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [94071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4057), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4059), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4494), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [94133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4061), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4063), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1274), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [94193] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4065), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4067), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4071), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1270), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [94283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4073), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4075), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4121), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4123), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(1251), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [94373] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4496), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [94405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4117), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4119), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4115), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94465] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4077), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4079), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94495] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4083), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94525] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4498), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [94557] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4504), 1, - sym_raw_string, - ACTIONS(4506), 1, - aux_sym__simple_variable_name_token1, - STATE(2521), 1, - sym_string, - ACTIONS(537), 9, - anon_sym_RPAREN, - sym__special_character, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - ACTIONS(4500), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [94595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4508), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [94627] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4510), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [94659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4512), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [94691] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4201), 1, - sym__concat, - STATE(1812), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym__special_character, - ACTIONS(1197), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94725] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4109), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4111), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94755] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4514), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [94787] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1306), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1308), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [94817] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4516), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [94849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4091), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94879] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(641), 1, - anon_sym_DOLLAR, - ACTIONS(643), 1, - sym__special_character, - ACTIONS(645), 1, - anon_sym_DQUOTE, - ACTIONS(647), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(649), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(651), 1, - anon_sym_BQUOTE, - ACTIONS(4518), 1, - sym_word, - ACTIONS(4520), 1, - anon_sym_LPAREN, - ACTIONS(4524), 1, - sym__empty_value, - STATE(625), 1, - aux_sym__literal_repeat1, - ACTIONS(653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4522), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(886), 2, - sym_concatenation, - sym_array, - STATE(412), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [94933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4093), 2, - sym_file_descriptor, - anon_sym_LF, - ACTIONS(4095), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - anon_sym_AMP, - [94963] = 3, + [89322] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4097), 2, @@ -99427,7 +94798,4419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [94993] = 3, + [89352] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4297), 1, + sym__concat, + STATE(2099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1229), 15, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [89386] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3444), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89440] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4301), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4289), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [89476] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4303), 1, + sym__special_character, + STATE(1909), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1374), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [89510] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(768), 1, + anon_sym_DQUOTE, + ACTIONS(4306), 1, + sym_word, + ACTIONS(4308), 1, + anon_sym_LPAREN, + ACTIONS(4310), 1, + anon_sym_DOLLAR, + ACTIONS(4312), 1, + sym__special_character, + ACTIONS(4316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4320), 1, + anon_sym_BQUOTE, + ACTIONS(4324), 1, + sym__empty_value, + STATE(586), 1, + aux_sym__literal_repeat1, + ACTIONS(4314), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4322), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(868), 2, + sym_concatenation, + sym_array, + STATE(403), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89564] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4238), 1, + sym__special_character, + STATE(1823), 1, + aux_sym__literal_repeat1, + ACTIONS(1392), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1388), 17, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [89598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4326), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [89630] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1320), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1322), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [89660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4201), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [89690] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + anon_sym_DQUOTE, + ACTIONS(4328), 1, + sym_word, + ACTIONS(4330), 1, + anon_sym_LPAREN, + ACTIONS(4332), 1, + anon_sym_DOLLAR, + ACTIONS(4334), 1, + sym__special_character, + ACTIONS(4338), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4340), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4342), 1, + anon_sym_BQUOTE, + ACTIONS(4346), 1, + sym__empty_value, + STATE(1911), 1, + aux_sym__literal_repeat1, + ACTIONS(4336), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4344), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2190), 2, + sym_concatenation, + sym_array, + STATE(1903), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89744] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4348), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4289), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [89780] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4350), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [89812] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4352), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4289), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [89848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4354), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [89880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4193), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4195), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [89910] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4191), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [89940] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4185), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4187), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [89970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4356), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [90002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4358), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [90034] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4181), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4183), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [90064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4179), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [90094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4224), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4226), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [90124] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1316), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1318), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90154] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3941), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3943), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [90184] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4360), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [90216] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(481), 1, + anon_sym_DOLLAR, + ACTIONS(483), 1, + sym__special_character, + ACTIONS(485), 1, + anon_sym_DQUOTE, + ACTIONS(487), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(489), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(491), 1, + anon_sym_BQUOTE, + ACTIONS(4362), 1, + sym_word, + ACTIONS(4364), 1, + anon_sym_LPAREN, + ACTIONS(4368), 1, + sym__empty_value, + STATE(328), 1, + aux_sym__literal_repeat1, + ACTIONS(493), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4366), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(408), 2, + sym_concatenation, + sym_array, + STATE(286), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90270] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4370), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [90302] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1350), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1352), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90332] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4372), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [90364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4115), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [90394] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4075), 1, + sym__concat, + STATE(1902), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + sym__special_character, + ACTIONS(1229), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90428] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1312), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1314), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90458] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1346), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1348), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90488] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1346), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1348), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90518] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1358), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1360), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90548] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4374), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4289), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [90584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4376), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [90616] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4378), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [90648] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4382), 1, + sym__special_character, + STATE(1964), 1, + aux_sym__literal_repeat1, + ACTIONS(4030), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4380), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90682] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1394), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1396), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90712] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4384), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [90744] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1449), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1451), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90774] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1376), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1378), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90804] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1441), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90834] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1263), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1265), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90864] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1308), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1310), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90894] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4386), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [90926] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1425), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1427), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90956] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1304), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1306), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [90986] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(4388), 1, + sym_word, + ACTIONS(4390), 1, + anon_sym_LPAREN, + ACTIONS(4392), 1, + anon_sym_DOLLAR, + ACTIONS(4394), 1, + sym__special_character, + ACTIONS(4398), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4400), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4402), 1, + anon_sym_BQUOTE, + ACTIONS(4406), 1, + sym__empty_value, + STATE(864), 1, + aux_sym__literal_repeat1, + ACTIONS(4396), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4404), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(895), 2, + sym_concatenation, + sym_array, + STATE(639), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91040] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1380), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1382), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [91070] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3358), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91124] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4408), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4289), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [91160] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4410), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4289), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [91196] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4412), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [91224] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1227), 19, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_AMP, + [91254] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4173), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4175), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [91284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4169), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4171), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [91314] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4414), 1, + sym__special_character, + STATE(1964), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1374), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [91348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4417), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [91376] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3416), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91430] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(521), 1, + anon_sym_DOLLAR, + ACTIONS(523), 1, + sym__special_character, + ACTIONS(525), 1, + anon_sym_DQUOTE, + ACTIONS(527), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(529), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(531), 1, + anon_sym_BQUOTE, + ACTIONS(4419), 1, + sym_word, + ACTIONS(4421), 1, + anon_sym_LPAREN, + ACTIONS(4425), 1, + sym__empty_value, + STATE(402), 1, + aux_sym__literal_repeat1, + ACTIONS(533), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4423), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(583), 2, + sym_concatenation, + sym_array, + STATE(355), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91484] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3408), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3947), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [91568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4167), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [91598] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4427), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [91630] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3387), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91684] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4161), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4163), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [91714] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4429), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [91746] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4431), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4289), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [91782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4203), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4205), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [91812] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4433), 1, + sym__concat, + STATE(2127), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + sym__special_character, + ACTIONS(1229), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [91846] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4210), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4212), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [91876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4242), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4244), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [91906] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1453), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1455), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [91936] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4157), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4159), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [91966] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1211), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1213), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [91996] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3460), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92050] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1267), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1269), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [92080] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4435), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [92112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4437), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [92144] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3459), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92198] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1300), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1302), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [92228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4267), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [92258] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4439), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4289), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [92294] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1296), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1298), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [92324] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, + anon_sym_DQUOTE, + ACTIONS(4441), 1, + sym_word, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_DOLLAR, + ACTIONS(4447), 1, + sym__special_character, + ACTIONS(4451), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4453), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4455), 1, + anon_sym_BQUOTE, + ACTIONS(4459), 1, + sym__empty_value, + STATE(411), 1, + aux_sym__literal_repeat1, + ACTIONS(4449), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4457), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(616), 2, + sym_concatenation, + sym_array, + STATE(364), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92378] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1292), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1294), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [92408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4153), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4155), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [92438] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3298), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92492] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3301), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92546] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3328), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92600] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + anon_sym_DQUOTE, + ACTIONS(4461), 1, + sym_word, + ACTIONS(4463), 1, + anon_sym_LPAREN, + ACTIONS(4465), 1, + anon_sym_DOLLAR, + ACTIONS(4467), 1, + sym__special_character, + ACTIONS(4471), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4473), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4475), 1, + anon_sym_BQUOTE, + ACTIONS(4479), 1, + sym__empty_value, + STATE(754), 1, + aux_sym__literal_repeat1, + ACTIONS(4469), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4477), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(898), 2, + sym_concatenation, + sym_array, + STATE(683), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92654] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3339), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4271), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [92738] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4481), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [92770] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3941), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(3943), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [92800] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4483), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [92832] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4485), 1, + sym__concat, + STATE(2004), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1213), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [92866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(3947), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [92896] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1376), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [92926] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4275), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [92956] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4017), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [92984] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4488), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1425), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [93046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4279), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [93076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4214), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4216), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [93106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4490), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4149), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4151), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [93168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1211), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [93198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4492), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93230] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4494), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [93258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1453), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [93288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4147), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [93318] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_DOLLAR, + ACTIONS(629), 1, + sym__special_character, + ACTIONS(631), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(635), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(637), 1, + anon_sym_BQUOTE, + ACTIONS(4496), 1, + sym_word, + ACTIONS(4498), 1, + anon_sym_LPAREN, + ACTIONS(4502), 1, + sym__empty_value, + STATE(664), 1, + aux_sym__literal_repeat1, + ACTIONS(639), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4500), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(807), 2, + sym_concatenation, + sym_array, + STATE(451), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93372] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4141), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4143), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [93402] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4504), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93434] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(4299), 1, + sym_word, + STATE(2928), 1, + aux_sym__literal_repeat1, + STATE(3036), 1, + sym_concatenation, + STATE(3388), 1, + sym_last_case_item, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4228), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2089), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(2914), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93488] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4293), 1, + anon_sym_QMARK, + ACTIONS(4291), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4295), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4506), 4, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + ACTIONS(4289), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [93524] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4494), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [93552] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4139), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [93582] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4065), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4067), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [93612] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1449), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [93642] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1227), 19, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4508), 22, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_BANG_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + anon_sym_AMP, + [93700] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4510), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93732] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4512), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4514), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1441), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [93826] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4520), 1, + sym_raw_string, + ACTIONS(4522), 1, + aux_sym__simple_variable_name_token1, + STATE(2569), 1, + sym_string, + ACTIONS(547), 9, + anon_sym_RPAREN, + sym__special_character, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + ACTIONS(4516), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [93864] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4133), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4135), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [93894] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1328), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1330), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [93924] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4524), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [93956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3954), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(3956), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [93986] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1284), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94016] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1288), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4077), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4079), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [94076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1292), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94106] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4526), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [94138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4083), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [94168] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1296), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94198] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4085), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4087), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [94228] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1300), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4091), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [94288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1267), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94318] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4093), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4095), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [94348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1304), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4129), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4131), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [94408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1308), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1312), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94468] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1316), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1320), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94528] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4101), 2, @@ -99454,16 +99237,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_BQUOTE, anon_sym_AMP, - [95023] = 4, + [94558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4526), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, + ACTIONS(4105), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, + anon_sym_LF, + ACTIONS(4107), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -99472,26 +99259,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [95055] = 4, + anon_sym_AMP, + [94588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4528), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, + ACTIONS(4109), 2, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, + anon_sym_LF, + ACTIONS(4111), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -99500,24 +99286,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [95087] = 3, + anon_sym_AMP, + [94618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 3, + ACTIONS(1326), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(1195), 19, + ACTIONS(1324), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -99535,194 +99317,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, anon_sym_AMP, - [95117] = 4, + [94648] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1330), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1328), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94678] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1288), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1290), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [94708] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1346), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94738] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1346), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1350), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1358), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [94828] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1284), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1286), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [94858] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4528), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [94890] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1324), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1326), 17, + sym__concat, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [94920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4117), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4119), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [94950] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(712), 1, + anon_sym_DOLLAR, + ACTIONS(714), 1, + sym__special_character, + ACTIONS(716), 1, + anon_sym_DQUOTE, + ACTIONS(718), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(720), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(722), 1, + anon_sym_BQUOTE, ACTIONS(4530), 1, - anon_sym_RPAREN, - ACTIONS(1173), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1159), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [95149] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1195), 19, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [95179] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1251), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1253), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95209] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1270), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1272), 17, - sym__concat, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95239] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4370), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4532), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95268] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, sym_word, + ACTIONS(4532), 1, + anon_sym_LPAREN, ACTIONS(4536), 1, - anon_sym_RPAREN, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - STATE(2517), 1, + sym__empty_value, + STATE(625), 1, aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, + ACTIONS(724), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2092), 2, + ACTIONS(4534), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(888), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, + sym_array, + STATE(415), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [95319] = 3, + [95004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4061), 3, + ACTIONS(4538), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4063), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -99731,131 +99646,275 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95348] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4081), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4083), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4073), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4075), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95406] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4077), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4079), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4069), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4071), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95464] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4552), 1, + anon_sym_DOLLAR, sym__special_character, - STATE(2089), 1, - aux_sym__literal_repeat1, - ACTIONS(1355), 5, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [95036] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4540), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [95068] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1380), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [95098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4248), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [95128] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1263), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [95158] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4121), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4123), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [95188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4125), 2, + sym_file_descriptor, + anon_sym_LF, + ACTIONS(4127), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + anon_sym_AMP, + [95218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(1394), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [95248] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4542), 1, + anon_sym_RPAREN, + ACTIONS(1177), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1171), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [95280] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4277), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4279), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [95309] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1312), 6, + anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1360), 14, + ACTIONS(1314), 15, + sym__concat, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -99867,7 +99926,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [95497] = 3, + [95338] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4546), 1, + anon_sym_RPAREN, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2093), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95389] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4562), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2107), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95440] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1292), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1294), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [95469] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4065), 3, @@ -99893,497 +100052,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [95526] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4555), 1, - sym__special_character, - STATE(2091), 1, - aux_sym__literal_repeat1, - ACTIONS(1355), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1360), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95559] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4558), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2114), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4089), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4091), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95639] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1278), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1280), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [95668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4093), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4095), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95697] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4097), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4099), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4101), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4103), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95755] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4057), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4059), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95784] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4105), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4107), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4109), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4111), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95842] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4113), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4115), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4117), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4119), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95900] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4121), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4123), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [95929] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4560), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2114), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4259), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4261), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96009] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4562), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2114), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96060] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4125), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4127), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96089] = 5, - ACTIONS(4189), 1, + [95498] = 5, + ACTIONS(4073), 1, sym_comment, ACTIONS(4564), 1, - sym__concat, - STATE(2108), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 5, + sym__special_character, + STATE(2188), 1, + aux_sym__literal_repeat1, + ACTIONS(4030), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1217), 14, + ACTIONS(4380), 14, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, @@ -100398,536 +100080,591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [96122] = 3, + [95531] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4129), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4131), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4236), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4238), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96180] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, + ACTIONS(4566), 1, sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4567), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2104), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96231] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4133), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4135), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96260] = 14, - ACTIONS(3), 1, - sym_comment, ACTIONS(4569), 1, - sym_word, - ACTIONS(4572), 1, anon_sym_DOLLAR, - ACTIONS(4575), 1, + ACTIONS(4572), 1, sym__special_character, - ACTIONS(4578), 1, + ACTIONS(4575), 1, anon_sym_DQUOTE, - ACTIONS(4584), 1, + ACTIONS(4581), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4587), 1, + ACTIONS(4584), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4590), 1, + ACTIONS(4587), 1, anon_sym_BQUOTE, - STATE(2923), 1, + STATE(2926), 1, aux_sym__literal_repeat1, STATE(3090), 1, sym_concatenation, - ACTIONS(4581), 2, + ACTIONS(4578), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(4593), 2, + ACTIONS(4590), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2113), 2, + STATE(2089), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(2921), 6, + STATE(2923), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96311] = 14, + [95582] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3967), 1, - anon_sym_RPAREN, - ACTIONS(4596), 1, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, sym_word, - ACTIONS(4599), 1, + ACTIONS(4548), 1, anon_sym_DOLLAR, - ACTIONS(4602), 1, + ACTIONS(4550), 1, sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4593), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2115), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1480), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1478), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [95662] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4595), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2090), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95713] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4597), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2115), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4601), 1, + sym__concat, + ACTIONS(4599), 20, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [95793] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1376), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1378), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [95822] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4603), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2115), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4246), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4248), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [95902] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4214), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4216), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [95931] = 5, + ACTIONS(4073), 1, + sym_comment, ACTIONS(4605), 1, + sym__concat, + STATE(2004), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1220), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [95964] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4508), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4607), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [95993] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4494), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [96022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4613), 1, + sym__concat, + ACTIONS(4611), 20, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(4611), 1, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - ACTIONS(4614), 1, + anon_sym_SLASH, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [96051] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4494), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [96080] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1425), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1427), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [96109] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4210), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4212), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96138] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4615), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2115), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96189] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, ACTIONS(4617), 1, - anon_sym_BQUOTE, - STATE(2517), 1, + anon_sym_RPAREN, + STATE(2579), 1, aux_sym__literal_repeat1, - ACTIONS(4608), 2, + ACTIONS(4552), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(4620), 2, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2114), 2, + STATE(2115), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2501), 6, + STATE(2500), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96362] = 3, - ACTIONS(3), 1, + [96240] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4137), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4139), 18, - anon_sym_SEMI, + ACTIONS(1211), 6, anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4141), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4143), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96420] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4384), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4623), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4145), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4147), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96478] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4149), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4151), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96507] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4627), 1, + ACTIONS(1213), 15, sym__concat, - ACTIONS(4625), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [96536] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4629), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2106), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4085), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4087), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4633), 1, - sym__concat, - ACTIONS(4631), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [96645] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4635), 1, - sym__concat, - STATE(2108), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1231), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1233), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96678] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4342), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4637), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96707] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4639), 1, - sym__special_character, - STATE(2091), 1, - aux_sym__literal_repeat1, - ACTIONS(4047), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4413), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [96740] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4641), 1, - sym__special_character, - STATE(1907), 1, - aux_sym__literal_repeat1, - ACTIONS(4047), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4413), 14, anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -100942,353 +100679,317 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [96773] = 14, + [96269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, + ACTIONS(4203), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4205), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 3, + sym_file_descriptor, + sym_variable_name, sym_word, - ACTIONS(4538), 1, + ACTIONS(1474), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_DOLLAR, - ACTIONS(4540), 1, sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4643), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, - ACTIONS(4550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2137), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4155), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4157), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96853] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4159), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4161), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96882] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4163), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4165), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4167), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4169), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4171), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4173), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4053), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4055), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [96998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4175), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4177), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [97027] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, anon_sym_BQUOTE, - ACTIONS(4645), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2147), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97078] = 14, - ACTIONS(3), 1, + [96327] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, + ACTIONS(4619), 1, sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4647), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2114), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4179), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4181), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [97158] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4649), 1, - sym__concat, STATE(2158), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 19, - anon_sym_RBRACE, + aux_sym__literal_repeat1, + ACTIONS(4030), 5, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, + ACTIONS(4380), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [96360] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4242), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4244), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96389] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1453), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1455), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [96418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4199), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4201), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96447] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4042), 1, + anon_sym_RPAREN, + ACTIONS(4621), 1, + sym_word, + ACTIONS(4624), 1, anon_sym_DOLLAR, + ACTIONS(4627), 1, sym__special_character, + ACTIONS(4630), 1, anon_sym_DQUOTE, + ACTIONS(4636), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4639), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4642), 1, + anon_sym_BQUOTE, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4633), 2, sym_raw_string, sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(4645), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2115), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3941), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3943), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96527] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, sym_word, - [97189] = 3, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4648), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2096), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4193), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4195), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96607] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4189), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4191), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96636] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4185), 3, @@ -101314,211 +101015,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97218] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1426), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1428), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97247] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4374), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4651), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97276] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4374), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4651), 16, - anon_sym_RPAREN_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97305] = 3, + [96665] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4221), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4223), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [97334] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4440), 1, - sym__concat, - STATE(2124), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4020), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4199), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97367] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4653), 1, - sym__concat, - STATE(1964), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1231), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1233), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97400] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, + ACTIONS(4518), 1, anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, + sym_word, ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, anon_sym_BQUOTE, - ACTIONS(4655), 1, + ACTIONS(4650), 1, anon_sym_RPAREN, - STATE(2517), 1, + STATE(2579), 1, aux_sym__literal_repeat1, - ACTIONS(4542), 2, + ACTIONS(4552), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(4550), 2, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2114), 2, + STATE(2106), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2501), 6, + STATE(2500), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [97451] = 3, + [96716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4263), 3, + ACTIONS(4181), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4265), 18, + ACTIONS(4183), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -101537,72 +101078,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97480] = 3, - ACTIONS(4189), 1, + [96745] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1444), 6, + ACTIONS(4077), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4079), 18, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1446), 15, - sym__concat, - anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97509] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1215), 6, - anon_sym_PIPE, - anon_sym_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1217), 15, - sym__concat, - anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4177), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4179), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97538] = 5, - ACTIONS(4189), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96803] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4657), 1, + ACTIONS(4652), 1, sym__special_character, - STATE(2089), 1, + STATE(1909), 1, aux_sym__literal_repeat1, - ACTIONS(4047), 5, + ACTIONS(4030), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4413), 14, + ACTIONS(4380), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [96836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4109), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4111), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [96865] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4654), 1, + sym__concat, + STATE(2185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1220), 14, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, @@ -101617,14 +101212,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [97571] = 3, + [96898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4227), 3, + ACTIONS(4173), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(4229), 18, + ACTIONS(4175), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -101643,304 +101238,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [97600] = 3, + [96927] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3873), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3875), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [97629] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1438), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1440), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97658] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1434), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1436), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97687] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1430), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1432), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97716] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4659), 1, - sym__concat, - STATE(2157), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4518), 1, anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4656), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, sym_raw_string, sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [97747] = 4, + STATE(2138), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96978] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(4169), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4171), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97007] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4417), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4658), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97036] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1296), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1298), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4165), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4167), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97094] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4265), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4267), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97123] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1449), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1451), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97152] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4089), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4091), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97181] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1441), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97210] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, + ACTIONS(4660), 1, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2115), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97261] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1227), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1229), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_COLON, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [97290] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4161), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4163), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97319] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4433), 1, + sym__concat, + STATE(2127), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4017), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4071), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3954), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3956), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4101), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4103), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97410] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, + sym_word, + ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, + anon_sym_BQUOTE, ACTIONS(4662), 1, - sym__concat, - STATE(2157), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1231), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + anon_sym_RPAREN, + STATE(2579), 1, + aux_sym__literal_repeat1, + ACTIONS(4552), 2, sym_raw_string, sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [97778] = 3, - ACTIONS(4189), 1, + STATE(2115), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97461] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1378), 6, - anon_sym_PIPE, + ACTIONS(4412), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1380), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97807] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1374), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1376), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97836] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1362), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1364), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [97865] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3914), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(3916), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [97894] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4205), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4207), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [97923] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4020), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4199), 16, + ACTIONS(4664), 16, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -101957,14 +101715,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [97952] = 4, + [97490] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 1, + ACTIONS(4085), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4087), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4105), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4107), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4097), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4099), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4113), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4115), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4668), 1, sym__concat, - STATE(2158), 1, + STATE(2155), 1, aux_sym_concatenation_repeat1, - ACTIONS(4664), 19, + ACTIONS(4666), 19, anon_sym_RBRACE, anon_sym_EQ, anon_sym_DASH, @@ -101984,173 +101846,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97983] = 14, - ACTIONS(3), 1, + [97637] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4666), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2114), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4255), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4257), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [98063] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4277), 1, - sym__concat, - STATE(2146), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4020), 5, + ACTIONS(4017), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4199), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98096] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1348), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1350), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98125] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4668), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4550), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2114), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98176] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1195), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1197), 16, + ACTIONS(4071), 16, anon_sym_RPAREN_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -102162,79 +101871,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym__special_character, sym_test_operator, - [98205] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1344), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1346), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98234] = 14, + [97666] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, ACTIONS(4670), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, + sym__concat, + STATE(2152), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, - ACTIONS(4550), 2, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2182), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98285] = 3, + sym_word, + [97697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3952), 3, + ACTIONS(4093), 3, sym_file_descriptor, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(3954), 18, + ACTIONS(4095), 18, anon_sym_SEMI, anon_sym_PIPE, anon_sym_SEMI_SEMI, @@ -102253,14 +101925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_AMP, - [98314] = 3, + [97726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1464), 3, + ACTIONS(4224), 3, sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1462), 18, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4226), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -102269,126 +101947,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [98343] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1282), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1284), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98372] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1340), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1342), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98401] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1340), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1342), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98430] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1314), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1316), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98459] = 3, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [97755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4674), 1, + ACTIONS(4673), 1, sym__concat, - ACTIONS(4672), 20, + STATE(2152), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 19, anon_sym_RBRACE, anon_sym_EQ, anon_sym_DASH, @@ -102400,7 +101970,6 @@ static const uint16_t ts_small_parse_table[] = { sym_ansii_c_string, anon_sym_POUND, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, anon_sym_COLON_QMARK, anon_sym_COLON_DASH, anon_sym_PERCENT, @@ -102409,17 +101978,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98488] = 3, - ACTIONS(4189), 1, + [97786] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1394), 6, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1312), 15, + ACTIONS(1396), 15, sym__concat, anon_sym_RPAREN, anon_sym_AMP_AMP, @@ -102435,155 +102004,615 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [98517] = 14, + [97815] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1263), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1265), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97844] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4675), 1, + sym__special_character, + STATE(2158), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1374), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97877] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1380), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1382), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97906] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, + ACTIONS(4668), 1, + sym__concat, + STATE(2155), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(4540), 1, sym__special_character, - ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, - anon_sym_BQUOTE, - ACTIONS(4676), 1, - anon_sym_RPAREN, - STATE(2517), 1, - aux_sym__literal_repeat1, - ACTIONS(4542), 2, + anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, - ACTIONS(4550), 2, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2114), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2501), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [98568] = 14, + sym_word, + [97937] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1358), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1360), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [97966] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4518), 1, anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, + sym_word, ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, anon_sym_BQUOTE, ACTIONS(4678), 1, anon_sym_RPAREN, - STATE(2517), 1, + STATE(2579), 1, aux_sym__literal_repeat1, - ACTIONS(4542), 2, + ACTIONS(4552), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(4550), 2, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2170), 2, + STATE(2144), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2501), 6, + STATE(2500), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [98619] = 14, + [98017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4117), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4119), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98046] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1350), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1352), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4121), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4123), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98104] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, + sym_word, ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, anon_sym_BQUOTE, ACTIONS(4680), 1, anon_sym_RPAREN, - STATE(2517), 1, + STATE(2579), 1, aux_sym__literal_repeat1, - ACTIONS(4542), 2, + ACTIONS(4552), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(4550), 2, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2166), 2, + STATE(2115), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2501), 6, + STATE(2500), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [98670] = 14, + [98155] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1346), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1348), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4125), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4127), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98213] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4129), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4131), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4081), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4083), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4133), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4135), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98300] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1346), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1348), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98329] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4137), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4139), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98358] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, + sym_word, ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, anon_sym_BQUOTE, ACTIONS(4682), 1, anon_sym_RPAREN, - STATE(2517), 1, + STATE(2579), 1, aux_sym__literal_repeat1, - ACTIONS(4542), 2, + ACTIONS(4552), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(4550), 2, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2189), 2, + STATE(2183), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2501), 6, + STATE(2500), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [98721] = 3, + [98409] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4141), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4143), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4145), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4147), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98467] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1328), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1330), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98496] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1324), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1326), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98525] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(4686), 1, @@ -102609,17 +102638,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98750] = 3, - ACTIONS(4189), 1, + [98554] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1320), 6, anon_sym_PIPE, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1308), 15, + ACTIONS(1322), 15, sym__concat, anon_sym_RPAREN, anon_sym_AMP_AMP, @@ -102635,463 +102664,787 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [98779] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1302), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1304), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98808] = 14, + [98583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4149), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4151), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98612] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1316), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1318), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98641] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, anon_sym_DQUOTE, - ACTIONS(4534), 1, - sym_word, - ACTIONS(4538), 1, - anon_sym_DOLLAR, - ACTIONS(4540), 1, - sym__special_character, ACTIONS(4544), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, - anon_sym_DOLLAR_LPAREN, + sym_word, ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4550), 1, + sym__special_character, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, anon_sym_BQUOTE, ACTIONS(4688), 1, anon_sym_RPAREN, - STATE(2517), 1, + STATE(2579), 1, aux_sym__literal_repeat1, - ACTIONS(4542), 2, + ACTIONS(4552), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(4550), 2, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2114), 2, + STATE(2115), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2501), 6, + STATE(2500), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [98859] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1298), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1300), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98888] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1294), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1296), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98917] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1290), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1292), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98946] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1286), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1288), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [98975] = 3, + [98692] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4251), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4253), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [99004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1468), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4518), 1, + anon_sym_DQUOTE, + ACTIONS(4544), 1, sym_word, - ACTIONS(1466), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(4548), 1, anon_sym_DOLLAR, + ACTIONS(4550), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, + ACTIONS(4554), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1203), 3, - sym_file_descriptor, - sym_variable_name, - sym_word, - ACTIONS(1201), 18, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99062] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1195), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1197), 15, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym__special_character, - sym_test_operator, - [99091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4245), 3, - sym_file_descriptor, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(4247), 18, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_AMP, - [99120] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1251), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1253), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99149] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1270), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1272), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99178] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1274), 6, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1276), 15, - sym__concat, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99207] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(209), 1, - anon_sym_DOLLAR, - ACTIONS(211), 1, - sym__special_character, - ACTIONS(213), 1, - anon_sym_DQUOTE, - ACTIONS(217), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(221), 1, + ACTIONS(4558), 1, anon_sym_BQUOTE, ACTIONS(4690), 1, - sym_word, - ACTIONS(4694), 1, - sym_regex, - STATE(435), 1, + anon_sym_RPAREN, + STATE(2579), 1, aux_sym__literal_repeat1, - STATE(649), 1, - sym_concatenation, - ACTIONS(223), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4692), 2, + ACTIONS(4552), 2, sym_raw_string, sym_ansii_c_string, - STATE(330), 6, + ACTIONS(4560), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2166), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2500), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [99257] = 14, + [98743] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4692), 1, + sym__concat, + STATE(2185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1213), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1851), 1, + ACTIONS(4697), 1, + sym__concat, + ACTIONS(4695), 20, anon_sym_RBRACE, - ACTIONS(4696), 1, - sym_word, - ACTIONS(4698), 1, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, anon_sym_DOLLAR, - ACTIONS(4700), 1, sym__special_character, - ACTIONS(4702), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - STATE(3050), 1, - aux_sym__literal_repeat1, - STATE(3345), 1, - sym_concatenation, - ACTIONS(4704), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(4712), 2, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3108), 6, + sym_word, + [98805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4153), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4155), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [98834] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4699), 1, + sym__special_character, + STATE(2188), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1374), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98867] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4297), 1, + sym__concat, + STATE(2099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4017), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4071), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1249), 3, + sym_file_descriptor, + sym_variable_name, + sym_word, + ACTIONS(1247), 18, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [98929] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1308), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1310), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98958] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1304), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1306), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [98987] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1267), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1269), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99016] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1300), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1302), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4273), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4275), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [99074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3945), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(3947), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [99103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4269), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4271), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [99132] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1227), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1229), 15, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym__special_character, + sym_test_operator, + [99161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4157), 3, + sym_file_descriptor, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(4159), 18, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_AMP, + [99190] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1284), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1286), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99219] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1288), 6, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1290), 15, + sym__concat, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99248] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4702), 1, + sym__special_character, + STATE(2202), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 18, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [99278] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1227), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + sym__special_character, + ACTIONS(1229), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99306] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4695), 20, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [99332] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1312), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1314), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99360] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1316), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1318), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99388] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2443), 1, + anon_sym_RBRACE, + ACTIONS(4705), 1, + sym_word, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + STATE(3146), 1, + aux_sym__literal_repeat1, + STATE(3432), 1, + sym_concatenation, + ACTIONS(4713), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3148), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [99307] = 3, - ACTIONS(4189), 1, + [99438] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(3001), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4723), 1, + sym_word, + STATE(3094), 1, + aux_sym__literal_repeat1, + STATE(3290), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4725), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3035), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99488] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1320), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1296), 15, + ACTIONS(1322), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103107,16 +103460,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [99335] = 3, - ACTIONS(4189), 1, + [99516] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1324), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1300), 15, + ACTIONS(1326), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103132,16 +103485,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [99363] = 3, - ACTIONS(4189), 1, + [99544] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1328), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1304), 15, + ACTIONS(1330), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103157,7 +103510,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [99391] = 2, + [99572] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1441), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1443), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99600] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(4684), 20, @@ -103181,229 +103559,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99417] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1306), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1308), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99445] = 14, + [99626] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2421), 1, + ACTIONS(2501), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4714), 1, + ACTIONS(4727), 1, sym_word, - STATE(3146), 1, + STATE(3049), 1, aux_sym__literal_repeat1, - STATE(3426), 1, + STATE(3479), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4716), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3147), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99495] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1310), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1312), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99523] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1314), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1316), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99551] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2929), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4718), 1, - sym_word, - STATE(3094), 1, - aux_sym__literal_repeat1, - STATE(3294), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4720), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3096), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99601] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4672), 20, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [99627] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1430), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1432), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [99655] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3203), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4722), 1, - sym_word, - STATE(3046), 1, - aux_sym__literal_repeat1, - STATE(3476), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4724), 2, + ACTIONS(4729), 2, sym_raw_string, sym_ansii_c_string, STATE(2997), 6, @@ -103413,33 +103595,142 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99705] = 14, + [99676] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1304), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1306), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99704] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(2199), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4726), 1, + ACTIONS(4731), 1, sym_word, - STATE(3065), 1, + STATE(3096), 1, aux_sym__literal_repeat1, - STATE(3305), 1, + STATE(3295), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4728), 2, + ACTIONS(4733), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3095), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99754] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4735), 20, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [99780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4737), 20, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_SLASH, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [99806] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2977), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4739), 1, + sym_word, + STATE(3064), 1, + aux_sym__literal_repeat1, + STATE(3309), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4741), 2, sym_raw_string, sym_ansii_c_string, STATE(3067), 6, @@ -103449,117 +103740,58 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99755] = 2, - ACTIONS(3), 1, + [99856] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4730), 20, - anon_sym_RBRACE, + ACTIONS(1449), 5, anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [99781] = 2, + ACTIONS(1451), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [99884] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 20, + ACTIONS(3119), 1, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(4707), 1, anon_sym_DOLLAR, + ACTIONS(4709), 1, sym__special_character, + ACTIONS(4711), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_SLASH, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(4743), 1, sym_word, - [99807] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2031), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4734), 1, - sym_word, - STATE(3120), 1, + STATE(3007), 1, aux_sym__literal_repeat1, - STATE(3377), 1, + STATE(3461), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4736), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3121), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99857] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4738), 1, - sym_word, - STATE(3006), 1, - aux_sym__literal_repeat1, - STATE(3459), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4740), 2, + ACTIONS(4745), 2, sym_raw_string, sym_ansii_c_string, STATE(3003), 6, @@ -103569,104 +103801,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [99907] = 14, + [99934] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2195), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, + ACTIONS(3932), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(3980), 1, + anon_sym_DOLLAR, + ACTIONS(3982), 1, + sym__special_character, + ACTIONS(3984), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(3986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(3988), 1, anon_sym_BQUOTE, - ACTIONS(4742), 1, + ACTIONS(4747), 1, sym_word, - STATE(3095), 1, + STATE(2489), 1, aux_sym__literal_repeat1, - STATE(3296), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4744), 2, + ACTIONS(3976), 2, sym_raw_string, sym_ansii_c_string, - STATE(3093), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99957] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3946), 1, - anon_sym_DQUOTE, - ACTIONS(3997), 1, - anon_sym_DOLLAR, - ACTIONS(3999), 1, - sym__special_character, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - ACTIONS(4746), 1, - sym_word, - STATE(2490), 1, - aux_sym__literal_repeat1, - ACTIONS(3993), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4007), 2, + ACTIONS(3990), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1700), 2, + STATE(1707), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2426), 6, + STATE(2425), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100005] = 14, + [99982] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3119), 1, + ACTIONS(3167), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4748), 1, + ACTIONS(4749), 1, sym_word, STATE(3000), 1, aux_sym__literal_repeat1, - STATE(3470), 1, + STATE(3473), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4750), 2, + ACTIONS(4751), 2, sym_raw_string, sym_ansii_c_string, STATE(3002), 6, @@ -103676,16 +103872,16 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100055] = 3, - ACTIONS(4189), 1, + [100032] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1434), 5, + ACTIONS(1346), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1436), 15, + ACTIONS(1348), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103701,16 +103897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [100083] = 3, - ACTIONS(4189), 1, + [100060] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1340), 5, + ACTIONS(1346), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1342), 15, + ACTIONS(1348), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -103726,111 +103922,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [100111] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1340), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1342), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100139] = 14, + [100088] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2377), 1, + ACTIONS(2399), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4752), 1, + ACTIONS(4753), 1, sym_word, - STATE(3123), 1, + STATE(3122), 1, aux_sym__literal_repeat1, - STATE(3362), 1, + STATE(3378), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4754), 2, + ACTIONS(4755), 2, sym_raw_string, sym_ansii_c_string, - STATE(3114), 6, + STATE(3111), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100189] = 14, + [100138] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_DOLLAR, - ACTIONS(155), 1, - sym__special_character, - ACTIONS(157), 1, - anon_sym_DQUOTE, ACTIONS(161), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, ACTIONS(163), 1, - anon_sym_DOLLAR_LPAREN, + sym__special_character, ACTIONS(165), 1, + anon_sym_DQUOTE, + ACTIONS(169), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(171), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(173), 1, anon_sym_BQUOTE, - ACTIONS(4756), 1, + ACTIONS(4757), 1, sym_word, - ACTIONS(4760), 1, + ACTIONS(4761), 1, sym_regex, STATE(297), 1, aux_sym__literal_repeat1, STATE(495), 1, sym_concatenation, - ACTIONS(167), 2, + ACTIONS(175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4758), 2, + ACTIONS(4759), 2, sym_raw_string, sym_ansii_c_string, - STATE(289), 6, + STATE(277), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100239] = 4, + [100188] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1350), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1352), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100216] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4764), 1, + ACTIONS(2053), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, sym__special_character, - STATE(2325), 1, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4763), 1, + sym_word, + STATE(3117), 1, aux_sym__literal_repeat1, - ACTIONS(4762), 18, + STATE(3382), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4765), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3118), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4769), 1, + sym__special_character, + STATE(2202), 1, + aux_sym__literal_repeat1, + ACTIONS(4767), 18, anon_sym_RBRACE, anon_sym_EQ, anon_sym_DASH, @@ -103849,456 +104081,431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [100269] = 14, + [100296] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2037), 1, + ACTIONS(2047), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4766), 1, + ACTIONS(4771), 1, sym_word, - STATE(3088), 1, + STATE(3089), 1, aux_sym__literal_repeat1, STATE(3276), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4768), 2, + ACTIONS(4773), 2, sym_raw_string, sym_ansii_c_string, - STATE(3085), 6, + STATE(3088), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100319] = 14, + [100346] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3047), 1, + ACTIONS(3095), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4770), 1, - sym_word, - STATE(3009), 1, - aux_sym__literal_repeat1, - STATE(3456), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4772), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3008), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100369] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1286), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1288), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100397] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1344), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1346), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100425] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2747), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4774), 1, - sym_word, - STATE(3119), 1, - aux_sym__literal_repeat1, - STATE(3367), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4776), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3116), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100475] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1348), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1350), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100503] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1438), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1440), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100531] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 1, - sym__concat, - ACTIONS(1426), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100559] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1282), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1284), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 1, - sym__concat, - ACTIONS(1444), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100615] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1278), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1280), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100643] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2701), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4778), 1, - sym_word, - STATE(3110), 1, - aux_sym__literal_repeat1, - STATE(3353), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4780), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3109), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100693] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1274), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1276), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100721] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(4782), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COLON, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [100757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym__concat, - ACTIONS(1215), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100785] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3035), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4794), 1, + ACTIONS(4775), 1, sym_word, STATE(3013), 1, aux_sym__literal_repeat1, - STATE(3452), 1, + STATE(3456), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4796), 2, + ACTIONS(4777), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3012), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100396] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2761), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4779), 1, + sym_word, + STATE(3120), 1, + aux_sym__literal_repeat1, + STATE(3377), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4781), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3115), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100446] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1358), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1360), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100474] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(4783), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COLON, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [100510] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1453), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1455), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100538] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 1, + sym__concat, + ACTIONS(1376), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [100566] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1267), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1269), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 1, + sym__concat, + ACTIONS(1425), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [100622] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1300), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1302), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100650] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2719), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4795), 1, + sym_word, + STATE(3109), 1, + aux_sym__literal_repeat1, + STATE(3362), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4797), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3108), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100700] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1296), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1298), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100728] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym__concat, + ACTIONS(1211), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [100756] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1292), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1294), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [100784] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3089), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4799), 1, + sym_word, + STATE(3008), 1, + aux_sym__literal_repeat1, + STATE(3454), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4801), 2, sym_raw_string, sym_ansii_c_string, STATE(3015), 6, @@ -104308,261 +104515,68 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [100835] = 13, + [100834] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(3932), 1, anon_sym_DQUOTE, - ACTIONS(3997), 1, + ACTIONS(3980), 1, anon_sym_DOLLAR, - ACTIONS(3999), 1, + ACTIONS(3982), 1, sym__special_character, - ACTIONS(4001), 1, + ACTIONS(3984), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, + ACTIONS(3986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(3988), 1, anon_sym_BQUOTE, - ACTIONS(4746), 1, + ACTIONS(4747), 1, sym_word, - STATE(2490), 1, + STATE(2489), 1, aux_sym__literal_repeat1, - ACTIONS(3993), 2, + ACTIONS(3976), 2, sym_raw_string, sym_ansii_c_string, - ACTIONS(4007), 2, + ACTIONS(3990), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1737), 2, + STATE(1695), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2426), 6, + STATE(2425), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100883] = 3, + [100882] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 1, - sym__concat, - ACTIONS(1438), 19, + ACTIONS(2815), 1, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(4707), 1, anon_sym_DOLLAR, + ACTIONS(4709), 1, sym__special_character, + ACTIONS(4711), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [100911] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1270), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1272), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [100939] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2143), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4798), 1, - sym_word, - STATE(3069), 1, - aux_sym__literal_repeat1, - STATE(3307), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4800), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3063), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100989] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2073), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4802), 1, - sym_word, - STATE(3048), 1, - aux_sym__literal_repeat1, - STATE(3370), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4804), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3034), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101039] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3946), 1, - anon_sym_DQUOTE, - ACTIONS(3997), 1, - anon_sym_DOLLAR, - ACTIONS(3999), 1, - sym__special_character, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, - ACTIONS(4746), 1, - sym_word, - STATE(2490), 1, - aux_sym__literal_repeat1, - ACTIONS(3993), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(4007), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1708), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2426), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101087] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4806), 1, - sym_word, - STATE(3017), 1, - aux_sym__literal_repeat1, - STATE(3447), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4808), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3018), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101137] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2801), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4810), 1, + ACTIONS(4803), 1, sym_word, STATE(3078), 1, aux_sym__literal_repeat1, - STATE(3283), 1, + STATE(3299), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4812), 2, + ACTIONS(4805), 2, sym_raw_string, sym_ansii_c_string, STATE(3080), 6, @@ -104572,1516 +104586,104 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [101187] = 3, + [100932] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 1, - sym__concat, - ACTIONS(1434), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3932), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101215] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1251), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1253), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101243] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1885), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(3980), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(3982), 1, sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(3984), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(3986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(3988), 1, anon_sym_BQUOTE, - ACTIONS(4814), 1, + ACTIONS(4747), 1, sym_word, - STATE(3091), 1, + STATE(2489), 1, aux_sym__literal_repeat1, - STATE(3272), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4816), 2, + ACTIONS(3976), 2, sym_raw_string, sym_ansii_c_string, - STATE(3089), 6, + ACTIONS(3990), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1692), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2425), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101293] = 14, + [100980] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1815), 1, + ACTIONS(3051), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4818), 1, + ACTIONS(4807), 1, sym_word, - STATE(3042), 1, + STATE(3017), 1, aux_sym__literal_repeat1, - STATE(3396), 1, + STATE(3449), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4820), 2, + ACTIONS(4809), 2, sym_raw_string, sym_ansii_c_string, - STATE(2995), 6, + STATE(3018), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101343] = 14, + [101030] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2833), 1, + ACTIONS(2159), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4822), 1, + ACTIONS(4811), 1, sym_word, - STATE(3143), 1, + STATE(3079), 1, aux_sym__literal_repeat1, - STATE(3432), 1, + STATE(3294), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4824), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3145), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 1, - sym__concat, - ACTIONS(1430), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 1, - sym__concat, - ACTIONS(1378), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101449] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1783), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4826), 1, - sym_word, - STATE(3151), 1, - aux_sym__literal_repeat1, - STATE(3401), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4828), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3150), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101499] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1195), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym__special_character, - ACTIONS(1197), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101527] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 1, - sym__concat, - ACTIONS(1374), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101555] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2099), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4830), 1, - sym_word, - STATE(3025), 1, - aux_sym__literal_repeat1, - STATE(3413), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4832), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3027), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101605] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2457), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4834), 1, - sym_word, - STATE(3021), 1, - aux_sym__literal_repeat1, - STATE(3428), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4836), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3019), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101655] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2879), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4838), 1, - sym_word, - STATE(3135), 1, - aux_sym__literal_repeat1, - STATE(3330), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4840), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3136), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 1, - sym__concat, - ACTIONS(1362), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101733] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1215), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1217), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [101761] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2739), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4842), 1, - sym_word, - STATE(3070), 1, - aux_sym__literal_repeat1, - STATE(3293), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4844), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3075), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101811] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2049), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4846), 1, - sym_word, - STATE(3144), 1, - aux_sym__literal_repeat1, - STATE(3391), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4848), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3132), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101861] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2941), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4850), 1, - sym_word, - STATE(3099), 1, - aux_sym__literal_repeat1, - STATE(3303), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4852), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3102), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 1, - sym__concat, - ACTIONS(1348), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [101939] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2409), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4854), 1, - sym_word, - STATE(3140), 1, - aux_sym__literal_repeat1, - STATE(3442), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4856), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3139), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101989] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2061), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4858), 1, - sym_word, - STATE(3129), 1, - aux_sym__literal_repeat1, - STATE(3372), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4860), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3149), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102039] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1195), 6, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - sym__special_character, - ACTIONS(1197), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102067] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2273), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4862), 1, - sym_word, - STATE(3030), 1, - aux_sym__literal_repeat1, - STATE(3408), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4864), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3028), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102117] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1290), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1292), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [102145] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4866), 1, - sym_word, - STATE(3142), 1, - aux_sym__literal_repeat1, - STATE(3439), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4868), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3141), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102195] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(93), 1, - sym__special_character, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(103), 1, - anon_sym_BQUOTE, - ACTIONS(4870), 1, - sym_word, - ACTIONS(4874), 1, - sym_regex, - STATE(605), 1, - aux_sym__literal_repeat1, - STATE(758), 1, - sym_concatenation, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4872), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(519), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102245] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2427), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4876), 1, - sym_word, - STATE(3022), 1, - aux_sym__literal_repeat1, - STATE(3419), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4878), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3023), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 1, - sym__concat, - ACTIONS(1344), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [102323] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(37), 1, - anon_sym_DOLLAR, - ACTIONS(39), 1, - sym__special_character, - ACTIONS(41), 1, - anon_sym_DQUOTE, - ACTIONS(45), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(47), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(49), 1, - anon_sym_BQUOTE, - ACTIONS(4880), 1, - sym_word, - ACTIONS(4884), 1, - sym_regex, - STATE(669), 1, - aux_sym__literal_repeat1, - STATE(791), 1, - sym_concatenation, - ACTIONS(51), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4882), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(537), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102373] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2671), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4886), 1, - sym_word, - STATE(3115), 1, - aux_sym__literal_repeat1, - STATE(3361), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4888), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3113), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102423] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1763), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4890), 1, - sym_word, - STATE(3134), 1, - aux_sym__literal_repeat1, - STATE(3404), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4892), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3133), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102473] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2571), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4894), 1, - sym_word, - STATE(3001), 1, - aux_sym__literal_repeat1, - STATE(3475), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4896), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2999), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102523] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2125), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4898), 1, - sym_word, - STATE(3076), 1, - aux_sym__literal_repeat1, - STATE(3300), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4900), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3049), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102573] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2841), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4902), 1, - sym_word, - STATE(3084), 1, - aux_sym__literal_repeat1, - STATE(3281), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4904), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3082), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - sym__concat, - ACTIONS(1340), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [102651] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2591), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4906), 1, - sym_word, - STATE(3007), 1, - aux_sym__literal_repeat1, - STATE(3461), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4908), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3005), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102701] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2149), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4910), 1, - sym_word, - STATE(2996), 1, - aux_sym__literal_repeat1, - STATE(3354), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4912), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2998), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102751] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1833), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4914), 1, - sym_word, - STATE(3060), 1, - aux_sym__literal_repeat1, - STATE(3315), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4916), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3058), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - sym__concat, - ACTIONS(1340), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [102829] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 1, - sym__concat, - ACTIONS(1314), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [102857] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2529), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4918), 1, - sym_word, - STATE(3107), 1, - aux_sym__literal_repeat1, - STATE(3340), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4920), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3106), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102907] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4922), 1, - sym_word, - STATE(3127), 1, - aux_sym__literal_repeat1, - STATE(3431), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4924), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3128), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [102957] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 1, - sym__concat, - ACTIONS(1310), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [102985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 1, - sym__concat, - ACTIONS(1306), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103013] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, - sym__concat, - ACTIONS(1302), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103041] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2201), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4926), 1, - sym_word, - STATE(3077), 1, - aux_sym__literal_repeat1, - STATE(3282), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4928), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3079), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103091] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1362), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1364), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [103119] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2725), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4930), 1, - sym_word, - STATE(3073), 1, - aux_sym__literal_repeat1, - STATE(3295), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4932), 2, + ACTIONS(4813), 2, sym_raw_string, sym_ansii_c_string, STATE(3071), 6, @@ -106091,33 +104693,33 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103169] = 14, + [101080] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2403), 1, + ACTIONS(2041), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4934), 1, + ACTIONS(4815), 1, sym_word, - STATE(3026), 1, + STATE(3050), 1, aux_sym__literal_repeat1, - STATE(3414), 1, + STATE(3341), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4936), 2, + ACTIONS(4817), 2, sym_raw_string, sym_ansii_c_string, STATE(3033), 6, @@ -106127,37 +104729,48 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103219] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1444), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1446), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [103247] = 3, + [101130] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 1, + ACTIONS(2205), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4819), 1, + sym_word, + STATE(3086), 1, + aux_sym__literal_repeat1, + STATE(3281), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4821), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3087), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 1, sym__concat, - ACTIONS(1298), 19, + ACTIONS(1453), 19, anon_sym_RBRACE, anon_sym_EQ, anon_sym_DASH, @@ -106177,16 +104790,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103275] = 3, - ACTIONS(4189), 1, + [101208] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1374), 5, + ACTIONS(1288), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1376), 15, + ACTIONS(1290), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106202,468 +104815,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [103303] = 14, + [101236] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2211), 1, + ACTIONS(1895), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4938), 1, - sym_word, - STATE(3014), 1, - aux_sym__literal_repeat1, - STATE(3453), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4940), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3016), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103353] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4942), 1, - sym_word, - STATE(3104), 1, - aux_sym__literal_repeat1, - STATE(3323), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4944), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3103), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103403] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1975), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4946), 1, - sym_word, - STATE(3038), 1, - aux_sym__literal_repeat1, - STATE(3379), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4948), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3036), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 1, - sym__concat, - ACTIONS(1294), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103481] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2627), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4950), 1, - sym_word, - STATE(3031), 1, - aux_sym__literal_repeat1, - STATE(3409), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4952), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3029), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103531] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2337), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4954), 1, - sym_word, - STATE(3052), 1, - aux_sym__literal_repeat1, - STATE(3344), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4956), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3054), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103581] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2239), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4958), 1, - sym_word, - STATE(3020), 1, - aux_sym__literal_repeat1, - STATE(3424), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4960), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3024), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103631] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2677), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4962), 1, - sym_word, - STATE(2994), 1, - aux_sym__literal_repeat1, - STATE(3375), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4964), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3040), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103681] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1987), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4966), 1, - sym_word, - STATE(3032), 1, - aux_sym__literal_repeat1, - STATE(3388), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4968), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3035), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103731] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1426), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1428), 15, - sym__concat, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [103759] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2285), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4970), 1, + ACTIONS(4823), 1, sym_word, STATE(3092), 1, aux_sym__literal_repeat1, - STATE(3292), 1, + STATE(3288), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4972), 2, + ACTIONS(4825), 2, sym_raw_string, sym_ansii_c_string, - STATE(3097), 6, + STATE(3091), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103809] = 3, + [101286] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, - sym__concat, - ACTIONS(1290), 19, + ACTIONS(1833), 1, anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, + ACTIONS(4707), 1, anon_sym_DOLLAR, + ACTIONS(4709), 1, sym__special_character, + ACTIONS(4711), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [103837] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1963), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4974), 1, + ACTIONS(4827), 1, sym_word, STATE(3044), 1, aux_sym__literal_repeat1, - STATE(3368), 1, + STATE(3374), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4976), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3043), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [103887] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2609), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, - sym_word, - STATE(3125), 1, - aux_sym__literal_repeat1, - STATE(3436), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4980), 2, + ACTIONS(4829), 2, sym_raw_string, sym_ansii_c_string, STATE(3124), 6, @@ -106673,48 +104887,84 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [103937] = 14, + [101336] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2315), 1, + ACTIONS(1795), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4831), 1, sym_word, - STATE(3045), 1, + STATE(2995), 1, aux_sym__literal_repeat1, - STATE(3365), 1, + STATE(3402), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4984), 2, + ACTIONS(4833), 2, sym_raw_string, sym_ansii_c_string, - STATE(3047), 6, + STATE(3151), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [103987] = 3, + [101386] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(2849), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4835), 1, + sym_word, + STATE(3145), 1, + aux_sym__literal_repeat1, + STATE(3436), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4837), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3147), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 1, sym__concat, - ACTIONS(1286), 19, + ACTIONS(1449), 19, anon_sym_RBRACE, anon_sym_EQ, anon_sym_DASH, @@ -106734,16 +104984,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104015] = 3, - ACTIONS(4189), 1, + [101464] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1378), 5, + ACTIONS(1443), 1, + sym__concat, + ACTIONS(1441), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [101492] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1284), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1380), 15, + ACTIONS(1286), 15, sym__concat, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -106759,12 +105034,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [104043] = 3, + [101520] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1227), 6, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + sym__special_character, + ACTIONS(1229), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 1, + ACTIONS(1396), 1, sym__concat, - ACTIONS(1282), 19, + ACTIONS(1394), 19, anon_sym_RBRACE, anon_sym_EQ, anon_sym_DASH, @@ -106784,74 +105084,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104071] = 14, + [101576] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1949), 1, + ACTIONS(2121), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4986), 1, + ACTIONS(4839), 1, sym_word, - STATE(3039), 1, + STATE(3025), 1, aux_sym__literal_repeat1, - STATE(3374), 1, + STATE(3411), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4988), 2, + ACTIONS(4841), 2, sym_raw_string, sym_ansii_c_string, - STATE(3041), 6, + STATE(3026), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [104121] = 4, + [101626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4990), 1, + ACTIONS(1265), 1, + sym__concat, + ACTIONS(1263), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, sym__special_character, - STATE(2325), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [101654] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1839), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4843), 1, + sym_word, + STATE(3022), 1, aux_sym__literal_repeat1, - ACTIONS(1355), 18, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + STATE(3425), 1, + sym_concatenation, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [104151] = 3, + ACTIONS(4845), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3021), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1280), 1, + ACTIONS(1322), 1, sym__concat, - ACTIONS(1278), 19, + ACTIONS(1320), 19, anon_sym_RBRACE, anon_sym_EQ, anon_sym_DASH, @@ -106871,12 +105206,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104179] = 3, - ACTIONS(3), 1, + [101732] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1276), 1, + ACTIONS(1211), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1213), 15, sym__concat, - ACTIONS(1274), 19, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [101760] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 1, + sym__concat, + ACTIONS(1380), 19, anon_sym_RBRACE, anon_sym_EQ, anon_sym_DASH, @@ -106896,1394 +105256,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104207] = 14, + [101788] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2989), 1, + ACTIONS(2071), 1, anon_sym_RBRACE, - ACTIONS(4698), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4700), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(4993), 1, + ACTIONS(4847), 1, sym_word, - STATE(3122), 1, + STATE(3149), 1, + aux_sym__literal_repeat1, + STATE(3433), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4849), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3131), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101838] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2899), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4851), 1, + sym_word, + STATE(3134), 1, + aux_sym__literal_repeat1, + STATE(3398), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4853), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3137), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101888] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2753), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, + sym_word, + STATE(3070), 1, + aux_sym__literal_repeat1, + STATE(3306), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4857), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3075), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101938] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2289), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4859), 1, + sym_word, + STATE(3142), 1, + aux_sym__literal_repeat1, + STATE(3446), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4861), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3141), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101988] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2083), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4863), 1, + sym_word, + STATE(3121), 1, aux_sym__literal_repeat1, STATE(3381), 1, sym_concatenation, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4995), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3126), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104257] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3059), 1, - anon_sym_RBRACE, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4700), 1, - sym__special_character, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(4997), 1, - sym_word, - STATE(3131), 1, - aux_sym__literal_repeat1, - STATE(3435), 1, - sym_concatenation, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(4999), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3130), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 1, - sym__concat, - ACTIONS(1251), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [104335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 1, - sym__concat, - ACTIONS(1270), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [104363] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4020), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4199), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [104390] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5001), 1, - anon_sym_RPAREN, - ACTIONS(5009), 1, - anon_sym_QMARK, - ACTIONS(5005), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5007), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5003), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104425] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5015), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5021), 1, - anon_sym_QMARK, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5017), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5019), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5013), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104460] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5023), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104495] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5025), 1, - anon_sym_COLON, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104530] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 19, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_POUND, - anon_sym_DOLLAR_LBRACE, - anon_sym_COLON_QMARK, - anon_sym_COLON_DASH, - anon_sym_PERCENT, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [104555] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5021), 1, - anon_sym_QMARK, - ACTIONS(5027), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5017), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5019), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5013), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104590] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5027), 1, - anon_sym_RBRACK, - ACTIONS(5035), 1, - anon_sym_QMARK, - ACTIONS(5031), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5037), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5033), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5029), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104625] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_DQUOTE, - ACTIONS(5039), 1, - sym_word, - ACTIONS(5041), 1, - anon_sym_DOLLAR, - ACTIONS(5043), 1, - sym__special_character, - ACTIONS(5047), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5049), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5051), 1, - anon_sym_BQUOTE, - STATE(1733), 1, - aux_sym__literal_repeat1, - STATE(2037), 1, - sym_concatenation, - ACTIONS(5045), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(5053), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1736), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104672] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4342), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4637), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [104699] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5055), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104734] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5057), 1, - anon_sym_COLON, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104769] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(5059), 1, - sym_word, - ACTIONS(5061), 1, - anon_sym_DOLLAR, - ACTIONS(5063), 1, - sym__special_character, - ACTIONS(5067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5071), 1, - anon_sym_BQUOTE, - STATE(1680), 1, - aux_sym__literal_repeat1, - STATE(1861), 1, - sym_concatenation, - ACTIONS(5065), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(5073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1684), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104816] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5075), 1, - anon_sym_COLON, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104851] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5077), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104886] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(5061), 1, - anon_sym_DOLLAR, - ACTIONS(5067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5071), 1, - anon_sym_BQUOTE, - ACTIONS(5079), 1, - sym_word, - ACTIONS(5081), 1, - sym__special_character, - STATE(1674), 1, - aux_sym__literal_repeat1, - STATE(1833), 1, - sym_concatenation, - ACTIONS(5073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5083), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1703), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [104933] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5009), 1, - anon_sym_QMARK, - ACTIONS(5085), 1, - anon_sym_RPAREN, - ACTIONS(5005), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5007), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5003), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [104968] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5087), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105003] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(5061), 1, - anon_sym_DOLLAR, - ACTIONS(5063), 1, - sym__special_character, - ACTIONS(5067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5071), 1, - anon_sym_BQUOTE, - ACTIONS(5089), 1, - sym_word, - STATE(1674), 1, - aux_sym__literal_repeat1, - STATE(1833), 1, - sym_concatenation, - ACTIONS(5073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5091), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1675), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105050] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(5061), 1, - anon_sym_DOLLAR, - ACTIONS(5067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5071), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - sym__special_character, - ACTIONS(5093), 1, - sym_word, - STATE(1668), 1, - aux_sym__literal_repeat1, - STATE(1751), 1, - sym_concatenation, - ACTIONS(5073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5095), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1725), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105097] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(5061), 1, - anon_sym_DOLLAR, - ACTIONS(5067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5071), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - sym__special_character, - ACTIONS(5097), 1, - sym_word, - STATE(1680), 1, - aux_sym__literal_repeat1, - STATE(1861), 1, - sym_concatenation, - ACTIONS(5073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5099), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1727), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105144] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(5061), 1, - anon_sym_DOLLAR, - ACTIONS(5063), 1, - sym__special_character, - ACTIONS(5067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5071), 1, - anon_sym_BQUOTE, - ACTIONS(5101), 1, - sym_word, - STATE(1668), 1, - aux_sym__literal_repeat1, - STATE(1751), 1, - sym_concatenation, - ACTIONS(5073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5103), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1664), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105191] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4782), 1, - anon_sym_RPAREN, - ACTIONS(5009), 1, - anon_sym_QMARK, - ACTIONS(5005), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5007), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5003), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105226] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5105), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105261] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5107), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105296] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, - anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(5109), 1, - sym_word, - STATE(2981), 1, - aux_sym__literal_repeat1, - STATE(3208), 1, - sym_concatenation, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5111), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(2983), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105343] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5113), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105378] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5115), 1, - anon_sym_COLON, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105413] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5027), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105448] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5117), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105483] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5009), 1, - anon_sym_QMARK, - ACTIONS(5119), 1, - anon_sym_RPAREN, - ACTIONS(5005), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5007), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5003), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105518] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - ACTIONS(5121), 1, - sym_word, - ACTIONS(5123), 1, - sym__special_character, - STATE(2978), 1, - aux_sym__literal_repeat1, - STATE(3255), 1, - sym_concatenation, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5125), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(3066), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105565] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(5127), 1, - sym_word, - ACTIONS(5129), 1, - anon_sym_DOLLAR, - ACTIONS(5131), 1, - sym__special_character, - ACTIONS(5135), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5137), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5139), 1, - anon_sym_BQUOTE, - STATE(1851), 1, - aux_sym__literal_repeat1, - STATE(2162), 1, - sym_concatenation, - ACTIONS(5133), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(5141), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1845), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105612] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1701), 1, - anon_sym_DQUOTE, - ACTIONS(4318), 1, - anon_sym_DOLLAR, - ACTIONS(4320), 1, - sym__special_character, - ACTIONS(4324), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4326), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4328), 1, - anon_sym_BQUOTE, - ACTIONS(5143), 1, - sym_word, - STATE(1803), 1, - aux_sym__literal_repeat1, - STATE(1988), 1, - sym_concatenation, - ACTIONS(4330), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5145), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1705), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [105659] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4020), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4199), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105686] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5021), 1, - anon_sym_QMARK, - ACTIONS(5147), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5017), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5019), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5013), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105721] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4370), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4532), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105748] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4374), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4651), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105775] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4374), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4651), 14, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [105802] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5035), 1, - anon_sym_QMARK, - ACTIONS(5147), 1, - anon_sym_RBRACK, - ACTIONS(5031), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5037), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5033), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5029), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105837] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5149), 1, - anon_sym_COLON, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105872] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5015), 1, - anon_sym_RBRACK, - ACTIONS(5035), 1, - anon_sym_QMARK, - ACTIONS(5031), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5037), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5033), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5029), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105907] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4782), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(5021), 1, - anon_sym_QMARK, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5017), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5019), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5013), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [105942] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - ACTIONS(5123), 1, - sym__special_character, - ACTIONS(5151), 1, - sym_word, - STATE(2963), 1, - aux_sym__literal_repeat1, - STATE(3202), 1, - sym_concatenation, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5153), 2, + ACTIONS(4865), 2, sym_raw_string, sym_ansii_c_string, STATE(3112), 6, @@ -108293,291 +105436,1863 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [105989] = 13, + [102038] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, - anon_sym_DQUOTE, - ACTIONS(4318), 1, + ACTIONS(3019), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(4320), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(4324), 1, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4326), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4328), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(5155), 1, + ACTIONS(4867), 1, sym_word, - STATE(1838), 1, + STATE(3099), 1, aux_sym__literal_repeat1, - STATE(1983), 1, + STATE(3304), 1, sym_concatenation, - ACTIONS(4330), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5157), 2, + ACTIONS(4869), 2, sym_raw_string, sym_ansii_c_string, - STATE(1710), 6, + STATE(3103), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106036] = 13, - ACTIONS(3), 1, + [102088] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(5159), 1, - sym_word, - ACTIONS(5161), 1, - anon_sym_DOLLAR, - ACTIONS(5163), 1, - sym__special_character, - ACTIONS(5165), 1, - anon_sym_DQUOTE, - ACTIONS(5169), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5171), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5173), 1, - anon_sym_BQUOTE, - STATE(2820), 1, - aux_sym__literal_repeat1, - STATE(2902), 1, - sym_concatenation, - ACTIONS(5167), 2, - sym_raw_string, - sym_ansii_c_string, - ACTIONS(5175), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2821), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106083] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4782), 1, + ACTIONS(1308), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1310), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_RBRACK, - ACTIONS(5035), 1, - anon_sym_QMARK, - ACTIONS(5031), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(5037), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5033), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5029), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_BANG_EQ, anon_sym_DASH_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_test_operator, - [106118] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, anon_sym_QMARK, - ACTIONS(5015), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, sym_test_operator, - [106153] = 13, + [102116] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 1, + ACTIONS(2295), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(5163), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(5165), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(5169), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5171), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5173), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(5177), 1, + ACTIONS(4871), 1, sym_word, - STATE(2805), 1, + STATE(3028), 1, aux_sym__literal_repeat1, - STATE(2898), 1, + STATE(3405), 1, sym_concatenation, - ACTIONS(5175), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5179), 2, + ACTIONS(4873), 2, sym_raw_string, sym_ansii_c_string, - STATE(2806), 6, + STATE(3027), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106200] = 13, + [102166] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 1, - anon_sym_DQUOTE, - ACTIONS(5041), 1, + ACTIONS(2917), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(5043), 1, + ACTIONS(4709), 1, sym__special_character, - ACTIONS(5047), 1, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5049), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5051), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, - ACTIONS(5181), 1, + ACTIONS(4875), 1, sym_word, - STATE(1740), 1, + STATE(3144), 1, + aux_sym__literal_repeat1, + STATE(3441), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4877), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3143), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102216] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(95), 1, + anon_sym_DOLLAR, + ACTIONS(97), 1, + sym__special_character, + ACTIONS(99), 1, + anon_sym_DQUOTE, + ACTIONS(103), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(105), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(107), 1, + anon_sym_BQUOTE, + ACTIONS(4879), 1, + sym_word, + ACTIONS(4883), 1, + sym_regex, + STATE(571), 1, + aux_sym__literal_repeat1, + STATE(755), 1, + sym_concatenation, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4881), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(521), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102266] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2469), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4885), 1, + sym_word, + STATE(3019), 1, + aux_sym__literal_repeat1, + STATE(3419), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4887), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3023), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102316] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + sym_word, + STATE(3116), 1, + aux_sym__literal_repeat1, + STATE(3372), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4891), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3114), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102366] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(39), 1, + anon_sym_DOLLAR, + ACTIONS(41), 1, + sym__special_character, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, + anon_sym_BQUOTE, + ACTIONS(4893), 1, + sym_word, + ACTIONS(4897), 1, + sym_regex, + STATE(667), 1, + aux_sym__literal_repeat1, + STATE(793), 1, + sym_concatenation, + ACTIONS(53), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4895), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(538), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102416] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2873), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + sym_word, + STATE(3085), 1, + aux_sym__literal_repeat1, + STATE(3289), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4901), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3083), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102466] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2457), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4903), 1, + sym_word, + STATE(3136), 1, + aux_sym__literal_repeat1, + STATE(3423), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4905), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3135), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102516] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2583), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4907), 1, + sym_word, + STATE(3001), 1, + aux_sym__literal_repeat1, + STATE(3478), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4909), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2999), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102566] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2147), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4911), 1, + sym_word, + STATE(3069), 1, + aux_sym__literal_repeat1, + STATE(3340), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4913), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3039), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + sym__concat, + ACTIONS(1358), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [102644] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2603), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4915), 1, + sym_word, + STATE(3006), 1, + aux_sym__literal_repeat1, + STATE(3465), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4917), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3004), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102694] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4919), 1, + sym_word, + STATE(2996), 1, + aux_sym__literal_repeat1, + STATE(3351), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4921), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2998), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102744] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 1, + sym__concat, + ACTIONS(1350), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [102772] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1863), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4923), 1, + sym_word, + STATE(3065), 1, + aux_sym__literal_repeat1, + STATE(3314), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4925), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3062), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102822] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2657), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4927), 1, + sym_word, + STATE(3107), 1, + aux_sym__literal_repeat1, + STATE(3337), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4929), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3106), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102872] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + sym__concat, + ACTIONS(1346), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [102900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + sym__concat, + ACTIONS(1346), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [102928] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1380), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1382), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [102956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 1, + sym__concat, + ACTIONS(1328), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [102984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 1, + sym__concat, + ACTIONS(1324), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [103012] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1425), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1427), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [103040] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + anon_sym_DOLLAR, + ACTIONS(217), 1, + sym__special_character, + ACTIONS(219), 1, + anon_sym_DQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(225), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(227), 1, + anon_sym_BQUOTE, + ACTIONS(4931), 1, + sym_word, + ACTIONS(4935), 1, + sym_regex, + STATE(435), 1, + aux_sym__literal_repeat1, + STATE(648), 1, + sym_concatenation, + ACTIONS(229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4933), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(353), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103090] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1263), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1265), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [103118] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2833), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4937), 1, + sym_word, + STATE(3074), 1, + aux_sym__literal_repeat1, + STATE(3302), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4939), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3072), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103168] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1883), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4941), 1, + sym_word, + STATE(3054), 1, + aux_sym__literal_repeat1, + STATE(3345), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4943), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3052), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103218] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1775), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4945), 1, + sym_word, + STATE(3104), 1, + aux_sym__literal_repeat1, + STATE(3323), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4947), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3102), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103268] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2995), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4949), 1, + sym_word, + STATE(3129), 1, + aux_sym__literal_repeat1, + STATE(3442), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4951), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3130), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103318] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2229), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4953), 1, + sym_word, + STATE(3014), 1, + aux_sym__literal_repeat1, + STATE(3455), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4955), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3016), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103368] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1376), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1378), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [103396] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2645), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + sym_word, + STATE(3032), 1, + aux_sym__literal_repeat1, + STATE(3401), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4959), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3030), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103446] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1997), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4961), 1, + sym_word, + STATE(3042), 1, + aux_sym__literal_repeat1, + STATE(3271), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4963), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3040), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103496] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1394), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1396), 15, + sym__concat, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [103524] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2251), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4965), 1, + sym_word, + STATE(3020), 1, + aux_sym__literal_repeat1, + STATE(3424), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4967), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3024), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103574] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2269), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4969), 1, + sym_word, + STATE(3093), 1, + aux_sym__literal_repeat1, + STATE(3292), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4971), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3098), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103624] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2009), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4973), 1, + sym_word, + STATE(3031), 1, + aux_sym__literal_repeat1, + STATE(3384), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4975), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3034), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103674] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1985), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4977), 1, + sym_word, + STATE(3048), 1, + aux_sym__literal_repeat1, + STATE(3365), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4979), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3046), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103724] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2695), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4981), 1, + sym_word, + STATE(2994), 1, + aux_sym__literal_repeat1, + STATE(3376), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4983), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3041), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103774] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1971), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4985), 1, + sym_word, + STATE(3038), 1, + aux_sym__literal_repeat1, + STATE(3371), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4987), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3043), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103824] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2493), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4989), 1, + sym_word, + STATE(3123), 1, + aux_sym__literal_repeat1, + STATE(3383), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4991), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3127), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103874] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2963), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4993), 1, + sym_word, + STATE(3133), 1, + aux_sym__literal_repeat1, + STATE(3440), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4995), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3132), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 1, + sym__concat, + ACTIONS(1284), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [103952] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 1, + sym__concat, + ACTIONS(1288), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [103980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + sym__concat, + ACTIONS(1292), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [104008] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + sym__concat, + ACTIONS(1296), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [104036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 1, + sym__concat, + ACTIONS(1300), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [104064] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2615), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(4997), 1, + sym_word, + STATE(3126), 1, + aux_sym__literal_repeat1, + STATE(3437), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4999), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3125), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104114] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym__concat, + ACTIONS(1267), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [104142] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 1, + sym__concat, + ACTIONS(1304), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [104170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + sym__concat, + ACTIONS(1308), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [104198] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2339), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(5001), 1, + sym_word, + STATE(3045), 1, + aux_sym__literal_repeat1, + STATE(3369), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5003), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3047), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104248] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2425), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(5005), 1, + sym_word, + STATE(3037), 1, + aux_sym__literal_repeat1, + STATE(3414), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5007), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3029), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104298] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2359), 1, + anon_sym_RBRACE, + ACTIONS(4707), 1, + anon_sym_DOLLAR, + ACTIONS(4709), 1, + sym__special_character, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(5009), 1, + sym_word, + STATE(3053), 1, + aux_sym__literal_repeat1, + STATE(3349), 1, + sym_concatenation, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5011), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3055), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + sym__concat, + ACTIONS(1312), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [104376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 1, + sym__concat, + ACTIONS(1316), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [104404] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1610), 1, + anon_sym_DQUOTE, + ACTIONS(5013), 1, + sym_word, + ACTIONS(5015), 1, + anon_sym_DOLLAR, + ACTIONS(5017), 1, + sym__special_character, + ACTIONS(5021), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5023), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5025), 1, + anon_sym_BQUOTE, + STATE(1696), 1, aux_sym__literal_repeat1, STATE(1929), 1, sym_concatenation, - ACTIONS(5053), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5183), 2, + ACTIONS(5019), 2, sym_raw_string, sym_ansii_c_string, - STATE(1742), 6, + ACTIONS(5027), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1701), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106247] = 3, - ACTIONS(4189), 1, + [104451] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4342), 5, + ACTIONS(4508), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4637), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [106274] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5185), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106309] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(5009), 1, - anon_sym_QMARK, - ACTIONS(5187), 1, + ACTIONS(4607), 14, anon_sym_RPAREN, - ACTIONS(5005), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(5011), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5007), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5003), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106344] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4374), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4651), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, anon_sym_PLUS_EQ, @@ -108589,222 +107304,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [106371] = 13, - ACTIONS(3), 1, + [104478] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1596), 1, - anon_sym_DQUOTE, - ACTIONS(5041), 1, - anon_sym_DOLLAR, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5029), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [104513] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5031), 1, + anon_sym_COLON, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [104548] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4783), 1, + anon_sym_RPAREN, + ACTIONS(5039), 1, + anon_sym_QMARK, + ACTIONS(5035), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5041), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5037), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5033), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [104583] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4412), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4664), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [104610] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5039), 1, + anon_sym_QMARK, ACTIONS(5043), 1, - sym__special_character, - ACTIONS(5047), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5049), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5051), 1, - anon_sym_BQUOTE, - ACTIONS(5189), 1, - sym_word, - STATE(1722), 1, - aux_sym__literal_repeat1, - STATE(1973), 1, - sym_concatenation, - ACTIONS(5053), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5191), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1711), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106418] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4374), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4651), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [106445] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5193), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106480] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5195), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4784), 8, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_test_operator, - [106515] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4370), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4532), 14, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - sym_test_operator, - [106542] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4384), 5, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4623), 14, anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5035), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - anon_sym_PLUS_EQ, - anon_sym_BANG_EQ, - anon_sym_DASH_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK, + ACTIONS(5041), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - sym_test_operator, - [106569] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(5129), 1, - anon_sym_DOLLAR, - ACTIONS(5131), 1, - sym__special_character, - ACTIONS(5135), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5137), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5139), 1, - anon_sym_BQUOTE, - ACTIONS(5197), 1, - sym_word, - STATE(1839), 1, - aux_sym__literal_repeat1, - STATE(2153), 1, - sym_concatenation, - ACTIONS(5141), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5199), 2, - sym_raw_string, - sym_ansii_c_string, - STATE(1852), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106616] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4790), 1, - anon_sym_QMARK, - ACTIONS(5201), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ, - ACTIONS(4792), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4788), 5, + ACTIONS(5037), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4784), 8, + ACTIONS(5033), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -108813,60 +107440,687 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_test_operator, - [106651] = 13, + [104645] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 1, + ACTIONS(1610), 1, anon_sym_DQUOTE, - ACTIONS(5129), 1, + ACTIONS(5015), 1, anon_sym_DOLLAR, - ACTIONS(5131), 1, + ACTIONS(5017), 1, sym__special_character, - ACTIONS(5135), 1, + ACTIONS(5021), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5137), 1, + ACTIONS(5023), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5139), 1, + ACTIONS(5025), 1, anon_sym_BQUOTE, - ACTIONS(5203), 1, + ACTIONS(5045), 1, sym_word, - STATE(1781), 1, + STATE(1736), 1, aux_sym__literal_repeat1, - STATE(2174), 1, + STATE(2039), 1, sym_concatenation, - ACTIONS(5141), 2, + ACTIONS(5027), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5205), 2, + ACTIONS(5047), 2, sym_raw_string, sym_ansii_c_string, - STATE(1754), 6, + STATE(1737), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106698] = 7, - ACTIONS(4189), 1, + [104692] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(4790), 1, + ACTIONS(1227), 19, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_POUND, + anon_sym_DOLLAR_LBRACE, + anon_sym_COLON_QMARK, + anon_sym_COLON_DASH, + anon_sym_PERCENT, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [104717] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5049), 1, + anon_sym_COLON, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [104752] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5053), 1, + anon_sym_RBRACK, + ACTIONS(5059), 1, + anon_sym_QMARK, + ACTIONS(5055), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5061), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5057), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5051), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [104787] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + anon_sym_DQUOTE, + ACTIONS(5063), 1, + sym_word, + ACTIONS(5065), 1, + anon_sym_DOLLAR, + ACTIONS(5067), 1, + sym__special_character, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5075), 1, + anon_sym_BQUOTE, + STATE(1683), 1, + aux_sym__literal_repeat1, + STATE(1825), 1, + sym_concatenation, + ACTIONS(5069), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(5077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1677), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104834] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5053), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5085), 1, + anon_sym_QMARK, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5081), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5083), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5079), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [104869] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4017), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4071), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [104896] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + anon_sym_DOLLAR, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5075), 1, + anon_sym_BQUOTE, + ACTIONS(5087), 1, + sym_word, + ACTIONS(5089), 1, + sym__special_character, + STATE(1688), 1, + aux_sym__literal_repeat1, + STATE(1834), 1, + sym_concatenation, + ACTIONS(5077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5091), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1717), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104943] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + anon_sym_DOLLAR, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5075), 1, + anon_sym_BQUOTE, + ACTIONS(5089), 1, + sym__special_character, + ACTIONS(5093), 1, + sym_word, + STATE(1673), 1, + aux_sym__literal_repeat1, + STATE(1762), 1, + sym_concatenation, + ACTIONS(5077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5095), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1726), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104990] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5097), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105025] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5099), 1, + anon_sym_COLON, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105060] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5101), 1, + sym_word, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + sym__special_character, + ACTIONS(5107), 1, + anon_sym_DQUOTE, + ACTIONS(5111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5113), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5115), 1, + anon_sym_BQUOTE, + STATE(2806), 1, + aux_sym__literal_repeat1, + STATE(2898), 1, + sym_concatenation, + ACTIONS(5109), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(5117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2807), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105107] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5119), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105142] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + anon_sym_DOLLAR, + ACTIONS(5067), 1, + sym__special_character, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5075), 1, + anon_sym_BQUOTE, + ACTIONS(5121), 1, + sym_word, + STATE(1673), 1, + aux_sym__literal_repeat1, + STATE(1762), 1, + sym_concatenation, + ACTIONS(5077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5123), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1678), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105189] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5125), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105224] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5059), 1, + anon_sym_QMARK, + ACTIONS(5127), 1, + anon_sym_RBRACK, + ACTIONS(5055), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5061), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5057), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5051), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105259] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + anon_sym_DOLLAR, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5075), 1, + anon_sym_BQUOTE, + ACTIONS(5089), 1, + sym__special_character, + ACTIONS(5129), 1, + sym_word, + STATE(1683), 1, + aux_sym__literal_repeat1, + STATE(1825), 1, + sym_concatenation, + ACTIONS(5077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5131), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1727), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105306] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5039), 1, + anon_sym_QMARK, + ACTIONS(5133), 1, + anon_sym_RPAREN, + ACTIONS(5035), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5041), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5037), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5033), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105341] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + anon_sym_DOLLAR, + ACTIONS(5067), 1, + sym__special_character, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5075), 1, + anon_sym_BQUOTE, + ACTIONS(5135), 1, + sym_word, + STATE(1688), 1, + aux_sym__literal_repeat1, + STATE(1834), 1, + sym_concatenation, + ACTIONS(5077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5137), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1682), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105388] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_DOLLAR, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(4232), 1, + sym__special_character, + ACTIONS(5139), 1, + sym_word, + STATE(2981), 1, + aux_sym__literal_repeat1, + STATE(3196), 1, + sym_concatenation, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5141), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2983), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105435] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5143), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105470] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5145), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105505] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, anon_sym_QMARK, ACTIONS(5147), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(4786), 2, + ACTIONS(4787), 2, anon_sym_EQ_TILDE, anon_sym_EQ_EQ, - ACTIONS(4792), 2, + ACTIONS(4793), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4788), 5, + ACTIONS(4789), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4784), 8, + ACTIONS(4785), 8, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -108875,16 +108129,600 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_test_operator, - [106733] = 3, - ACTIONS(4189), 1, + [105540] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4384), 5, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5053), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, anon_sym_EQ, anon_sym_LT, anon_sym_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4623), 14, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105575] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1655), 1, + anon_sym_DQUOTE, + ACTIONS(5149), 1, + sym_word, + ACTIONS(5151), 1, + anon_sym_DOLLAR, + ACTIONS(5153), 1, + sym__special_character, + ACTIONS(5157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5161), 1, + anon_sym_BQUOTE, + STATE(1754), 1, + aux_sym__literal_repeat1, + STATE(2142), 1, + sym_concatenation, + ACTIONS(5155), 2, + sym_raw_string, + sym_ansii_c_string, + ACTIONS(5163), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1756), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105622] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5165), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105657] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + ACTIONS(5167), 1, + sym_word, + ACTIONS(5169), 1, + sym__special_character, + STATE(2980), 1, + aux_sym__literal_repeat1, + STATE(3259), 1, + sym_concatenation, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5171), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3073), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105704] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + anon_sym_DQUOTE, + ACTIONS(4332), 1, + anon_sym_DOLLAR, + ACTIONS(4334), 1, + sym__special_character, + ACTIONS(4338), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4340), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4342), 1, + anon_sym_BQUOTE, + ACTIONS(5173), 1, + sym_word, + STATE(1852), 1, + aux_sym__literal_repeat1, + STATE(2002), 1, + sym_concatenation, + ACTIONS(4344), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5175), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1697), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105751] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5039), 1, + anon_sym_QMARK, + ACTIONS(5177), 1, + anon_sym_RPAREN, + ACTIONS(5035), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5041), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5037), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5033), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105786] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4494), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [105813] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4494), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [105840] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4017), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4071), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [105867] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5179), 1, + anon_sym_COLON, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105902] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5181), 1, + anon_sym_COLON, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105937] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5085), 1, + anon_sym_QMARK, + ACTIONS(5127), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5081), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5083), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5079), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [105972] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4783), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(5085), 1, + anon_sym_QMARK, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5081), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5083), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5079), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106007] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + ACTIONS(5169), 1, + sym__special_character, + ACTIONS(5183), 1, + sym_word, + STATE(2962), 1, + aux_sym__literal_repeat1, + STATE(3195), 1, + sym_concatenation, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5185), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(3128), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106054] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + anon_sym_DQUOTE, + ACTIONS(4332), 1, + anon_sym_DOLLAR, + ACTIONS(4334), 1, + sym__special_character, + ACTIONS(4338), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4340), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4342), 1, + anon_sym_BQUOTE, + ACTIONS(5187), 1, + sym_word, + STATE(1894), 1, + aux_sym__literal_repeat1, + STATE(2005), 1, + sym_concatenation, + ACTIONS(4344), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5189), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1720), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106101] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + sym__special_character, + ACTIONS(5107), 1, + anon_sym_DQUOTE, + ACTIONS(5111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5113), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5115), 1, + anon_sym_BQUOTE, + ACTIONS(5191), 1, + sym_word, + STATE(2799), 1, + aux_sym__literal_repeat1, + STATE(2903), 1, + sym_concatenation, + ACTIONS(5117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5193), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2810), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106148] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4783), 1, + anon_sym_RBRACK, + ACTIONS(5059), 1, + anon_sym_QMARK, + ACTIONS(5055), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5061), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5057), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5051), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106183] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5127), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106218] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5195), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106253] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5085), 1, + anon_sym_QMARK, + ACTIONS(5197), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5081), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5083), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5079), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106288] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4412), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4664), 14, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_RBRACK, @@ -108899,61 +108737,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, sym_test_operator, - [106760] = 13, + [106315] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5039), 1, + anon_sym_QMARK, + ACTIONS(5199), 1, + anon_sym_RPAREN, + ACTIONS(5035), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5041), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5037), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5033), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106350] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5201), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106385] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5203), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106420] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4494), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [106447] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 1, - anon_sym_DOLLAR, - ACTIONS(5163), 1, - sym__special_character, - ACTIONS(5165), 1, + ACTIONS(1610), 1, anon_sym_DQUOTE, - ACTIONS(5169), 1, + ACTIONS(5015), 1, + anon_sym_DOLLAR, + ACTIONS(5017), 1, + sym__special_character, + ACTIONS(5021), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5171), 1, + ACTIONS(5023), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5173), 1, + ACTIONS(5025), 1, anon_sym_BQUOTE, - ACTIONS(5207), 1, + ACTIONS(5205), 1, sym_word, - STATE(2813), 1, + STATE(1714), 1, aux_sym__literal_repeat1, - STATE(2900), 1, + STATE(1969), 1, sym_concatenation, - ACTIONS(5175), 2, + ACTIONS(5027), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5209), 2, + ACTIONS(5207), 2, sym_raw_string, sym_ansii_c_string, - STATE(2824), 6, + STATE(1715), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [106807] = 11, + [106494] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4494), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4609), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [106521] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4417), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4658), 14, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [106548] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5209), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106583] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4508), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4607), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [106610] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3099), 1, + ACTIONS(1655), 1, anon_sym_DQUOTE, - ACTIONS(3101), 1, + ACTIONS(5151), 1, + anon_sym_DOLLAR, + ACTIONS(5153), 1, + sym__special_character, + ACTIONS(5157), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, + ACTIONS(5159), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, + ACTIONS(5161), 1, anon_sym_BQUOTE, ACTIONS(5211), 1, sym_word, - ACTIONS(5213), 1, - anon_sym_RBRACK, - ACTIONS(3107), 2, + STATE(1758), 1, + aux_sym__literal_repeat1, + STATE(2196), 1, + sym_concatenation, + ACTIONS(5163), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5215), 3, + ACTIONS(5213), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1862), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106657] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1655), 1, + anon_sym_DQUOTE, + ACTIONS(5151), 1, + anon_sym_DOLLAR, + ACTIONS(5153), 1, + sym__special_character, + ACTIONS(5157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5161), 1, + anon_sym_BQUOTE, + ACTIONS(5215), 1, + sym_word, + STATE(1809), 1, + aux_sym__literal_repeat1, + STATE(2116), 1, + sym_concatenation, + ACTIONS(5163), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5217), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(1800), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106704] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4791), 1, + anon_sym_QMARK, + ACTIONS(5197), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(4787), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(4793), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4789), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4785), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106739] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4417), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4658), 14, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + sym_test_operator, + [106766] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5105), 1, + sym__special_character, + ACTIONS(5107), 1, + anon_sym_DQUOTE, + ACTIONS(5111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5113), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5115), 1, + anon_sym_BQUOTE, + ACTIONS(5219), 1, + sym_word, + STATE(2816), 1, + aux_sym__literal_repeat1, + STATE(2901), 1, + sym_concatenation, + ACTIONS(5117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5221), 2, + sym_raw_string, + sym_ansii_c_string, + STATE(2827), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [106813] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(5059), 1, + anon_sym_QMARK, + ACTIONS(5197), 1, + anon_sym_RBRACK, + ACTIONS(5055), 2, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ, + ACTIONS(5061), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5057), 5, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5051), 8, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_BANG_EQ, + anon_sym_DASH_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_test_operator, + [106848] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2935), 1, + anon_sym_DOLLAR, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + ACTIONS(5223), 1, + sym_word, + ACTIONS(5225), 1, + anon_sym_RBRACK, + ACTIONS(2947), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5227), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -108964,25 +109192,25 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106849] = 8, + [106890] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(545), 1, + ACTIONS(555), 1, anon_sym_LF, - ACTIONS(5165), 1, + ACTIONS(5107), 1, anon_sym_DQUOTE, - ACTIONS(5219), 1, + ACTIONS(5231), 1, sym_raw_string, - ACTIONS(5221), 1, + ACTIONS(5233), 1, aux_sym__simple_variable_name_token1, - STATE(2849), 1, + STATE(2859), 1, sym_string, - ACTIONS(537), 4, + ACTIONS(547), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - ACTIONS(5217), 9, + ACTIONS(5229), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -108992,27 +109220,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [106885] = 11, + [106926] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(3099), 1, + ACTIONS(2939), 1, anon_sym_DQUOTE, - ACTIONS(3101), 1, + ACTIONS(2941), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, + ACTIONS(2943), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, + ACTIONS(2945), 1, anon_sym_BQUOTE, - ACTIONS(5211), 1, - sym_word, ACTIONS(5223), 1, + sym_word, + ACTIONS(5235), 1, anon_sym_RBRACK, - ACTIONS(3107), 2, + ACTIONS(2947), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5215), 3, + ACTIONS(5227), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -109023,373 +109251,402 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [106927] = 10, + [106968] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(469), 1, + ACTIONS(481), 1, anon_sym_DOLLAR, - ACTIONS(473), 1, + ACTIONS(485), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(477), 1, + ACTIONS(489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(479), 1, + ACTIONS(491), 1, anon_sym_BQUOTE, - ACTIONS(5225), 1, - sym_word, - ACTIONS(481), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5227), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(371), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [106966] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 1, - anon_sym_DQUOTE, - ACTIONS(4401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4403), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4405), 1, - anon_sym_BQUOTE, - ACTIONS(5229), 1, - sym_word, - ACTIONS(5231), 1, - anon_sym_DOLLAR, - ACTIONS(4407), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5233), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(838), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107005] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_DQUOTE, - ACTIONS(4304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4308), 1, - anon_sym_BQUOTE, - ACTIONS(5235), 1, - sym_word, ACTIONS(5237), 1, - anon_sym_DOLLAR, - ACTIONS(4310), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5239), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(680), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107044] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(868), 1, - anon_sym_DQUOTE, - ACTIONS(4298), 1, - anon_sym_DOLLAR, - ACTIONS(4304), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4306), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4308), 1, - anon_sym_BQUOTE, - ACTIONS(5235), 1, sym_word, - ACTIONS(4310), 2, + ACTIONS(493), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5239), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(680), 6, + STATE(372), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107083] = 10, + [107007] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(641), 1, + ACTIONS(95), 1, anon_sym_DOLLAR, - ACTIONS(645), 1, + ACTIONS(99), 1, anon_sym_DQUOTE, - ACTIONS(647), 1, + ACTIONS(103), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(649), 1, + ACTIONS(105), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(651), 1, + ACTIONS(107), 1, anon_sym_BQUOTE, ACTIONS(5241), 1, sym_word, - ACTIONS(653), 2, + ACTIONS(109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5243), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(566), 6, + STATE(672), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107122] = 10, + [107046] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 1, + ACTIONS(1721), 1, anon_sym_DQUOTE, - ACTIONS(5135), 1, + ACTIONS(4332), 1, + anon_sym_DOLLAR, + ACTIONS(4338), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5137), 1, + ACTIONS(4340), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5139), 1, + ACTIONS(4342), 1, anon_sym_BQUOTE, ACTIONS(5245), 1, sym_word, - ACTIONS(5247), 1, - anon_sym_DOLLAR, - ACTIONS(5141), 2, + ACTIONS(4344), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5249), 3, + ACTIONS(5247), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(1971), 6, + STATE(1858), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107161] = 10, + [107085] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1771), 1, + ACTIONS(768), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(4310), 1, + anon_sym_DOLLAR, + ACTIONS(4316), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(4318), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(4320), 1, anon_sym_BQUOTE, - ACTIONS(5251), 1, + ACTIONS(5249), 1, + sym_word, + ACTIONS(4322), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5251), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(673), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107124] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(768), 1, + anon_sym_DQUOTE, + ACTIONS(4316), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4318), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4320), 1, + anon_sym_BQUOTE, + ACTIONS(5249), 1, sym_word, ACTIONS(5253), 1, anon_sym_DOLLAR, - ACTIONS(1779), 2, + ACTIONS(4322), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5255), 3, + ACTIONS(5251), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(2244), 6, + STATE(673), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107200] = 10, + [107163] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1747), 1, + ACTIONS(712), 1, anon_sym_DOLLAR, - ACTIONS(1751), 1, + ACTIONS(716), 1, anon_sym_DQUOTE, - ACTIONS(1753), 1, + ACTIONS(718), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, + ACTIONS(720), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, + ACTIONS(722), 1, anon_sym_BQUOTE, - ACTIONS(5257), 1, + ACTIONS(5255), 1, sym_word, - ACTIONS(1759), 2, + ACTIONS(724), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5259), 3, + ACTIONS(5257), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(1911), 6, + STATE(567), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107239] = 10, + [107202] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(213), 1, + ACTIONS(935), 1, anon_sym_DQUOTE, - ACTIONS(217), 1, + ACTIONS(4465), 1, + anon_sym_DOLLAR, + ACTIONS(4471), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(219), 1, + ACTIONS(4473), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(221), 1, + ACTIONS(4475), 1, anon_sym_BQUOTE, - ACTIONS(5261), 1, + ACTIONS(5259), 1, sym_word, + ACTIONS(4477), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5261), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(840), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107241] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1783), 1, + anon_sym_DQUOTE, + ACTIONS(1785), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1789), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1791), 1, + anon_sym_BQUOTE, ACTIONS(5263), 1, + sym_word, + ACTIONS(5265), 1, anon_sym_DOLLAR, - ACTIONS(223), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5265), 3, + ACTIONS(5267), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(460), 6, + STATE(2243), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107278] = 10, + [107280] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 1, - anon_sym_DQUOTE, - ACTIONS(1102), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1104), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1106), 1, - anon_sym_BQUOTE, - ACTIONS(5267), 1, - sym_word, - ACTIONS(5269), 1, + ACTIONS(1759), 1, anon_sym_DOLLAR, - ACTIONS(1108), 2, + ACTIONS(1763), 1, + anon_sym_DQUOTE, + ACTIONS(1765), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1767), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1769), 1, + anon_sym_BQUOTE, + ACTIONS(5269), 1, + sym_word, + ACTIONS(1771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5271), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(755), 6, + STATE(1982), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107317] = 10, + [107319] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, + ACTIONS(219), 1, anon_sym_DQUOTE, - ACTIONS(4318), 1, - anon_sym_DOLLAR, - ACTIONS(4324), 1, + ACTIONS(223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4326), 1, + ACTIONS(225), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4328), 1, + ACTIONS(227), 1, anon_sym_BQUOTE, ACTIONS(5273), 1, sym_word, - ACTIONS(4330), 2, + ACTIONS(5275), 1, + anon_sym_DOLLAR, + ACTIONS(229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5275), 3, + ACTIONS(5277), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(1811), 6, + STATE(462), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107356] = 10, + [107358] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(645), 1, + ACTIONS(716), 1, anon_sym_DQUOTE, - ACTIONS(647), 1, + ACTIONS(718), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(649), 1, + ACTIONS(720), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(651), 1, + ACTIONS(722), 1, anon_sym_BQUOTE, - ACTIONS(5241), 1, + ACTIONS(5255), 1, sym_word, - ACTIONS(5277), 1, - anon_sym_DOLLAR, - ACTIONS(653), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5243), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(566), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107395] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3946), 1, - anon_sym_DQUOTE, - ACTIONS(3997), 1, - anon_sym_DOLLAR, - ACTIONS(4001), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, - anon_sym_BQUOTE, ACTIONS(5279), 1, - sym_word, - ACTIONS(4007), 2, + anon_sym_DOLLAR, + ACTIONS(724), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5281), 3, + ACTIONS(5257), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(567), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107397] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1655), 1, + anon_sym_DQUOTE, + ACTIONS(5157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5161), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + sym_word, + ACTIONS(5283), 1, + anon_sym_DOLLAR, + ACTIONS(5163), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5285), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(2015), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107436] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(5287), 1, + sym_word, + ACTIONS(5289), 1, + anon_sym_DOLLAR, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5291), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(2108), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107475] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3932), 1, + anon_sym_DQUOTE, + ACTIONS(3980), 1, + anon_sym_DOLLAR, + ACTIONS(3984), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3986), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3988), 1, + anon_sym_BQUOTE, + ACTIONS(5293), 1, + sym_word, + ACTIONS(3990), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5295), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -109400,362 +109657,304 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [107434] = 10, + [107514] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(937), 1, + ACTIONS(974), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(976), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(941), 1, + ACTIONS(978), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(943), 1, + ACTIONS(980), 1, anon_sym_BQUOTE, - ACTIONS(5283), 1, + ACTIONS(5297), 1, sym_word, - ACTIONS(5285), 1, - anon_sym_DOLLAR, - ACTIONS(945), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5287), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(652), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107473] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(5289), 1, - sym_word, - ACTIONS(5291), 1, - anon_sym_DOLLAR, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5293), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(2150), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107512] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(91), 1, - anon_sym_DOLLAR, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(103), 1, - anon_sym_BQUOTE, - ACTIONS(5295), 1, - sym_word, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5297), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(671), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107551] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1596), 1, - anon_sym_DQUOTE, - ACTIONS(5041), 1, - anon_sym_DOLLAR, - ACTIONS(5047), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5049), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5051), 1, - anon_sym_BQUOTE, ACTIONS(5299), 1, - sym_word, - ACTIONS(5053), 2, + anon_sym_DOLLAR, + ACTIONS(982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5301), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(1828), 6, + STATE(657), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107590] = 10, + [107553] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(553), 1, + ACTIONS(1671), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(1689), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(557), 1, + ACTIONS(1691), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(559), 1, + ACTIONS(1693), 1, anon_sym_BQUOTE, ACTIONS(5303), 1, sym_word, ACTIONS(5305), 1, anon_sym_DOLLAR, - ACTIONS(561), 2, + ACTIONS(1695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5307), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(489), 6, + STATE(1819), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107629] = 10, + [107592] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(37), 1, - anon_sym_DOLLAR, - ACTIONS(41), 1, + ACTIONS(1610), 1, anon_sym_DQUOTE, - ACTIONS(45), 1, + ACTIONS(5015), 1, + anon_sym_DOLLAR, + ACTIONS(5021), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(47), 1, + ACTIONS(5023), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(49), 1, + ACTIONS(5025), 1, anon_sym_BQUOTE, ACTIONS(5309), 1, sym_word, - ACTIONS(51), 2, + ACTIONS(5027), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5311), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(661), 6, + STATE(1839), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107668] = 10, + [107631] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5161), 1, - anon_sym_DOLLAR, - ACTIONS(5165), 1, + ACTIONS(525), 1, anon_sym_DQUOTE, - ACTIONS(5169), 1, + ACTIONS(527), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5171), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5173), 1, + ACTIONS(531), 1, anon_sym_BQUOTE, ACTIONS(5313), 1, sym_word, - ACTIONS(5175), 2, + ACTIONS(5315), 1, + anon_sym_DOLLAR, + ACTIONS(533), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5315), 3, + ACTIONS(5317), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(2866), 6, + STATE(491), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107707] = 10, + [107670] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - ACTIONS(5317), 1, - sym_word, - ACTIONS(5319), 1, + ACTIONS(39), 1, anon_sym_DOLLAR, - ACTIONS(1683), 2, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, + anon_sym_BQUOTE, + ACTIONS(5319), 1, + sym_word, + ACTIONS(53), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5321), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(1860), 6, + STATE(681), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107746] = 10, + [107709] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(933), 1, + ACTIONS(970), 1, anon_sym_DOLLAR, - ACTIONS(937), 1, + ACTIONS(974), 1, anon_sym_DQUOTE, - ACTIONS(939), 1, + ACTIONS(976), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(941), 1, + ACTIONS(978), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(943), 1, + ACTIONS(980), 1, anon_sym_BQUOTE, - ACTIONS(5283), 1, + ACTIONS(5297), 1, sym_word, - ACTIONS(945), 2, + ACTIONS(982), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5287), 3, + ACTIONS(5301), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(652), 6, + STATE(657), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107785] = 10, + [107748] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1090), 1, - anon_sym_DQUOTE, - ACTIONS(1098), 1, + ACTIONS(2785), 1, anon_sym_DOLLAR, - ACTIONS(1102), 1, + ACTIONS(2789), 1, + anon_sym_DQUOTE, + ACTIONS(2791), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2793), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, + anon_sym_BQUOTE, + ACTIONS(5287), 1, + sym_word, + ACTIONS(2797), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5291), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(2108), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107787] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5103), 1, + anon_sym_DOLLAR, + ACTIONS(5107), 1, + anon_sym_DQUOTE, + ACTIONS(5111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5113), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5115), 1, + anon_sym_BQUOTE, + ACTIONS(5323), 1, + sym_word, + ACTIONS(5117), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5325), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(2854), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107826] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1655), 1, + anon_sym_DQUOTE, + ACTIONS(5151), 1, + anon_sym_DOLLAR, + ACTIONS(5157), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5159), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5161), 1, + anon_sym_BQUOTE, + ACTIONS(5281), 1, + sym_word, + ACTIONS(5163), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5285), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(2015), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107865] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1051), 1, + anon_sym_DQUOTE, ACTIONS(1104), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1106), 1, - anon_sym_BQUOTE, - ACTIONS(5267), 1, - sym_word, - ACTIONS(1108), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5271), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(755), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107824] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2771), 1, anon_sym_DOLLAR, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(1108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, + ACTIONS(1110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, + ACTIONS(1112), 1, anon_sym_BQUOTE, - ACTIONS(5289), 1, + ACTIONS(5327), 1, sym_word, - ACTIONS(2783), 2, + ACTIONS(1114), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5293), 3, + ACTIONS(5329), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(2150), 6, + STATE(756), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [107863] = 10, + [107904] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1643), 1, - anon_sym_DQUOTE, - ACTIONS(5129), 1, - anon_sym_DOLLAR, - ACTIONS(5135), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5137), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5139), 1, - anon_sym_BQUOTE, - ACTIONS(5245), 1, - sym_word, - ACTIONS(5141), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5249), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(1971), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107902] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5325), 1, + ACTIONS(5333), 1, sym__concat, STATE(2434), 1, aux_sym_concatenation_repeat1, - ACTIONS(5323), 15, + ACTIONS(5331), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -109771,54 +109970,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [107929] = 10, + [107931] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1508), 1, + ACTIONS(631), 1, anon_sym_DQUOTE, - ACTIONS(5067), 1, + ACTIONS(633), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5069), 1, + ACTIONS(635), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5071), 1, + ACTIONS(637), 1, anon_sym_BQUOTE, - ACTIONS(5327), 1, - sym_word, - ACTIONS(5329), 1, - anon_sym_DOLLAR, - ACTIONS(5073), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5331), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(1715), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107968] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(623), 1, - anon_sym_DQUOTE, - ACTIONS(625), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(627), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, - anon_sym_BQUOTE, - ACTIONS(5333), 1, - sym_word, ACTIONS(5335), 1, + sym_word, + ACTIONS(5337), 1, anon_sym_DOLLAR, - ACTIONS(631), 2, + ACTIONS(639), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5337), 3, + ACTIONS(5339), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -109829,159 +109999,217 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108007] = 10, + [107970] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5165), 1, - anon_sym_DQUOTE, - ACTIONS(5169), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5171), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5173), 1, - anon_sym_BQUOTE, - ACTIONS(5313), 1, - sym_word, - ACTIONS(5339), 1, + ACTIONS(4707), 1, anon_sym_DOLLAR, - ACTIONS(5175), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5315), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(2866), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108046] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4698), 1, - anon_sym_DOLLAR, - ACTIONS(4702), 1, + ACTIONS(4711), 1, anon_sym_DQUOTE, - ACTIONS(4706), 1, + ACTIONS(4715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, + ACTIONS(4717), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, + ACTIONS(4719), 1, anon_sym_BQUOTE, ACTIONS(5341), 1, sym_word, - ACTIONS(4712), 2, + ACTIONS(4721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5343), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(3238), 6, + STATE(3239), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108085] = 10, + [108009] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, + ACTIONS(4518), 1, anon_sym_DQUOTE, - ACTIONS(4544), 1, + ACTIONS(4554), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, + ACTIONS(4556), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4548), 1, + ACTIONS(4558), 1, anon_sym_BQUOTE, ACTIONS(5345), 1, sym_word, ACTIONS(5347), 1, anon_sym_DOLLAR, - ACTIONS(4550), 2, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5349), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(2539), 6, + STATE(2567), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108124] = 10, + [108048] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 1, + ACTIONS(5107), 1, anon_sym_DQUOTE, - ACTIONS(1074), 1, - anon_sym_DOLLAR, - ACTIONS(1078), 1, + ACTIONS(5111), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1080), 1, + ACTIONS(5113), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1082), 1, + ACTIONS(5115), 1, anon_sym_BQUOTE, + ACTIONS(5323), 1, + sym_word, ACTIONS(5351), 1, - sym_word, - ACTIONS(1084), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5353), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(798), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108163] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(5061), 1, anon_sym_DOLLAR, - ACTIONS(5067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5069), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5071), 1, - anon_sym_BQUOTE, - ACTIONS(5327), 1, - sym_word, - ACTIONS(5073), 2, + ACTIONS(5117), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5331), 3, + ACTIONS(5325), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(1715), 6, + STATE(2854), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108202] = 4, + [108087] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, + ACTIONS(1527), 1, + anon_sym_DQUOTE, + ACTIONS(5065), 1, + anon_sym_DOLLAR, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5075), 1, + anon_sym_BQUOTE, + ACTIONS(5353), 1, + sym_word, + ACTIONS(5077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5355), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(1700), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108126] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_DQUOTE, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(49), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(51), 1, + anon_sym_BQUOTE, + ACTIONS(5319), 1, + sym_word, + ACTIONS(5357), 1, + anon_sym_DOLLAR, + ACTIONS(53), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5321), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(681), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108165] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + anon_sym_DQUOTE, + ACTIONS(5071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5075), 1, + anon_sym_BQUOTE, + ACTIONS(5353), 1, + sym_word, + ACTIONS(5359), 1, + anon_sym_DOLLAR, + ACTIONS(5077), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5355), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(1700), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108204] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1086), 1, + anon_sym_DOLLAR, + ACTIONS(1090), 1, + anon_sym_DQUOTE, + ACTIONS(1092), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1094), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1096), 1, + anon_sym_BQUOTE, + ACTIONS(5361), 1, + sym_word, + ACTIONS(1098), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5363), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(785), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5365), 1, sym__concat, - STATE(2441), 1, + STATE(2442), 1, aux_sym_concatenation_repeat1, - ACTIONS(1231), 15, + ACTIONS(1218), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -109997,54 +110225,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [108229] = 10, + [108270] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(41), 1, + ACTIONS(2939), 1, anon_sym_DQUOTE, - ACTIONS(45), 1, + ACTIONS(2941), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(47), 1, + ACTIONS(2943), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(49), 1, + ACTIONS(2945), 1, anon_sym_BQUOTE, - ACTIONS(5309), 1, + ACTIONS(5223), 1, sym_word, - ACTIONS(5357), 1, + ACTIONS(5367), 1, anon_sym_DOLLAR, - ACTIONS(51), 2, + ACTIONS(2947), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5311), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(661), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108268] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - ACTIONS(5211), 1, - sym_word, - ACTIONS(5359), 1, - anon_sym_DOLLAR, - ACTIONS(3107), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5215), 3, + ACTIONS(5227), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -110055,54 +110254,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108307] = 10, + [108309] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(549), 1, + ACTIONS(521), 1, anon_sym_DOLLAR, - ACTIONS(553), 1, + ACTIONS(525), 1, anon_sym_DQUOTE, - ACTIONS(555), 1, + ACTIONS(527), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(557), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(559), 1, + ACTIONS(531), 1, anon_sym_BQUOTE, - ACTIONS(5303), 1, + ACTIONS(5313), 1, sym_word, - ACTIONS(561), 2, + ACTIONS(533), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5307), 3, + ACTIONS(5317), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(489), 6, + STATE(491), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108346] = 10, + [108348] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3099), 1, - anon_sym_DQUOTE, - ACTIONS(3101), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, - anon_sym_BQUOTE, - ACTIONS(5211), 1, - sym_word, - ACTIONS(5361), 1, + ACTIONS(2935), 1, anon_sym_DOLLAR, - ACTIONS(3107), 2, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + ACTIONS(5223), 1, + sym_word, + ACTIONS(2947), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5215), 3, + ACTIONS(5227), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -110113,54 +110312,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108385] = 10, + [108387] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3099), 1, + ACTIONS(2789), 1, anon_sym_DQUOTE, - ACTIONS(3101), 1, + ACTIONS(2791), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3103), 1, + ACTIONS(2793), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3105), 1, + ACTIONS(2795), 1, anon_sym_BQUOTE, - ACTIONS(5211), 1, + ACTIONS(5287), 1, sym_word, - ACTIONS(3107), 2, + ACTIONS(5369), 1, + anon_sym_DOLLAR, + ACTIONS(2797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5215), 3, + ACTIONS(5291), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(2268), 6, + STATE(2108), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108424] = 10, + [108426] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3946), 1, + ACTIONS(3932), 1, anon_sym_DQUOTE, - ACTIONS(4001), 1, + ACTIONS(3984), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4003), 1, + ACTIONS(3986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4005), 1, + ACTIONS(3988), 1, anon_sym_BQUOTE, - ACTIONS(5279), 1, + ACTIONS(5293), 1, sym_word, - ACTIONS(5363), 1, + ACTIONS(5371), 1, anon_sym_DOLLAR, - ACTIONS(4007), 2, + ACTIONS(3990), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5281), 3, + ACTIONS(5295), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -110171,14 +110370,72 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [108463] = 4, + [108465] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5365), 1, + ACTIONS(1671), 1, + anon_sym_DQUOTE, + ACTIONS(1685), 1, + anon_sym_DOLLAR, + ACTIONS(1689), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1691), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1693), 1, + anon_sym_BQUOTE, + ACTIONS(5303), 1, + sym_word, + ACTIONS(1695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5307), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(1819), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108504] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, + anon_sym_DQUOTE, + ACTIONS(4451), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4453), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4455), 1, + anon_sym_BQUOTE, + ACTIONS(5373), 1, + sym_word, + ACTIONS(5375), 1, + anon_sym_DOLLAR, + ACTIONS(4457), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5377), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(418), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5379), 1, sym__concat, - STATE(2441), 1, + STATE(2442), 1, aux_sym_concatenation_repeat1, - ACTIONS(1215), 15, + ACTIONS(1211), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -110194,483 +110451,251 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [108490] = 10, + [108570] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(744), 1, + ACTIONS(1527), 1, anon_sym_DQUOTE, - ACTIONS(4482), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4484), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4486), 1, - anon_sym_BQUOTE, - ACTIONS(5368), 1, - sym_word, - ACTIONS(5370), 1, - anon_sym_DOLLAR, - ACTIONS(4488), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5372), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(415), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108529] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1659), 1, - anon_sym_DQUOTE, - ACTIONS(1673), 1, - anon_sym_DOLLAR, - ACTIONS(1677), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1679), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1681), 1, - anon_sym_BQUOTE, - ACTIONS(5317), 1, - sym_word, - ACTIONS(1683), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5321), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(1860), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108568] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2775), 1, - anon_sym_DQUOTE, - ACTIONS(2777), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2779), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2781), 1, - anon_sym_BQUOTE, - ACTIONS(5289), 1, - sym_word, - ACTIONS(5374), 1, - anon_sym_DOLLAR, - ACTIONS(2783), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5293), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(2150), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108607] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1508), 1, - anon_sym_DQUOTE, - ACTIONS(5067), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5069), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(5071), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5073), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5075), 1, anon_sym_BQUOTE, - ACTIONS(5327), 1, + ACTIONS(5353), 1, sym_word, - ACTIONS(5376), 1, + ACTIONS(5382), 1, anon_sym_DOLLAR, - ACTIONS(5073), 2, + ACTIONS(5077), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5331), 3, + ACTIONS(5355), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(1715), 6, + STATE(1700), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108646] = 10, + [108609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4502), 1, - anon_sym_DQUOTE, - ACTIONS(4538), 1, + ACTIONS(5333), 1, + sym__concat, + STATE(2434), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 15, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, anon_sym_DOLLAR, - ACTIONS(4544), 1, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(4546), 1, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [108636] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(161), 1, + anon_sym_DOLLAR, + ACTIONS(165), 1, + anon_sym_DQUOTE, + ACTIONS(169), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(171), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(173), 1, + anon_sym_BQUOTE, + ACTIONS(5384), 1, + sym_word, + ACTIONS(175), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5386), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(380), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108675] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4518), 1, + anon_sym_DQUOTE, ACTIONS(4548), 1, + anon_sym_DOLLAR, + ACTIONS(4554), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4556), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4558), 1, anon_sym_BQUOTE, ACTIONS(5345), 1, sym_word, - ACTIONS(4550), 2, + ACTIONS(4560), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(5349), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(2539), 6, + STATE(2567), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108685] = 10, + [108714] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(153), 1, - anon_sym_DOLLAR, - ACTIONS(157), 1, + ACTIONS(1763), 1, anon_sym_DQUOTE, - ACTIONS(161), 1, + ACTIONS(1765), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(163), 1, + ACTIONS(1767), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(165), 1, + ACTIONS(1769), 1, anon_sym_BQUOTE, - ACTIONS(5378), 1, - sym_word, - ACTIONS(167), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5380), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(379), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5325), 1, - sym__concat, - STATE(2434), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [108751] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1751), 1, - anon_sym_DQUOTE, - ACTIONS(1753), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1755), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1757), 1, - anon_sym_BQUOTE, - ACTIONS(5257), 1, - sym_word, - ACTIONS(5382), 1, - anon_sym_DOLLAR, - ACTIONS(1759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5259), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(1911), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108790] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(95), 1, - anon_sym_DQUOTE, - ACTIONS(99), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(101), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(103), 1, - anon_sym_BQUOTE, - ACTIONS(5295), 1, - sym_word, - ACTIONS(5384), 1, - anon_sym_DOLLAR, - ACTIONS(105), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5297), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(671), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108829] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(770), 1, - anon_sym_DQUOTE, - ACTIONS(772), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(774), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(776), 1, - anon_sym_BQUOTE, - ACTIONS(5386), 1, + ACTIONS(5269), 1, sym_word, ACTIONS(5388), 1, anon_sym_DOLLAR, - ACTIONS(778), 2, + ACTIONS(1771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5390), 3, + ACTIONS(5271), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(397), 6, + STATE(1982), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108868] = 10, + [108753] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(898), 1, + ACTIONS(99), 1, anon_sym_DQUOTE, - ACTIONS(4350), 1, - anon_sym_DOLLAR, - ACTIONS(4356), 1, + ACTIONS(103), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4358), 1, + ACTIONS(105), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4360), 1, + ACTIONS(107), 1, anon_sym_BQUOTE, + ACTIONS(5241), 1, + sym_word, + ACTIONS(5390), 1, + anon_sym_DOLLAR, + ACTIONS(109), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5243), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(672), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108792] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2939), 1, + anon_sym_DQUOTE, + ACTIONS(2941), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2943), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2945), 1, + anon_sym_BQUOTE, + ACTIONS(5223), 1, + sym_word, ACTIONS(5392), 1, - sym_word, - ACTIONS(4362), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5394), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(840), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108907] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(209), 1, anon_sym_DOLLAR, - ACTIONS(213), 1, - anon_sym_DQUOTE, - ACTIONS(217), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(219), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(221), 1, - anon_sym_BQUOTE, - ACTIONS(5261), 1, - sym_word, - ACTIONS(223), 2, + ACTIONS(2947), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5265), 3, + ACTIONS(5227), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(460), 6, + STATE(2268), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108946] = 10, + [108831] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1596), 1, + ACTIONS(776), 1, anon_sym_DQUOTE, - ACTIONS(5047), 1, + ACTIONS(790), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5049), 1, + ACTIONS(792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5051), 1, + ACTIONS(794), 1, anon_sym_BQUOTE, - ACTIONS(5299), 1, + ACTIONS(5394), 1, sym_word, ACTIONS(5396), 1, anon_sym_DOLLAR, - ACTIONS(5053), 2, + ACTIONS(796), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5301), 3, + ACTIONS(5398), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(1828), 6, + STATE(392), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [108985] = 10, + [108870] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1701), 1, + ACTIONS(1033), 1, anon_sym_DQUOTE, - ACTIONS(4324), 1, + ACTIONS(4398), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4326), 1, + ACTIONS(4400), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4328), 1, + ACTIONS(4402), 1, anon_sym_BQUOTE, - ACTIONS(5273), 1, - sym_word, - ACTIONS(5398), 1, - anon_sym_DOLLAR, - ACTIONS(4330), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5275), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(1811), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109024] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4702), 1, - anon_sym_DQUOTE, - ACTIONS(4706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4710), 1, - anon_sym_BQUOTE, - ACTIONS(5341), 1, - sym_word, ACTIONS(5400), 1, - anon_sym_DOLLAR, - ACTIONS(4712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5343), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(3238), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109063] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(157), 1, - anon_sym_DQUOTE, - ACTIONS(161), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(163), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(165), 1, - anon_sym_BQUOTE, - ACTIONS(5378), 1, sym_word, ACTIONS(5402), 1, anon_sym_DOLLAR, - ACTIONS(167), 2, + ACTIONS(4404), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5380), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(379), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109102] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1027), 1, - anon_sym_DQUOTE, - ACTIONS(4395), 1, - anon_sym_DOLLAR, - ACTIONS(4401), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4403), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4405), 1, - anon_sym_BQUOTE, - ACTIONS(5229), 1, - sym_word, - ACTIONS(4407), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5233), 3, + ACTIONS(5404), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -110681,25 +110706,257 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109141] = 10, + [108909] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(619), 1, - anon_sym_DOLLAR, - ACTIONS(623), 1, + ACTIONS(1051), 1, anon_sym_DQUOTE, - ACTIONS(625), 1, + ACTIONS(1108), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(627), 1, + ACTIONS(1110), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(629), 1, + ACTIONS(1112), 1, anon_sym_BQUOTE, - ACTIONS(5333), 1, + ACTIONS(5327), 1, sym_word, - ACTIONS(631), 2, + ACTIONS(5406), 1, + anon_sym_DOLLAR, + ACTIONS(1114), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5337), 3, + ACTIONS(5329), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(756), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108948] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 1, + anon_sym_DOLLAR, + ACTIONS(219), 1, + anon_sym_DQUOTE, + ACTIONS(223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(225), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(227), 1, + anon_sym_BQUOTE, + ACTIONS(5273), 1, + sym_word, + ACTIONS(229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5277), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(462), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108987] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1610), 1, + anon_sym_DQUOTE, + ACTIONS(5021), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5023), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5025), 1, + anon_sym_BQUOTE, + ACTIONS(5309), 1, + sym_word, + ACTIONS(5408), 1, + anon_sym_DOLLAR, + ACTIONS(5027), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5311), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(1839), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109026] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1721), 1, + anon_sym_DQUOTE, + ACTIONS(4338), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4340), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4342), 1, + anon_sym_BQUOTE, + ACTIONS(5245), 1, + sym_word, + ACTIONS(5410), 1, + anon_sym_DOLLAR, + ACTIONS(4344), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5247), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(1858), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109065] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4711), 1, + anon_sym_DQUOTE, + ACTIONS(4715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4717), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4719), 1, + anon_sym_BQUOTE, + ACTIONS(5341), 1, + sym_word, + ACTIONS(5412), 1, + anon_sym_DOLLAR, + ACTIONS(4721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5343), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(3239), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109104] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1090), 1, + anon_sym_DQUOTE, + ACTIONS(1092), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1094), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1096), 1, + anon_sym_BQUOTE, + ACTIONS(5361), 1, + sym_word, + ACTIONS(5414), 1, + anon_sym_DOLLAR, + ACTIONS(1098), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5363), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(785), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109143] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, + anon_sym_DQUOTE, + ACTIONS(4445), 1, + anon_sym_DOLLAR, + ACTIONS(4451), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4453), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4455), 1, + anon_sym_BQUOTE, + ACTIONS(5373), 1, + sym_word, + ACTIONS(4457), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5377), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(418), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109182] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1033), 1, + anon_sym_DQUOTE, + ACTIONS(4392), 1, + anon_sym_DOLLAR, + ACTIONS(4398), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4400), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4402), 1, + anon_sym_BQUOTE, + ACTIONS(5400), 1, + sym_word, + ACTIONS(4404), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5404), 3, + sym__special_character, + sym_raw_string, + sym_ansii_c_string, + STATE(838), 6, + sym_string, + sym_simple_expansion, + sym_string_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109221] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(627), 1, + anon_sym_DOLLAR, + ACTIONS(631), 1, + anon_sym_DQUOTE, + ACTIONS(633), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(635), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(637), 1, + anon_sym_BQUOTE, + ACTIONS(5335), 1, + sym_word, + ACTIONS(639), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5339), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -110710,83 +110967,54 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109180] = 10, + [109260] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1062), 1, + ACTIONS(165), 1, anon_sym_DQUOTE, - ACTIONS(1078), 1, + ACTIONS(169), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1080), 1, + ACTIONS(171), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1082), 1, + ACTIONS(173), 1, anon_sym_BQUOTE, - ACTIONS(5351), 1, + ACTIONS(5384), 1, sym_word, - ACTIONS(5404), 1, + ACTIONS(5416), 1, anon_sym_DOLLAR, - ACTIONS(1084), 2, + ACTIONS(175), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5353), 3, + ACTIONS(5386), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(798), 6, + STATE(380), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [109219] = 10, + [109299] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(744), 1, + ACTIONS(935), 1, anon_sym_DQUOTE, - ACTIONS(4476), 1, - anon_sym_DOLLAR, - ACTIONS(4482), 1, + ACTIONS(4471), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4484), 1, + ACTIONS(4473), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4486), 1, + ACTIONS(4475), 1, anon_sym_BQUOTE, - ACTIONS(5368), 1, + ACTIONS(5259), 1, sym_word, - ACTIONS(4488), 2, + ACTIONS(5418), 1, + anon_sym_DOLLAR, + ACTIONS(4477), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5372), 3, - sym__special_character, - sym_raw_string, - sym_ansii_c_string, - STATE(415), 6, - sym_string, - sym_simple_expansion, - sym_string_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109258] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(898), 1, - anon_sym_DQUOTE, - ACTIONS(4356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4358), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4360), 1, - anon_sym_BQUOTE, - ACTIONS(5392), 1, - sym_word, - ACTIONS(5406), 1, - anon_sym_DOLLAR, - ACTIONS(4362), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5394), 3, + ACTIONS(5261), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, @@ -110797,99 +111025,99 @@ static const uint16_t ts_small_parse_table[] = { sym_expansion, sym_command_substitution, sym_process_substitution, - [109297] = 10, + [109338] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(766), 1, - anon_sym_DOLLAR, - ACTIONS(770), 1, - anon_sym_DQUOTE, - ACTIONS(772), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(774), 1, - anon_sym_DOLLAR_LPAREN, ACTIONS(776), 1, + anon_sym_DQUOTE, + ACTIONS(786), 1, + anon_sym_DOLLAR, + ACTIONS(790), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(792), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(794), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, + ACTIONS(5394), 1, sym_word, - ACTIONS(778), 2, + ACTIONS(796), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5390), 3, + ACTIONS(5398), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(397), 6, + STATE(392), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [109336] = 10, + [109377] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(473), 1, + ACTIONS(485), 1, anon_sym_DQUOTE, - ACTIONS(475), 1, + ACTIONS(487), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(477), 1, + ACTIONS(489), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(479), 1, + ACTIONS(491), 1, anon_sym_BQUOTE, - ACTIONS(5225), 1, + ACTIONS(5237), 1, sym_word, - ACTIONS(5408), 1, + ACTIONS(5420), 1, anon_sym_DOLLAR, - ACTIONS(481), 2, + ACTIONS(493), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5227), 3, + ACTIONS(5239), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(371), 6, + STATE(372), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [109375] = 10, + [109416] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1767), 1, + ACTIONS(1779), 1, anon_sym_DOLLAR, - ACTIONS(1771), 1, + ACTIONS(1783), 1, anon_sym_DQUOTE, - ACTIONS(1773), 1, + ACTIONS(1785), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1775), 1, + ACTIONS(1789), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1777), 1, + ACTIONS(1791), 1, anon_sym_BQUOTE, - ACTIONS(5251), 1, + ACTIONS(5263), 1, sym_word, - ACTIONS(1779), 2, + ACTIONS(1793), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5255), 3, + ACTIONS(5267), 3, sym__special_character, sym_raw_string, sym_ansii_c_string, - STATE(2244), 6, + STATE(2243), 6, sym_string, sym_simple_expansion, sym_string_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [109414] = 3, + [109455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 1, + ACTIONS(1286), 1, sym__concat, - ACTIONS(1251), 15, + ACTIONS(1284), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -110905,12 +111133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109438] = 3, + [109479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1428), 1, + ACTIONS(1290), 1, sym__concat, - ACTIONS(1426), 15, + ACTIONS(1288), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -110926,12 +111154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109462] = 3, + [109503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 1, + ACTIONS(1360), 1, sym__concat, - ACTIONS(1348), 15, + ACTIONS(1358), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -110947,12 +111175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109486] = 3, + [109527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1217), 1, + ACTIONS(1213), 1, sym__concat, - ACTIONS(1215), 15, + ACTIONS(1211), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -110968,12 +111196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109510] = 3, + [109551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 1, + ACTIONS(1382), 1, sym__concat, - ACTIONS(1310), 15, + ACTIONS(1380), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -110989,12 +111217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109534] = 3, + [109575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 1, + ACTIONS(1326), 1, sym__concat, - ACTIONS(1362), 15, + ACTIONS(1324), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111010,12 +111238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109558] = 3, + [109599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 1, + ACTIONS(1265), 1, sym__concat, - ACTIONS(1374), 15, + ACTIONS(1263), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111031,12 +111259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109582] = 3, + [109623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1380), 1, + ACTIONS(1396), 1, sym__concat, - ACTIONS(1378), 15, + ACTIONS(1394), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111052,12 +111280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109606] = 3, + [109647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 1, + ACTIONS(1352), 1, sym__concat, - ACTIONS(1344), 15, + ACTIONS(1350), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111073,14 +111301,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109630] = 4, + [109671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5410), 1, + ACTIONS(1443), 1, + sym__concat, + ACTIONS(1441), 15, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, sym__special_character, - STATE(2475), 1, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [109695] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5422), 1, + sym__special_character, + STATE(2476), 1, aux_sym__literal_repeat1, - ACTIONS(1355), 14, + ACTIONS(1369), 14, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111095,12 +111344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109656] = 3, + [109721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 1, + ACTIONS(1451), 1, sym__concat, - ACTIONS(1430), 15, + ACTIONS(1449), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111116,12 +111365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109680] = 3, + [109745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, + ACTIONS(1348), 1, sym__concat, - ACTIONS(1340), 15, + ACTIONS(1346), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111137,12 +111386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109704] = 3, + [109769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 1, + ACTIONS(1322), 1, sym__concat, - ACTIONS(1306), 15, + ACTIONS(1320), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111158,12 +111407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109728] = 3, + [109793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1436), 1, + ACTIONS(1318), 1, sym__concat, - ACTIONS(1434), 15, + ACTIONS(1316), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111179,12 +111428,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109752] = 3, + [109817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 1, + ACTIONS(1455), 1, sym__concat, - ACTIONS(1302), 15, + ACTIONS(1453), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111200,12 +111449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109776] = 3, + [109841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1440), 1, + ACTIONS(1314), 1, sym__concat, - ACTIONS(1438), 15, + ACTIONS(1312), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111221,12 +111470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109800] = 3, + [109865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1300), 1, + ACTIONS(1348), 1, sym__concat, - ACTIONS(1298), 15, + ACTIONS(1346), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111242,12 +111491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109824] = 3, + [109889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, + ACTIONS(1310), 1, sym__concat, - ACTIONS(1340), 15, + ACTIONS(1308), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111263,12 +111512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109848] = 3, + [109913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 1, + ACTIONS(1427), 1, sym__concat, - ACTIONS(1294), 15, + ACTIONS(1425), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111284,12 +111533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109872] = 3, + [109937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1446), 1, + ACTIONS(1378), 1, sym__concat, - ACTIONS(1444), 15, + ACTIONS(1376), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111305,12 +111554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109896] = 3, + [109961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 1, + ACTIONS(1330), 1, sym__concat, - ACTIONS(1290), 15, + ACTIONS(1328), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111326,12 +111575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109920] = 3, + [109985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 1, + ACTIONS(1294), 1, sym__concat, - ACTIONS(1270), 15, + ACTIONS(1292), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111347,56 +111596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [109944] = 3, + [110009] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 1, - sym__concat, - ACTIONS(1274), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, + ACTIONS(5427), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [109968] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 1, - sym__concat, - ACTIONS(1278), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [109992] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5415), 1, - sym__special_character, - STATE(2475), 1, + STATE(2476), 1, aux_sym__literal_repeat1, - ACTIONS(5413), 14, + ACTIONS(5425), 14, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111411,12 +111618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [110018] = 3, + [110035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1284), 1, + ACTIONS(1298), 1, sym__concat, - ACTIONS(1282), 15, + ACTIONS(1296), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111432,12 +111639,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [110042] = 3, + [110059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 1, + ACTIONS(1302), 1, sym__concat, - ACTIONS(1314), 15, + ACTIONS(1300), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111453,12 +111660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [110066] = 3, + [110083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1306), 1, sym__concat, - ACTIONS(1286), 15, + ACTIONS(1304), 15, anon_sym_LF, anon_sym_SEMI, anon_sym_SEMI_SEMI, @@ -111474,68 +111681,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, sym_word, anon_sym_AMP, - [110090] = 8, + [110107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, + ACTIONS(1269), 1, + sym__concat, + ACTIONS(1267), 15, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1735), 1, sym_raw_string, - ACTIONS(1737), 1, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [110131] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1745), 1, + anon_sym_DQUOTE, + ACTIONS(1747), 1, + sym_raw_string, + ACTIONS(1749), 1, aux_sym__simple_variable_name_token1, - STATE(2315), 1, + STATE(2095), 1, sym_string, - ACTIONS(545), 2, - sym__concat, - anon_sym_RBRACK, - ACTIONS(1729), 2, - anon_sym_0, - anon_sym__, - ACTIONS(1731), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [110123] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1195), 15, - anon_sym_LF, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - anon_sym_AMP, - [110144] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1723), 1, - anon_sym_DQUOTE, - ACTIONS(1725), 1, - sym_raw_string, - ACTIONS(1727), 1, - aux_sym__simple_variable_name_token1, - STATE(2141), 1, - sym_string, - ACTIONS(545), 2, + ACTIONS(555), 2, anon_sym_PIPE, anon_sym_RPAREN, - ACTIONS(1719), 2, + ACTIONS(1741), 2, anon_sym_0, anon_sym__, - ACTIONS(1721), 7, + ACTIONS(1743), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -111543,86 +111727,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [110177] = 5, + [110164] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 1, - sym_word, - ACTIONS(5417), 1, - sym__concat, - STATE(2498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1231), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1735), 1, anon_sym_DQUOTE, + ACTIONS(1737), 1, sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [110203] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - sym_word, - ACTIONS(5419), 1, - sym__concat, - STATE(2498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [110229] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1197), 1, - sym_word, - ACTIONS(5422), 1, - sym__concat, - STATE(2497), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [110255] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(545), 1, - anon_sym_RBRACE, - ACTIONS(5426), 1, - anon_sym_DQUOTE, - ACTIONS(5428), 1, - sym_raw_string, - ACTIONS(5430), 1, + ACTIONS(1739), 1, aux_sym__simple_variable_name_token1, - STATE(3260), 1, + STATE(2306), 1, sym_string, - ACTIONS(5432), 2, + ACTIONS(555), 2, + sym__concat, + anon_sym_RBRACK, + ACTIONS(1731), 2, anon_sym_0, anon_sym__, - ACTIONS(5424), 7, + ACTIONS(1733), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -111630,16 +111752,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [110287] = 5, + [110197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5422), 1, + ACTIONS(1227), 15, + anon_sym_LF, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + anon_sym_AMP, + [110218] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 1, + sym_word, + ACTIONS(5429), 1, sym__concat, + STATE(2498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [110244] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + sym_word, + ACTIONS(5431), 1, + sym__concat, + STATE(2498), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [110270] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_word, ACTIONS(5434), 1, + sym__concat, + STATE(2497), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [110296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5434), 1, + sym__concat, + ACTIONS(5436), 1, sym_word, STATE(2497), 1, aux_sym_concatenation_repeat1, - ACTIONS(5323), 11, + ACTIONS(5331), 11, anon_sym_RPAREN, anon_sym_DOLLAR, sym__special_character, @@ -111651,48 +111855,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110313] = 8, + [110322] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, + ACTIONS(555), 1, anon_sym_RBRACE, + ACTIONS(5440), 1, + anon_sym_DQUOTE, ACTIONS(5442), 1, + sym_raw_string, + ACTIONS(5444), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5446), 1, - sym_variable_name, - STATE(1174), 1, - sym_subscript, - ACTIONS(5438), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5444), 2, + STATE(3250), 1, + sym_string, + ACTIONS(5446), 2, anon_sym_0, anon_sym__, - ACTIONS(5440), 5, + ACTIONS(5438), 7, + anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [110344] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 2, - sym__concat, - sym_word, - ACTIONS(1306), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [110365] = 8, + [110354] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5448), 1, @@ -111701,7 +111888,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, ACTIONS(5458), 1, sym_variable_name, - STATE(1173), 1, + STATE(1175), 1, sym_subscript, ACTIONS(5450), 2, anon_sym_BANG, @@ -111715,157 +111902,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [110396] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1647), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5462), 1, - anon_sym_DQUOTE, - ACTIONS(5464), 1, - sym_raw_string, - STATE(1965), 1, - sym_string, - ACTIONS(1641), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5460), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [110425] = 8, + [110385] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(5460), 1, + anon_sym_RBRACE, ACTIONS(5466), 1, - anon_sym_RBRACE, - ACTIONS(5472), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5476), 1, + ACTIONS(5470), 1, sym_variable_name, - STATE(939), 1, + STATE(1150), 1, sym_subscript, + ACTIONS(5462), 2, + anon_sym_BANG, + anon_sym_POUND, ACTIONS(5468), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5474), 2, anon_sym_0, anon_sym__, - ACTIONS(5470), 5, + ACTIONS(5464), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [110456] = 8, + [110416] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(5472), 1, + anon_sym_RBRACE, ACTIONS(5478), 1, - anon_sym_RBRACE, - ACTIONS(5484), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5488), 1, + ACTIONS(5482), 1, sym_variable_name, - STATE(1099), 1, + STATE(1174), 1, sym_subscript, + ACTIONS(5474), 2, + anon_sym_BANG, + anon_sym_POUND, ACTIONS(5480), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5486), 2, anon_sym_0, anon_sym__, - ACTIONS(5482), 5, + ACTIONS(5476), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [110487] = 7, + [110447] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(953), 1, + ACTIONS(5484), 1, + anon_sym_RBRACE, + ACTIONS(5490), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5492), 1, - anon_sym_DQUOTE, ACTIONS(5494), 1, - sym_raw_string, - STATE(647), 1, - sym_string, - ACTIONS(949), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5490), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [110516] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5496), 1, - anon_sym_RBRACE, - ACTIONS(5502), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5506), 1, sym_variable_name, - STATE(1090), 1, + STATE(1156), 1, sym_subscript, - ACTIONS(5498), 2, + ACTIONS(5486), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5504), 2, + ACTIONS(5492), 2, anon_sym_0, anon_sym__, - ACTIONS(5500), 5, + ACTIONS(5488), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [110547] = 8, + [110478] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5508), 1, - anon_sym_RBRACE, - ACTIONS(5514), 1, + ACTIONS(1659), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5518), 1, - sym_variable_name, - STATE(944), 1, - sym_subscript, - ACTIONS(5510), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5516), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5512), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [110578] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5221), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5522), 1, + ACTIONS(5498), 1, anon_sym_DQUOTE, - ACTIONS(5524), 1, + ACTIONS(5500), 1, sym_raw_string, - STATE(2849), 1, + STATE(2006), 1, sym_string, - ACTIONS(5217), 2, + ACTIONS(1653), 2, anon_sym_0, anon_sym__, - ACTIONS(5520), 7, + ACTIONS(5496), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -111873,41 +111993,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [110607] = 8, + [110507] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5526), 1, + ACTIONS(5502), 1, anon_sym_RBRACE, - ACTIONS(5532), 1, + ACTIONS(5508), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5536), 1, + ACTIONS(5512), 1, sym_variable_name, - STATE(1042), 1, + STATE(1029), 1, sym_subscript, - ACTIONS(5528), 2, + ACTIONS(5504), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5534), 2, + ACTIONS(5510), 2, anon_sym_0, anon_sym__, - ACTIONS(5530), 5, + ACTIONS(5506), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [110638] = 7, + [110538] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(827), 1, + ACTIONS(5514), 1, + anon_sym_RBRACE, + ACTIONS(5520), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5524), 1, + sym_variable_name, + STATE(1100), 1, + sym_subscript, + ACTIONS(5516), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5522), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5518), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [110569] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1531), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5528), 1, + anon_sym_DQUOTE, + ACTIONS(5530), 1, + sym_raw_string, + STATE(1694), 1, + sym_string, + ACTIONS(1525), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5526), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [110598] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1153), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5534), 1, + anon_sym_DQUOTE, + ACTIONS(5536), 1, + sym_raw_string, + STATE(760), 1, + sym_string, + ACTIONS(1149), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5532), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [110627] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1037), 1, aux_sym__simple_variable_name_token1, ACTIONS(5540), 1, anon_sym_DQUOTE, ACTIONS(5542), 1, sym_raw_string, - STATE(632), 1, + STATE(844), 1, sym_string, - ACTIONS(823), 2, + ACTIONS(1031), 2, anon_sym_0, anon_sym__, ACTIONS(5538), 7, @@ -111918,7 +112105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [110667] = 8, + [110656] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5544), 1, @@ -111927,7 +112114,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, ACTIONS(5554), 1, sym_variable_name, - STATE(1154), 1, + STATE(1137), 1, sym_subscript, ACTIONS(5546), 2, anon_sym_BANG, @@ -111941,18 +112128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [110698] = 7, + [110687] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1600), 1, + ACTIONS(853), 1, aux_sym__simple_variable_name_token1, ACTIONS(5558), 1, anon_sym_DQUOTE, ACTIONS(5560), 1, sym_raw_string, - STATE(1841), 1, + STATE(633), 1, sym_string, - ACTIONS(1594), 2, + ACTIONS(849), 2, anon_sym_0, anon_sym__, ACTIONS(5556), 7, @@ -111963,7 +112150,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [110727] = 8, + [110716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 2, + sym__concat, + sym_word, + ACTIONS(1288), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [110737] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5562), 1, @@ -111972,7 +112177,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, ACTIONS(5572), 1, sym_variable_name, - STATE(1074), 1, + STATE(936), 1, sym_subscript, ACTIONS(5564), 2, anon_sym_BANG, @@ -111986,150 +112191,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [110758] = 5, + [110768] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5574), 1, - sym_word, - ACTIONS(5576), 1, - sym__special_character, - STATE(2547), 1, - aux_sym__literal_repeat1, - ACTIONS(5413), 10, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [110783] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(992), 1, - aux_sym__simple_variable_name_token1, + anon_sym_RBRACE, ACTIONS(5580), 1, - anon_sym_DQUOTE, - ACTIONS(5582), 1, - sym_raw_string, - STATE(572), 1, - sym_string, - ACTIONS(988), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5578), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [110812] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5584), 1, - anon_sym_RBRACE, - ACTIONS(5590), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5594), 1, + ACTIONS(5584), 1, sym_variable_name, - STATE(1028), 1, + STATE(1059), 1, sym_subscript, - ACTIONS(5586), 2, + ACTIONS(5576), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5592), 2, + ACTIONS(5582), 2, anon_sym_0, anon_sym__, - ACTIONS(5588), 5, + ACTIONS(5578), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [110843] = 8, + [110799] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5596), 1, + ACTIONS(702), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5588), 1, + anon_sym_DQUOTE, + ACTIONS(5590), 1, + sym_raw_string, + STATE(386), 1, + sym_string, + ACTIONS(696), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5586), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [110828] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5592), 1, anon_sym_RBRACE, + ACTIONS(5598), 1, + aux_sym__simple_variable_name_token1, ACTIONS(5602), 1, + sym_variable_name, + STATE(916), 1, + sym_subscript, + ACTIONS(5594), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5600), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5596), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [110859] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(780), 1, aux_sym__simple_variable_name_token1, ACTIONS(5606), 1, - sym_variable_name, - STATE(1120), 1, - sym_subscript, - ACTIONS(5598), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5604), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5600), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [110874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 2, - sym__concat, - sym_word, - ACTIONS(1426), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [110895] = 8, - ACTIONS(3), 1, - sym_comment, ACTIONS(5608), 1, - anon_sym_RBRACE, - ACTIONS(5614), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5618), 1, - sym_variable_name, - STATE(1079), 1, - sym_subscript, - ACTIONS(5610), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5616), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5612), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [110926] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1512), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5622), 1, - anon_sym_DQUOTE, - ACTIONS(5624), 1, sym_raw_string, - STATE(1723), 1, + STATE(397), 1, sym_string, - ACTIONS(1506), 2, + ACTIONS(774), 2, anon_sym_0, anon_sym__, - ACTIONS(5620), 7, + ACTIONS(5604), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -112137,83 +112281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [110955] = 8, + [110888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5626), 1, - anon_sym_RBRACE, - ACTIONS(5632), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5636), 1, - sym_variable_name, - STATE(925), 1, - sym_subscript, - ACTIONS(5628), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5634), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5630), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [110986] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1066), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5640), 1, - anon_sym_DQUOTE, - ACTIONS(5642), 1, - sym_raw_string, - STATE(762), 1, - sym_string, - ACTIONS(1060), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5638), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111015] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1031), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5646), 1, - anon_sym_DQUOTE, - ACTIONS(5648), 1, - sym_raw_string, - STATE(843), 1, - sym_string, - ACTIONS(1025), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5644), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1446), 2, - sym__concat, + ACTIONS(1374), 1, sym_word, - ACTIONS(1444), 11, + ACTIONS(5610), 1, + sym__special_character, + STATE(2520), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 10, anon_sym_RPAREN, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, sym_raw_string, sym_ansii_c_string, @@ -112222,44 +112301,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111065] = 8, + [110913] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5650), 1, + ACTIONS(5613), 1, anon_sym_RBRACE, - ACTIONS(5656), 1, + ACTIONS(5619), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5660), 1, + ACTIONS(5623), 1, sym_variable_name, - STATE(1122), 1, + STATE(1087), 1, sym_subscript, - ACTIONS(5652), 2, + ACTIONS(5615), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5658), 2, + ACTIONS(5621), 2, anon_sym_0, anon_sym__, - ACTIONS(5654), 5, + ACTIONS(5617), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [111096] = 7, + [110944] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 1, + ACTIONS(5625), 1, + anon_sym_RBRACE, + ACTIONS(5631), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5664), 1, + ACTIONS(5635), 1, + sym_variable_name, + STATE(1118), 1, + sym_subscript, + ACTIONS(5627), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5633), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5629), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [110975] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5639), 1, anon_sym_DQUOTE, - ACTIONS(5666), 1, + ACTIONS(5641), 1, + sym_raw_string, + STATE(620), 1, + sym_string, + ACTIONS(1043), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5637), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [111004] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5643), 1, + anon_sym_RBRACE, + ACTIONS(5649), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5653), 1, + sym_variable_name, + STATE(921), 1, + sym_subscript, + ACTIONS(5645), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5651), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5647), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [111035] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3820), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5657), 1, + anon_sym_DQUOTE, + ACTIONS(5659), 1, sym_raw_string, STATE(2237), 1, sym_string, - ACTIONS(3804), 2, + ACTIONS(3816), 2, anon_sym_0, anon_sym__, - ACTIONS(5662), 7, + ACTIONS(5655), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -112267,66 +112414,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [111125] = 8, + [111064] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5668), 1, - anon_sym_RBRACE, - ACTIONS(5674), 1, + ACTIONS(900), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5678), 1, - sym_variable_name, - STATE(1115), 1, - sym_subscript, - ACTIONS(5670), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5676), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5672), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [111156] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5426), 1, + ACTIONS(5663), 1, anon_sym_DQUOTE, - ACTIONS(5428), 1, + ACTIONS(5665), 1, sym_raw_string, - ACTIONS(5430), 1, - aux_sym__simple_variable_name_token1, - STATE(3260), 1, - sym_string, - ACTIONS(5432), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5424), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111185] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(902), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5682), 1, - anon_sym_DQUOTE, - ACTIONS(5684), 1, - sym_raw_string, - STATE(830), 1, + STATE(655), 1, sym_string, ACTIONS(896), 2, anon_sym_0, anon_sym__, - ACTIONS(5680), 7, + ACTIONS(5661), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -112334,456 +112436,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [111214] = 3, + [111093] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1253), 2, - sym__concat, - sym_word, - ACTIONS(1251), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [111235] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5686), 1, + ACTIONS(5667), 1, anon_sym_RBRACE, - ACTIONS(5692), 1, + ACTIONS(5673), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5696), 1, - sym_variable_name, - STATE(1009), 1, - sym_subscript, - ACTIONS(5688), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5694), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5690), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [111266] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(872), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5700), 1, - anon_sym_DQUOTE, - ACTIONS(5702), 1, - sym_raw_string, - STATE(666), 1, - sym_string, - ACTIONS(866), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5698), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111295] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5704), 1, - anon_sym_RBRACE, - ACTIONS(5710), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5714), 1, - sym_variable_name, - STATE(943), 1, - sym_subscript, - ACTIONS(5706), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5712), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5708), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [111326] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(748), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5718), 1, - anon_sym_DQUOTE, - ACTIONS(5720), 1, - sym_raw_string, - STATE(409), 1, - sym_string, - ACTIONS(742), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5716), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111355] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1689), 1, - anon_sym_DQUOTE, - ACTIONS(1691), 1, - sym_raw_string, - ACTIONS(1693), 1, - aux_sym__simple_variable_name_token1, - STATE(1959), 1, - sym_string, - ACTIONS(1685), 2, - anon_sym_0, - anon_sym__, - ACTIONS(1687), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111384] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 2, - sym__concat, - sym_word, - ACTIONS(1215), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [111405] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5722), 1, - anon_sym_RBRACE, - ACTIONS(5728), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5732), 1, - sym_variable_name, - STATE(1135), 1, - sym_subscript, - ACTIONS(5724), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5730), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5726), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [111436] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5734), 1, - anon_sym_RBRACE, - ACTIONS(5740), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5744), 1, - sym_variable_name, - STATE(916), 1, - sym_subscript, - ACTIONS(5736), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5742), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5738), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [111467] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(815), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5748), 1, - anon_sym_DQUOTE, - ACTIONS(5750), 1, - sym_raw_string, - STATE(384), 1, - sym_string, - ACTIONS(811), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5746), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111496] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 2, - sym__concat, - sym_word, - ACTIONS(1438), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [111517] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5752), 1, - anon_sym_RBRACE, - ACTIONS(5758), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5762), 1, - sym_variable_name, - STATE(1170), 1, - sym_subscript, - ACTIONS(5754), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5760), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5756), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [111548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 2, - sym__concat, - sym_word, - ACTIONS(1434), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [111569] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4506), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5766), 1, - anon_sym_DQUOTE, - ACTIONS(5768), 1, - sym_raw_string, - STATE(2521), 1, - sym_string, - ACTIONS(4500), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5764), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111598] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1360), 1, - sym_word, - ACTIONS(5770), 1, - sym__special_character, - STATE(2547), 1, - aux_sym__literal_repeat1, - ACTIONS(1355), 10, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [111623] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5773), 1, - anon_sym_RBRACE, - ACTIONS(5779), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5783), 1, - sym_variable_name, - STATE(1106), 1, - sym_subscript, - ACTIONS(5775), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5781), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5777), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [111654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1432), 2, - sym__concat, - sym_word, - ACTIONS(1430), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [111675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 2, - sym__concat, - sym_word, - ACTIONS(1378), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [111696] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(892), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5787), 1, - anon_sym_DQUOTE, - ACTIONS(5789), 1, - sym_raw_string, - STATE(620), 1, - sym_string, - ACTIONS(888), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5785), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111725] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(833), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5793), 1, - anon_sym_DQUOTE, - ACTIONS(5795), 1, - sym_raw_string, - STATE(657), 1, - sym_string, - ACTIONS(829), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5791), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111754] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5797), 1, - anon_sym_RBRACE, - ACTIONS(5803), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5807), 1, + ACTIONS(5677), 1, sym_variable_name, STATE(1060), 1, sym_subscript, - ACTIONS(5799), 2, + ACTIONS(5669), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5805), 2, + ACTIONS(5675), 2, anon_sym_0, anon_sym__, - ACTIONS(5801), 5, + ACTIONS(5671), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [111785] = 3, + [111124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1286), 2, sym__concat, sym_word, - ACTIONS(1374), 11, + ACTIONS(1284), 11, anon_sym_RPAREN, anon_sym_DOLLAR, sym__special_character, @@ -112795,21 +112477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111806] = 7, + [111145] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(708), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5811), 1, + ACTIONS(5681), 1, anon_sym_DQUOTE, - ACTIONS(5813), 1, + ACTIONS(5683), 1, sym_raw_string, - STATE(450), 1, + STATE(455), 1, sym_string, ACTIONS(704), 2, anon_sym_0, anon_sym__, - ACTIONS(5809), 7, + ACTIONS(5679), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -112817,66 +112499,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [111835] = 7, + [111174] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_DQUOTE, - ACTIONS(1735), 1, - sym_raw_string, - ACTIONS(1737), 1, - aux_sym__simple_variable_name_token1, - STATE(2315), 1, - sym_string, - ACTIONS(1729), 2, - anon_sym_0, - anon_sym__, - ACTIONS(1731), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [111864] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5815), 1, + ACTIONS(5685), 1, anon_sym_RBRACE, - ACTIONS(5821), 1, + ACTIONS(5691), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5825), 1, + ACTIONS(5695), 1, sym_variable_name, - STATE(976), 1, + STATE(977), 1, sym_subscript, - ACTIONS(5817), 2, + ACTIONS(5687), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5823), 2, + ACTIONS(5693), 2, anon_sym_0, anon_sym__, - ACTIONS(5819), 5, + ACTIONS(5689), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [111895] = 7, + [111205] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(690), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5829), 1, + ACTIONS(5699), 1, anon_sym_DQUOTE, - ACTIONS(5831), 1, + ACTIONS(5701), 1, sym_raw_string, - STATE(374), 1, + STATE(375), 1, sym_string, - ACTIONS(694), 2, + ACTIONS(686), 2, anon_sym_0, anon_sym__, - ACTIONS(5827), 7, + ACTIONS(5697), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -112884,13 +112544,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [111924] = 3, + [111234] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(5703), 1, + anon_sym_RBRACE, + ACTIONS(5709), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5713), 1, + sym_variable_name, + STATE(1062), 1, + sym_subscript, + ACTIONS(5705), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5711), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5707), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [111265] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 2, sym__concat, sym_word, - ACTIONS(1362), 11, + ACTIONS(1358), 11, anon_sym_RPAREN, anon_sym_DOLLAR, sym__special_character, @@ -112902,90 +112585,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [111945] = 8, + [111286] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5833), 1, - anon_sym_RBRACE, - ACTIONS(5839), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5843), 1, - sym_variable_name, - STATE(1063), 1, - sym_subscript, - ACTIONS(5835), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5841), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5837), 5, - anon_sym_DASH, - anon_sym_QMARK, + ACTIONS(1294), 2, + sym__concat, + sym_word, + ACTIONS(1292), 11, + anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [111976] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5845), 1, - anon_sym_RBRACE, - ACTIONS(5851), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5855), 1, - sym_variable_name, - STATE(1057), 1, - sym_subscript, - ACTIONS(5847), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5853), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5849), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [112007] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5857), 1, - anon_sym_RBRACE, - ACTIONS(5863), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5867), 1, - sym_variable_name, - STATE(1071), 1, - sym_subscript, - ACTIONS(5859), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5865), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5861), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [112038] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(760), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5871), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(5873), 1, sym_raw_string, - STATE(487), 1, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 2, + sym__concat, + sym_word, + ACTIONS(1296), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111328] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 2, + sym__concat, + sym_word, + ACTIONS(1300), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111349] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 2, + sym__concat, + sym_word, + ACTIONS(1267), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111370] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 2, + sym__concat, + sym_word, + ACTIONS(1304), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111391] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 2, + sym__concat, + sym_word, + ACTIONS(1308), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111412] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 2, + sym__concat, + sym_word, + ACTIONS(1312), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111433] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 2, + sym__concat, + sym_word, + ACTIONS(1316), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, + sym__concat, + sym_word, + ACTIONS(1320), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym__concat, + sym_word, + ACTIONS(1324), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 2, + sym__concat, + sym_word, + ACTIONS(1328), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111517] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1725), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5717), 1, + anon_sym_DQUOTE, + ACTIONS(5719), 1, + sym_raw_string, + STATE(1869), 1, sym_string, - ACTIONS(756), 2, + ACTIONS(1719), 2, anon_sym_0, anon_sym__, - ACTIONS(5869), 7, + ACTIONS(5715), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -112993,64 +112805,727 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [112067] = 8, + [111546] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1348), 2, + sym__concat, + sym_word, + ACTIONS(1346), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111567] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4522), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5723), 1, + anon_sym_DQUOTE, + ACTIONS(5725), 1, + sym_raw_string, + STATE(2569), 1, + sym_string, + ACTIONS(4516), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5721), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [111596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym__concat, + sym_word, + ACTIONS(1346), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 2, + sym__concat, + sym_word, + ACTIONS(1350), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111638] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5727), 1, + anon_sym_RBRACE, + ACTIONS(5733), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5737), 1, + sym_variable_name, + STATE(986), 1, + sym_subscript, + ACTIONS(5729), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5735), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5731), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [111669] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(553), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5741), 1, + anon_sym_DQUOTE, + ACTIONS(5743), 1, + sym_raw_string, + STATE(322), 1, + sym_string, + ACTIONS(549), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5739), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [111698] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1675), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5747), 1, + anon_sym_DQUOTE, + ACTIONS(5749), 1, + sym_raw_string, + STATE(1752), 1, + sym_string, + ACTIONS(1669), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5745), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [111727] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5751), 1, + anon_sym_RBRACE, + ACTIONS(5757), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5761), 1, + sym_variable_name, + STATE(958), 1, + sym_subscript, + ACTIONS(5753), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5759), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5755), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [111758] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5763), 1, + anon_sym_RBRACE, + ACTIONS(5769), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5773), 1, + sym_variable_name, + STATE(968), 1, + sym_subscript, + ACTIONS(5765), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5771), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5767), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [111789] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 2, + sym__concat, + sym_word, + ACTIONS(1380), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111810] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(894), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5777), 1, + anon_sym_DQUOTE, + ACTIONS(5779), 1, + sym_raw_string, + STATE(489), 1, + sym_string, + ACTIONS(890), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5775), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [111839] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5781), 1, + anon_sym_RBRACE, + ACTIONS(5787), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5791), 1, + sym_variable_name, + STATE(1072), 1, + sym_subscript, + ACTIONS(5783), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5789), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5785), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [111870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 2, + sym__concat, + sym_word, + ACTIONS(1263), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111891] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1735), 1, + anon_sym_DQUOTE, + ACTIONS(1737), 1, + sym_raw_string, + ACTIONS(1739), 1, + aux_sym__simple_variable_name_token1, + STATE(2306), 1, + sym_string, + ACTIONS(1731), 2, + anon_sym_0, + anon_sym__, + ACTIONS(1733), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [111920] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 2, + sym__concat, + sym_word, + ACTIONS(1394), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111941] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1443), 2, + sym__concat, + sym_word, + ACTIONS(1441), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111962] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5793), 1, + anon_sym_RBRACE, + ACTIONS(5799), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5803), 1, + sym_variable_name, + STATE(1054), 1, + sym_subscript, + ACTIONS(5795), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5801), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5797), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [111993] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 2, + sym__concat, + sym_word, + ACTIONS(1449), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [112014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 2, + sym__concat, + sym_word, + ACTIONS(1453), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [112035] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5805), 1, + anon_sym_RBRACE, + ACTIONS(5811), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5815), 1, + sym_variable_name, + STATE(1010), 1, + sym_subscript, + ACTIONS(5807), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5813), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5809), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [112066] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5440), 1, + anon_sym_DQUOTE, + ACTIONS(5442), 1, + sym_raw_string, + ACTIONS(5444), 1, + aux_sym__simple_variable_name_token1, + STATE(3250), 1, + sym_string, + ACTIONS(5446), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5438), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [112095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 2, + sym__concat, + sym_word, + ACTIONS(1211), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [112116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 2, + sym__concat, + sym_word, + ACTIONS(1425), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [112137] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 2, + sym__concat, + sym_word, + ACTIONS(1376), 11, + anon_sym_RPAREN, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [112158] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1745), 1, + anon_sym_DQUOTE, + ACTIONS(1747), 1, + sym_raw_string, + ACTIONS(1749), 1, + aux_sym__simple_variable_name_token1, + STATE(2095), 1, + sym_string, + ACTIONS(1741), 2, + anon_sym_0, + anon_sym__, + ACTIONS(1743), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [112187] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5817), 1, + anon_sym_RBRACE, + ACTIONS(5823), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5827), 1, + sym_variable_name, + STATE(941), 1, + sym_subscript, + ACTIONS(5819), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5825), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5821), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [112218] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(996), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5831), 1, + anon_sym_DQUOTE, + ACTIONS(5833), 1, + sym_raw_string, + STATE(647), 1, + sym_string, + ACTIONS(992), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5829), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [112247] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5835), 1, + anon_sym_RBRACE, + ACTIONS(5841), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5845), 1, + sym_variable_name, + STATE(1091), 1, + sym_subscript, + ACTIONS(5837), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5843), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5839), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [112278] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5847), 1, + anon_sym_RBRACE, + ACTIONS(5853), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5857), 1, + sym_variable_name, + STATE(945), 1, + sym_subscript, + ACTIONS(5849), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5855), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5851), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [112309] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5233), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5861), 1, + anon_sym_DQUOTE, + ACTIONS(5863), 1, + sym_raw_string, + STATE(2859), 1, + sym_string, + ACTIONS(5229), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5859), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [112338] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5865), 1, + anon_sym_RBRACE, + ACTIONS(5871), 1, + aux_sym__simple_variable_name_token1, ACTIONS(5875), 1, - anon_sym_RBRACE, + sym_variable_name, + STATE(1043), 1, + sym_subscript, + ACTIONS(5867), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5873), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5869), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [112369] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1614), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5879), 1, + anon_sym_DQUOTE, ACTIONS(5881), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5885), 1, - sym_variable_name, - STATE(967), 1, - sym_subscript, - ACTIONS(5877), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5883), 2, + sym_raw_string, + STATE(1833), 1, + sym_string, + ACTIONS(1608), 2, anon_sym_0, anon_sym__, - ACTIONS(5879), 5, + ACTIONS(5877), 7, + anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, + anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [112098] = 8, + [112398] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5887), 1, + ACTIONS(5883), 1, anon_sym_RBRACE, - ACTIONS(5893), 1, + ACTIONS(5889), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5897), 1, + ACTIONS(5893), 1, sym_variable_name, - STATE(957), 1, + STATE(1015), 1, sym_subscript, - ACTIONS(5889), 2, + ACTIONS(5885), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5895), 2, + ACTIONS(5891), 2, anon_sym_0, anon_sym__, - ACTIONS(5891), 5, + ACTIONS(5887), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [112129] = 7, + [112429] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(543), 1, + ACTIONS(5895), 1, + sym_word, + ACTIONS(5897), 1, + sym__special_character, + STATE(2520), 1, + aux_sym__literal_repeat1, + ACTIONS(5425), 10, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [112454] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(990), 1, aux_sym__simple_variable_name_token1, ACTIONS(5901), 1, anon_sym_DQUOTE, ACTIONS(5903), 1, sym_raw_string, - STATE(364), 1, + STATE(575), 1, sym_string, - ACTIONS(539), 2, + ACTIONS(986), 2, anon_sym_0, anon_sym__, ACTIONS(5899), 7, @@ -113061,61 +113536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [112158] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 2, - sym__concat, - sym_word, - ACTIONS(1348), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 2, - sym__concat, - sym_word, - ACTIONS(1270), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 2, - sym__concat, - sym_word, - ACTIONS(1274), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112221] = 8, + [112483] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(5905), 1, @@ -113124,7 +113545,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, ACTIONS(5915), 1, sym_variable_name, - STATE(986), 1, + STATE(924), 1, sym_subscript, ACTIONS(5907), 2, anon_sym_BANG, @@ -113138,324 +113559,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [112252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 2, - sym__concat, - sym_word, - ACTIONS(1344), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 2, - sym__concat, - sym_word, - ACTIONS(1278), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 2, - sym__concat, - sym_word, - ACTIONS(1282), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym__concat, - sym_word, - ACTIONS(1340), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112336] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym__concat, - sym_word, - ACTIONS(1340), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 2, - sym__concat, - sym_word, - ACTIONS(1286), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112378] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 2, - sym__concat, - sym_word, - ACTIONS(1290), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112399] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - sym__concat, - sym_word, - ACTIONS(1294), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - sym__concat, - sym_word, - ACTIONS(1298), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112441] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym__concat, - sym_word, - ACTIONS(1302), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112462] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1723), 1, - anon_sym_DQUOTE, - ACTIONS(1725), 1, - sym_raw_string, - ACTIONS(1727), 1, - aux_sym__simple_variable_name_token1, - STATE(2141), 1, - sym_string, - ACTIONS(1719), 2, - anon_sym_0, - anon_sym__, - ACTIONS(1721), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [112491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 2, - sym__concat, - sym_word, - ACTIONS(1310), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112512] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1663), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5919), 1, - anon_sym_DQUOTE, - ACTIONS(5921), 1, - sym_raw_string, - STATE(1855), 1, - sym_string, - ACTIONS(1657), 2, - anon_sym_0, - anon_sym__, - ACTIONS(5917), 7, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - [112541] = 8, + [112514] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(5917), 1, + anon_sym_RBRACE, ACTIONS(5923), 1, - anon_sym_RBRACE, - ACTIONS(5929), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5933), 1, + ACTIONS(5927), 1, sym_variable_name, - STATE(1034), 1, + STATE(1127), 1, sym_subscript, + ACTIONS(5919), 2, + anon_sym_BANG, + anon_sym_POUND, ACTIONS(5925), 2, - anon_sym_BANG, - anon_sym_POUND, - ACTIONS(5931), 2, anon_sym_0, anon_sym__, - ACTIONS(5927), 5, + ACTIONS(5921), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [112572] = 8, + [112545] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5935), 1, + ACTIONS(5929), 1, anon_sym_RBRACE, - ACTIONS(5941), 1, + ACTIONS(5935), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5945), 1, + ACTIONS(5939), 1, sym_variable_name, - STATE(1136), 1, + STATE(1166), 1, sym_subscript, - ACTIONS(5937), 2, + ACTIONS(5931), 2, anon_sym_BANG, anon_sym_POUND, - ACTIONS(5943), 2, + ACTIONS(5937), 2, anon_sym_0, anon_sym__, - ACTIONS(5939), 5, + ACTIONS(5933), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [112603] = 3, + [112576] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 2, - sym__concat, - sym_word, - ACTIONS(1314), 11, - anon_sym_RPAREN, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1707), 1, anon_sym_DQUOTE, + ACTIONS(1709), 1, sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [112624] = 7, + ACTIONS(1711), 1, + aux_sym__simple_variable_name_token1, + STATE(1948), 1, + sym_string, + ACTIONS(1703), 2, + anon_sym_0, + anon_sym__, + ACTIONS(1705), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [112605] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1094), 1, + ACTIONS(772), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5943), 1, + anon_sym_DQUOTE, + ACTIONS(5945), 1, + sym_raw_string, + STATE(665), 1, + sym_string, + ACTIONS(766), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5941), 7, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + [112634] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 1, aux_sym__simple_variable_name_token1, ACTIONS(5949), 1, anon_sym_DQUOTE, ACTIONS(5951), 1, sym_raw_string, - STATE(753), 1, + STATE(752), 1, sym_string, - ACTIONS(1088), 2, + ACTIONS(1049), 2, anon_sym_0, anon_sym__, ACTIONS(5947), 7, @@ -113466,18 +113671,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [112653] = 7, + [112663] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3950), 1, + ACTIONS(939), 1, aux_sym__simple_variable_name_token1, ACTIONS(5955), 1, anon_sym_DQUOTE, ACTIONS(5957), 1, sym_raw_string, - STATE(2467), 1, + STATE(832), 1, sym_string, - ACTIONS(3944), 2, + ACTIONS(933), 2, anon_sym_0, anon_sym__, ACTIONS(5953), 7, @@ -113488,76 +113693,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [112682] = 7, + [112692] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1705), 1, + ACTIONS(5959), 1, + anon_sym_RBRACE, + ACTIONS(5965), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5961), 1, - anon_sym_DQUOTE, - ACTIONS(5963), 1, - sym_raw_string, - STATE(1798), 1, - sym_string, - ACTIONS(1699), 2, + ACTIONS(5969), 1, + sym_variable_name, + STATE(1171), 1, + sym_subscript, + ACTIONS(5961), 2, + anon_sym_BANG, + anon_sym_POUND, + ACTIONS(5967), 2, anon_sym_0, anon_sym__, - ACTIONS(5959), 7, - anon_sym_BANG, + ACTIONS(5963), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, - anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [112711] = 5, + [112723] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5967), 1, - anon_sym_DQUOTE, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [112735] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, + ACTIONS(3936), 1, aux_sym__simple_variable_name_token1, ACTIONS(5973), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [112759] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, ACTIONS(5975), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, + sym_raw_string, + STATE(2486), 1, + sym_string, + ACTIONS(3930), 2, + anon_sym_0, + anon_sym__, + ACTIONS(5971), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113565,73 +113738,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - anon_sym_0, - anon_sym__, - [112783] = 5, + [112752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5977), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [112807] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, ACTIONS(5979), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + anon_sym_esac, + ACTIONS(5977), 11, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [112831] = 3, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [112772] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(5983), 1, - anon_sym_esac, - ACTIONS(5981), 11, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [112851] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, ACTIONS(5985), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113641,12 +113774,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [112875] = 3, + [112796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5989), 1, + ACTIONS(5991), 1, anon_sym_esac, - ACTIONS(5987), 11, + ACTIONS(5989), 11, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113658,12 +113791,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112895] = 3, + [112816] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, ACTIONS(5993), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [112840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5997), 1, anon_sym_esac, - ACTIONS(5991), 11, + ACTIONS(5995), 11, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113675,54 +113827,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [112915] = 5, + [112860] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5995), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [112939] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(5997), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [112963] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(5999), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113732,31 +113846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [112987] = 5, + [112884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6001), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6005), 1, + ACTIONS(6003), 1, anon_sym_esac, - ACTIONS(6003), 11, + ACTIONS(6001), 11, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113768,16 +113863,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113031] = 5, + [112904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(6003), 1, + anon_sym_esac, + ACTIONS(6001), 11, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [112924] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6005), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [112948] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6007), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113787,16 +113918,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113055] = 5, + [112972] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6009), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113806,16 +113937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113079] = 5, + [112996] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6011), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113825,50 +113956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113103] = 5, + [113020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6013), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113127] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, ACTIONS(6015), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6019), 1, anon_sym_esac, - ACTIONS(6017), 11, + ACTIONS(6013), 11, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -113880,16 +113973,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113171] = 5, + [113040] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6017), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113064] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6015), 1, + anon_sym_esac, + ACTIONS(6013), 11, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [113084] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6019), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113108] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6021), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113899,16 +114047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113195] = 5, + [113132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6023), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113918,16 +114066,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113219] = 5, + [113156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6025), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113937,16 +114085,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113243] = 5, + [113180] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6027), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113956,16 +114104,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113267] = 5, + [113204] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6029), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -113975,54 +114123,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113291] = 5, + [113228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6031), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113315] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, ACTIONS(6033), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, + anon_sym_esac, + ACTIONS(6031), 11, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113339] = 5, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [113248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6035), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114032,12 +114159,333 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113363] = 3, + [113272] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6037), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113296] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6039), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113320] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6041), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113344] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6043), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113368] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6045), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113392] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6047), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113416] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6049), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113440] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6051), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6053), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6055), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113512] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6059), 1, + anon_sym_esac, + ACTIONS(6057), 11, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1195), 11, + [113532] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6061), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113556] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6063), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113580] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6065), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6067), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113628] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6069), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113652] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6071), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [113676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + sym_word, + ACTIONS(1227), 11, anon_sym_RPAREN, anon_sym_DOLLAR, sym__special_character, @@ -114049,295 +114497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113383] = 5, + [113696] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6037), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113407] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6039), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113431] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6041), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113455] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6043), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113479] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6045), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113503] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6047), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113527] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6049), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113551] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6051), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113575] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6053), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113599] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6055), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113623] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6057), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113647] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6059), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [113671] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6063), 1, - anon_sym_esac, - ACTIONS(6061), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [113691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6067), 1, - anon_sym_esac, - ACTIONS(6065), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [113711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6071), 1, - anon_sym_esac, - ACTIONS(6069), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [113731] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6073), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114347,33 +114516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113755] = 3, + [113720] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, - anon_sym_esac, - ACTIONS(6003), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [113775] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6075), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114383,16 +114535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113799] = 5, + [113744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6077), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114402,16 +114554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113823] = 5, + [113768] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6079), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114421,16 +114573,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113847] = 5, + [113792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6081), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114440,33 +114592,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113871] = 3, + [113816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5989), 1, - anon_sym_esac, - ACTIONS(5987), 11, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [113891] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6083), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114476,16 +114611,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113915] = 5, + [113840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6085), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114495,16 +114630,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113939] = 5, + [113864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6087), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114514,16 +114649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113963] = 5, + [113888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6089), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114533,16 +114668,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [113987] = 5, + [113912] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6091), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114552,16 +114687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114011] = 5, + [113936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6093), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114571,16 +114706,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114035] = 5, + [113960] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6095), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114590,16 +114725,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114059] = 5, + [113984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6097), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114609,16 +114744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114083] = 5, + [114008] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6099), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114628,16 +114763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114107] = 5, + [114032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6101), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114647,16 +114782,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114131] = 5, + [114056] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6103), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114666,16 +114801,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114155] = 5, + [114080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6105), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114685,16 +114820,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114179] = 5, + [114104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6107), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114704,16 +114839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114203] = 5, + [114128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6109), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114723,16 +114858,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114227] = 5, + [114152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6111), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114742,16 +114877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114251] = 5, + [114176] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6113), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114761,16 +114896,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114275] = 5, + [114200] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, ACTIONS(6115), 1, anon_sym_DQUOTE, - ACTIONS(5965), 9, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114780,31 +114915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114299] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, - sym__string_content, - ACTIONS(5971), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6117), 1, - anon_sym_DQUOTE, - ACTIONS(5965), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_STAR, - anon_sym_AT, - anon_sym_0, - anon_sym__, - [114323] = 3, + [114224] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6119), 1, - sym_word, - ACTIONS(6121), 10, + anon_sym_esac, + ACTIONS(6117), 11, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -114815,170 +114931,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6123), 1, sym_word, - ACTIONS(6125), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114361] = 3, + [114244] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6127), 1, - sym_word, - ACTIONS(6069), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114380] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6129), 1, - anon_sym_RBRACE, - ACTIONS(6133), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6137), 1, - sym_variable_name, - STATE(974), 1, - sym_subscript, - ACTIONS(6135), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6131), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [114407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6139), 1, - sym_word, - ACTIONS(6003), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114426] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6139), 1, - sym_word, - ACTIONS(6003), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114445] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6141), 1, - sym_word, - ACTIONS(5991), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114464] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6143), 1, - sym_word, - ACTIONS(5987), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114483] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6145), 1, - anon_sym_RBRACE, - ACTIONS(6149), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6153), 1, - sym_variable_name, - STATE(1126), 1, - sym_subscript, - ACTIONS(6151), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6147), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [114510] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6155), 1, - anon_sym_RBRACE, - ACTIONS(6159), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6163), 1, - sym_variable_name, - STATE(1052), 1, - sym_subscript, - ACTIONS(6161), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6157), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [114537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 1, + ACTIONS(5985), 1, sym__string_content, - ACTIONS(5971), 1, + ACTIONS(5987), 1, aux_sym__simple_variable_name_token1, - ACTIONS(5965), 9, + ACTIONS(6121), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -114988,12 +114951,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_0, anon_sym__, - [114558] = 3, + [114268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6165), 1, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6123), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [114292] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6125), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [114316] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6127), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [114340] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6129), 1, + anon_sym_DQUOTE, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [114364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6131), 1, sym_word, - ACTIONS(5981), 10, + ACTIONS(6117), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115004,12 +115043,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114577] = 3, + [114383] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6133), 1, + sym_word, + ACTIONS(6135), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114402] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6137), 1, + anon_sym_RBRACE, + ACTIONS(6141), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6145), 1, + sym_variable_name, + STATE(1065), 1, + sym_subscript, + ACTIONS(6143), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6139), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [114429] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6147), 1, + sym_word, + ACTIONS(6031), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6149), 1, + sym_word, + ACTIONS(6057), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6151), 1, + sym_word, + ACTIONS(6153), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114486] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6155), 1, + sym_word, + ACTIONS(6001), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114505] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6157), 1, + anon_sym_RBRACE, + ACTIONS(6161), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6165), 1, + sym_variable_name, + STATE(1089), 1, + sym_subscript, + ACTIONS(6163), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6159), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [114532] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6155), 1, + sym_word, + ACTIONS(6001), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114551] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6167), 1, sym_word, - ACTIONS(6017), 10, + ACTIONS(6169), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115020,32 +115195,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114596] = 7, - ACTIONS(4189), 1, + [114570] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6169), 1, + ACTIONS(6171), 1, anon_sym_RBRACE, - ACTIONS(6173), 1, + ACTIONS(6175), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6177), 1, + ACTIONS(6179), 1, sym_variable_name, - STATE(962), 1, + STATE(1163), 1, sym_subscript, - ACTIONS(6175), 2, + ACTIONS(6177), 2, anon_sym_0, anon_sym__, - ACTIONS(6171), 5, + ACTIONS(6173), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [114623] = 3, + [114597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6179), 1, + ACTIONS(6181), 1, sym_word, - ACTIONS(6181), 10, + ACTIONS(6013), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115056,32 +115231,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114642] = 7, - ACTIONS(4189), 1, + [114616] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5985), 1, + sym__string_content, + ACTIONS(5987), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(5981), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_STAR, + anon_sym_AT, + anon_sym_0, + anon_sym__, + [114637] = 3, + ACTIONS(3), 1, sym_comment, ACTIONS(6183), 1, - anon_sym_RBRACE, - ACTIONS(6187), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6191), 1, - sym_variable_name, - STATE(1065), 1, - sym_subscript, - ACTIONS(6189), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6185), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [114669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6193), 1, sym_word, - ACTIONS(6195), 10, + ACTIONS(5977), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115092,28 +115264,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114688] = 7, - ACTIONS(4189), 1, + [114656] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6197), 1, + ACTIONS(6185), 1, anon_sym_RBRACE, - ACTIONS(6201), 1, + ACTIONS(6189), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6205), 1, + ACTIONS(6193), 1, sym_variable_name, - STATE(1047), 1, + STATE(1112), 1, sym_subscript, - ACTIONS(6203), 2, + ACTIONS(6191), 2, anon_sym_0, anon_sym__, - ACTIONS(6199), 5, + ACTIONS(6187), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [114715] = 7, - ACTIONS(4189), 1, + [114683] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6167), 1, + sym_word, + ACTIONS(6169), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114702] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6167), 1, + sym_word, + ACTIONS(6169), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114721] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6195), 1, + anon_sym_RBRACE, + ACTIONS(6199), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6203), 1, + sym_variable_name, + STATE(1164), 1, + sym_subscript, + ACTIONS(6201), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6197), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [114748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6205), 1, + sym_word, + ACTIONS(5989), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114767] = 7, + ACTIONS(4073), 1, sym_comment, ACTIONS(6207), 1, anon_sym_RBRACE, @@ -115121,7 +115361,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, ACTIONS(6215), 1, sym_variable_name, - STATE(1171), 1, + STATE(974), 1, sym_subscript, ACTIONS(6213), 2, anon_sym_0, @@ -115132,8 +115372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [114742] = 7, - ACTIONS(4189), 1, + [114794] = 7, + ACTIONS(4073), 1, sym_comment, ACTIONS(6217), 1, anon_sym_RBRACE, @@ -115141,7 +115381,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, ACTIONS(6225), 1, sym_variable_name, - STATE(1025), 1, + STATE(1026), 1, sym_subscript, ACTIONS(6223), 2, anon_sym_0, @@ -115152,8 +115392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [114769] = 7, - ACTIONS(4189), 1, + [114821] = 7, + ACTIONS(4073), 1, sym_comment, ACTIONS(6227), 1, anon_sym_RBRACE, @@ -115161,7 +115401,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__simple_variable_name_token1, ACTIONS(6235), 1, sym_variable_name, - STATE(1158), 1, + STATE(1058), 1, sym_subscript, ACTIONS(6233), 2, anon_sym_0, @@ -115172,12 +115412,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [114796] = 3, + [114848] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6237), 1, sym_word, - ACTIONS(6061), 10, + ACTIONS(6239), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115188,52 +115428,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114815] = 7, - ACTIONS(4189), 1, + [114867] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6239), 1, + ACTIONS(6241), 1, anon_sym_RBRACE, - ACTIONS(6243), 1, + ACTIONS(6245), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6247), 1, - sym_variable_name, - STATE(1110), 1, - sym_subscript, - ACTIONS(6245), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6241), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [114842] = 7, - ACTIONS(4189), 1, - sym_comment, ACTIONS(6249), 1, - anon_sym_RBRACE, - ACTIONS(6253), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6257), 1, sym_variable_name, - STATE(1013), 1, + STATE(1011), 1, sym_subscript, - ACTIONS(6255), 2, + ACTIONS(6247), 2, anon_sym_0, anon_sym__, - ACTIONS(6251), 5, + ACTIONS(6243), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [114869] = 3, + [114894] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6251), 1, + anon_sym_RBRACE, + ACTIONS(6255), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6259), 1, + sym_variable_name, + STATE(922), 1, + sym_subscript, + ACTIONS(6257), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6253), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [114921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6259), 1, + ACTIONS(6261), 1, sym_word, - ACTIONS(6261), 10, + ACTIONS(6263), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115244,216 +115484,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [114888] = 7, - ACTIONS(4189), 1, + [114940] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6263), 1, + ACTIONS(6265), 1, anon_sym_RBRACE, - ACTIONS(6267), 1, + ACTIONS(6269), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6271), 1, - sym_variable_name, - STATE(973), 1, - sym_subscript, - ACTIONS(6269), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6265), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [114915] = 7, - ACTIONS(4189), 1, - sym_comment, ACTIONS(6273), 1, - anon_sym_RBRACE, - ACTIONS(6277), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6281), 1, sym_variable_name, - STATE(1160), 1, + STATE(961), 1, sym_subscript, - ACTIONS(6279), 2, + ACTIONS(6271), 2, anon_sym_0, anon_sym__, - ACTIONS(6275), 5, + ACTIONS(6267), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [114942] = 3, + [114967] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(6261), 1, + sym_word, + ACTIONS(6263), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [114986] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6275), 1, + anon_sym_RBRACE, + ACTIONS(6279), 1, + aux_sym__simple_variable_name_token1, ACTIONS(6283), 1, - sym_word, - ACTIONS(6285), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114961] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6287), 1, - anon_sym_RBRACE, - ACTIONS(6291), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6295), 1, sym_variable_name, - STATE(933), 1, + STATE(1129), 1, sym_subscript, - ACTIONS(6293), 2, + ACTIONS(6281), 2, anon_sym_0, anon_sym__, - ACTIONS(6289), 5, + ACTIONS(6277), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [114988] = 7, - ACTIONS(4189), 1, + [115013] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6297), 1, + ACTIONS(6285), 1, anon_sym_RBRACE, - ACTIONS(6301), 1, + ACTIONS(6289), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6305), 1, - sym_variable_name, - STATE(1132), 1, - sym_subscript, - ACTIONS(6303), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6299), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [115015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6259), 1, - sym_word, - ACTIONS(6261), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115034] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6307), 1, - anon_sym_RBRACE, - ACTIONS(6311), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6315), 1, - sym_variable_name, - STATE(1092), 1, - sym_subscript, - ACTIONS(6313), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6309), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [115061] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6317), 1, - anon_sym_RBRACE, - ACTIONS(6321), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6325), 1, + ACTIONS(6293), 1, sym_variable_name, STATE(984), 1, sym_subscript, - ACTIONS(6323), 2, + ACTIONS(6291), 2, anon_sym_0, anon_sym__, - ACTIONS(6319), 5, + ACTIONS(6287), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115088] = 3, - ACTIONS(3), 1, + [115040] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6283), 1, - sym_word, - ACTIONS(6285), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115107] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6119), 1, - sym_word, - ACTIONS(6121), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115126] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6327), 1, + ACTIONS(6295), 1, anon_sym_RBRACE, - ACTIONS(6331), 1, + ACTIONS(6299), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6335), 1, + ACTIONS(6303), 1, sym_variable_name, - STATE(1152), 1, + STATE(1108), 1, sym_subscript, - ACTIONS(6333), 2, + ACTIONS(6301), 2, anon_sym_0, anon_sym__, - ACTIONS(6329), 5, + ACTIONS(6297), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115153] = 3, + [115067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6259), 1, + ACTIONS(6133), 1, sym_word, - ACTIONS(6261), 10, + ACTIONS(6135), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115464,296 +115596,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115172] = 3, - ACTIONS(3), 1, + [115086] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6337), 1, - sym_word, - ACTIONS(6065), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115191] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6339), 1, + ACTIONS(6305), 1, anon_sym_RBRACE, - ACTIONS(6343), 1, + ACTIONS(6309), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6347), 1, - sym_variable_name, - STATE(955), 1, - sym_subscript, - ACTIONS(6345), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6341), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [115218] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6349), 1, - anon_sym_RBRACE, - ACTIONS(6353), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6357), 1, - sym_variable_name, - STATE(1088), 1, - sym_subscript, - ACTIONS(6355), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6351), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [115245] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6143), 1, - sym_word, - ACTIONS(5987), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115264] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6359), 1, - anon_sym_RBRACE, - ACTIONS(6363), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6367), 1, + ACTIONS(6313), 1, sym_variable_name, STATE(1142), 1, sym_subscript, - ACTIONS(6365), 2, + ACTIONS(6311), 2, anon_sym_0, anon_sym__, - ACTIONS(6361), 5, + ACTIONS(6307), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115291] = 7, - ACTIONS(4189), 1, + [115113] = 7, + ACTIONS(4073), 1, sym_comment, + ACTIONS(6315), 1, + anon_sym_RBRACE, + ACTIONS(6319), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6323), 1, + sym_variable_name, + STATE(960), 1, + sym_subscript, + ACTIONS(6321), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6317), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [115140] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6325), 1, + anon_sym_RBRACE, + ACTIONS(6329), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6333), 1, + sym_variable_name, + STATE(956), 1, + sym_subscript, + ACTIONS(6331), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6327), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [115167] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6335), 1, + anon_sym_RBRACE, + ACTIONS(6339), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6343), 1, + sym_variable_name, + STATE(938), 1, + sym_subscript, + ACTIONS(6341), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6337), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [115194] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6345), 1, + anon_sym_RBRACE, + ACTIONS(6349), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6353), 1, + sym_variable_name, + STATE(947), 1, + sym_subscript, + ACTIONS(6351), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6347), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [115221] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6355), 1, + anon_sym_RBRACE, + ACTIONS(6359), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6363), 1, + sym_variable_name, + STATE(1031), 1, + sym_subscript, + ACTIONS(6361), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6357), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [115248] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6261), 1, + sym_word, + ACTIONS(6263), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [115267] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6365), 1, + anon_sym_RBRACE, ACTIONS(6369), 1, - anon_sym_RBRACE, + aux_sym__simple_variable_name_token1, ACTIONS(6373), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6377), 1, sym_variable_name, - STATE(1030), 1, + STATE(1160), 1, sym_subscript, - ACTIONS(6375), 2, + ACTIONS(6371), 2, anon_sym_0, anon_sym__, - ACTIONS(6371), 5, + ACTIONS(6367), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115318] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6259), 1, - sym_word, - ACTIONS(6261), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6283), 1, - sym_word, - ACTIONS(6285), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115356] = 7, - ACTIONS(4189), 1, + [115294] = 7, + ACTIONS(4073), 1, sym_comment, + ACTIONS(6375), 1, + anon_sym_RBRACE, ACTIONS(6379), 1, - anon_sym_RBRACE, + aux_sym__simple_variable_name_token1, ACTIONS(6383), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6387), 1, sym_variable_name, - STATE(946), 1, + STATE(1076), 1, sym_subscript, - ACTIONS(6385), 2, + ACTIONS(6381), 2, anon_sym_0, anon_sym__, - ACTIONS(6381), 5, + ACTIONS(6377), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115383] = 7, - ACTIONS(4189), 1, + [115321] = 7, + ACTIONS(4073), 1, sym_comment, + ACTIONS(6385), 1, + anon_sym_RBRACE, ACTIONS(6389), 1, - anon_sym_RBRACE, + aux_sym__simple_variable_name_token1, ACTIONS(6393), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6397), 1, sym_variable_name, - STATE(1143), 1, + STATE(975), 1, sym_subscript, - ACTIONS(6395), 2, + ACTIONS(6391), 2, anon_sym_0, anon_sym__, - ACTIONS(6391), 5, + ACTIONS(6387), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115410] = 7, - ACTIONS(4189), 1, + [115348] = 7, + ACTIONS(4073), 1, sym_comment, + ACTIONS(6395), 1, + anon_sym_RBRACE, ACTIONS(6399), 1, - anon_sym_RBRACE, - ACTIONS(6403), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6407), 1, + ACTIONS(6403), 1, sym_variable_name, - STATE(1075), 1, + STATE(1092), 1, sym_subscript, - ACTIONS(6405), 2, + ACTIONS(6401), 2, anon_sym_0, anon_sym__, - ACTIONS(6401), 5, + ACTIONS(6397), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115437] = 7, - ACTIONS(4189), 1, + [115375] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6409), 1, + ACTIONS(6405), 1, anon_sym_RBRACE, - ACTIONS(6413), 1, + ACTIONS(6409), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6417), 1, + ACTIONS(6413), 1, + sym_variable_name, + STATE(1049), 1, + sym_subscript, + ACTIONS(6411), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6407), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [115402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6167), 1, + sym_word, + ACTIONS(6169), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [115421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6415), 1, + sym_word, + ACTIONS(6417), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [115440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6419), 1, + sym_word, + ACTIONS(6421), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [115459] = 7, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6423), 1, + anon_sym_RBRACE, + ACTIONS(6427), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6431), 1, sym_variable_name, STATE(1111), 1, sym_subscript, - ACTIONS(6415), 2, + ACTIONS(6429), 2, anon_sym_0, anon_sym__, - ACTIONS(6411), 5, + ACTIONS(6425), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115464] = 7, - ACTIONS(4189), 1, + [115486] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6419), 1, - anon_sym_RBRACE, - ACTIONS(6423), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6427), 1, - sym_variable_name, - STATE(921), 1, - sym_subscript, - ACTIONS(6425), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6421), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [115491] = 7, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6429), 1, - anon_sym_RBRACE, ACTIONS(6433), 1, - aux_sym__simple_variable_name_token1, + anon_sym_RBRACE, ACTIONS(6437), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6441), 1, sym_variable_name, - STATE(918), 1, + STATE(1167), 1, sym_subscript, - ACTIONS(6435), 2, + ACTIONS(6439), 2, anon_sym_0, anon_sym__, - ACTIONS(6431), 5, + ACTIONS(6435), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115518] = 7, - ACTIONS(4189), 1, + [115513] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6439), 1, - anon_sym_RBRACE, ACTIONS(6443), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6447), 1, - sym_variable_name, - STATE(1054), 1, - sym_subscript, - ACTIONS(6445), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6441), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [115545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6283), 1, sym_word, - ACTIONS(6285), 10, + ACTIONS(5995), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115764,44 +115936,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115564] = 3, + [115532] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(6445), 1, + sym_word, + ACTIONS(6447), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [115551] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6445), 1, + sym_word, + ACTIONS(6447), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [115570] = 7, + ACTIONS(4073), 1, + sym_comment, ACTIONS(6449), 1, - sym_word, - ACTIONS(6451), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6449), 1, - sym_word, - ACTIONS(6451), 10, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansii_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [115602] = 3, - ACTIONS(3), 1, - sym_comment, + anon_sym_RBRACE, ACTIONS(6453), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(6457), 1, + sym_variable_name, + STATE(1145), 1, + sym_subscript, + ACTIONS(6455), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6451), 5, + anon_sym_DASH, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_STAR, + anon_sym_AT, + [115597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6261), 1, sym_word, - ACTIONS(6455), 10, + ACTIONS(6263), 10, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, @@ -115812,1079 +116004,988 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [115621] = 7, - ACTIONS(4189), 1, + [115616] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6457), 1, + ACTIONS(6459), 1, anon_sym_RBRACE, - ACTIONS(6461), 1, + ACTIONS(6463), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6465), 1, - sym_variable_name, - STATE(968), 1, - sym_subscript, - ACTIONS(6463), 2, - anon_sym_0, - anon_sym__, - ACTIONS(6459), 5, - anon_sym_DASH, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_STAR, - anon_sym_AT, - [115648] = 7, - ACTIONS(4189), 1, - sym_comment, ACTIONS(6467), 1, - anon_sym_RBRACE, - ACTIONS(6471), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(6475), 1, sym_variable_name, STATE(1006), 1, sym_subscript, - ACTIONS(6473), 2, + ACTIONS(6465), 2, anon_sym_0, anon_sym__, - ACTIONS(6469), 5, + ACTIONS(6461), 5, anon_sym_DASH, anon_sym_QMARK, anon_sym_DOLLAR, anon_sym_STAR, anon_sym_AT, - [115675] = 9, - ACTIONS(3), 1, + [115643] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6057), 1, - anon_sym_DQUOTE, + ACTIONS(6469), 1, + anon_sym_RBRACE, + ACTIONS(6473), 1, + aux_sym__simple_variable_name_token1, ACTIONS(6477), 1, + sym_variable_name, + STATE(914), 1, + sym_subscript, + ACTIONS(6475), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6471), 5, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [115705] = 9, - ACTIONS(3), 1, + anon_sym_STAR, + anon_sym_AT, + [115670] = 7, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6093), 1, - anon_sym_DQUOTE, ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE, ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, ACTIONS(6487), 1, + sym_variable_name, + STATE(918), 1, + sym_subscript, + ACTIONS(6485), 2, + anon_sym_0, + anon_sym__, + ACTIONS(6481), 5, + anon_sym_DASH, + anon_sym_QMARK, anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [115735] = 9, + anon_sym_STAR, + anon_sym_AT, + [115697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6181), 1, + sym_word, + ACTIONS(6013), 10, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + sym_raw_string, + sym_ansii_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, anon_sym_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [115716] = 9, + ACTIONS(3), 1, + sym_comment, ACTIONS(6489), 1, anon_sym_DOLLAR, ACTIONS(6491), 1, anon_sym_DQUOTE, - STATE(2722), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [115765] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, ACTIONS(6493), 1, - anon_sym_DOLLAR, + sym__string_content, ACTIONS(6495), 1, - anon_sym_DQUOTE, - STATE(2734), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [115795] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, ACTIONS(6497), 1, - anon_sym_DOLLAR, + anon_sym_DOLLAR_LPAREN, ACTIONS(6499), 1, - anon_sym_DQUOTE, - STATE(2762), 1, + anon_sym_BQUOTE, + STATE(2720), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [115825] = 9, + [115746] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6051), 1, + ACTIONS(6083), 1, anon_sym_DQUOTE, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6501), 1, anon_sym_DOLLAR, - STATE(2738), 1, + STATE(2732), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [115855] = 9, + [115776] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6073), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6503), 1, anon_sym_DOLLAR, - ACTIONS(6505), 1, - anon_sym_DQUOTE, - STATE(2742), 1, + STATE(2732), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [115885] = 9, + [115806] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6071), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6505), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [115836] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6507), 1, anon_sym_DOLLAR, ACTIONS(6509), 1, anon_sym_DQUOTE, - STATE(2717), 1, + STATE(2725), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [115915] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6511), 1, - anon_sym_DOLLAR, - ACTIONS(6513), 1, - anon_sym_DQUOTE, - STATE(2754), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [115945] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6515), 1, - anon_sym_DOLLAR, - ACTIONS(6517), 1, - anon_sym_DQUOTE, - STATE(2735), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [115975] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6053), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6519), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116005] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6521), 1, - anon_sym_DOLLAR, - ACTIONS(6523), 1, - anon_sym_DQUOTE, - STATE(2770), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116035] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6525), 1, - anon_sym_DOLLAR, - ACTIONS(6527), 1, - anon_sym_DQUOTE, - STATE(2782), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116065] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6027), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6529), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116095] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6531), 1, - anon_sym_DOLLAR, - ACTIONS(6533), 1, - anon_sym_DQUOTE, - STATE(2727), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116125] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6535), 1, - anon_sym_DOLLAR, - ACTIONS(6537), 1, - anon_sym_DQUOTE, - STATE(2771), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116155] = 8, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6539), 1, - anon_sym_DOLLAR, - ACTIONS(6542), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6545), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6548), 1, - anon_sym_BQUOTE, - ACTIONS(6551), 1, - sym__heredoc_body_middle, - ACTIONS(6554), 1, - sym__heredoc_body_end, - STATE(2733), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [116183] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6073), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6556), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116213] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6035), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6558), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116243] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6560), 1, - anon_sym_DOLLAR, - ACTIONS(6562), 1, - anon_sym_DQUOTE, - STATE(2749), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116273] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6564), 1, - anon_sym_DOLLAR, - ACTIONS(6566), 1, - anon_sym_DQUOTE, - STATE(2744), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116303] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6568), 1, - anon_sym_DOLLAR, - ACTIONS(6571), 1, - anon_sym_DQUOTE, - ACTIONS(6573), 1, - sym__string_content, - ACTIONS(6576), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6579), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6582), 1, - anon_sym_BQUOTE, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116333] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6045), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6585), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116363] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6587), 1, - anon_sym_DOLLAR, - ACTIONS(6589), 1, - anon_sym_DQUOTE, - STATE(2718), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116393] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6021), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6591), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116423] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6083), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6593), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116453] = 8, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6595), 1, - anon_sym_DOLLAR, - ACTIONS(6597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6599), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6601), 1, - anon_sym_BQUOTE, - ACTIONS(6603), 1, - sym__heredoc_body_middle, - ACTIONS(6605), 1, - sym__heredoc_body_end, - STATE(2733), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [116481] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6011), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6607), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116511] = 9, + [115866] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(6075), 1, anon_sym_DQUOTE, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, - ACTIONS(6609), 1, + ACTIONS(6511), 1, anon_sym_DOLLAR, - STATE(2738), 1, + STATE(2732), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [116541] = 9, + [115896] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, - ACTIONS(6611), 1, + ACTIONS(6513), 1, anon_sym_DOLLAR, - ACTIONS(6613), 1, + ACTIONS(6515), 1, anon_sym_DQUOTE, - STATE(2741), 1, + STATE(2763), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [116571] = 9, + [115926] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, - ACTIONS(6615), 1, + ACTIONS(6517), 1, anon_sym_DOLLAR, - ACTIONS(6617), 1, + ACTIONS(6519), 1, anon_sym_DQUOTE, - STATE(2739), 1, + STATE(2722), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [116601] = 8, - ACTIONS(4189), 1, + [115956] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6595), 1, - anon_sym_DOLLAR, - ACTIONS(6597), 1, + ACTIONS(6081), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6599), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6601), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, - ACTIONS(6603), 1, + ACTIONS(6521), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [115986] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6523), 1, + anon_sym_DOLLAR, + ACTIONS(6525), 1, + anon_sym_DQUOTE, + STATE(2759), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116016] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6527), 1, + anon_sym_DOLLAR, + ACTIONS(6529), 1, + anon_sym_DQUOTE, + STATE(2735), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116046] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6067), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6531), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116076] = 8, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6539), 1, + anon_sym_BQUOTE, + ACTIONS(6541), 1, sym__heredoc_body_middle, - ACTIONS(6619), 1, + ACTIONS(6543), 1, sym__heredoc_body_end, - STATE(2733), 4, + STATE(2734), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [116629] = 9, + [116104] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6545), 1, + anon_sym_DOLLAR, + ACTIONS(6547), 1, + anon_sym_DQUOTE, + STATE(2753), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116134] = 8, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6539), 1, + anon_sym_BQUOTE, + ACTIONS(6541), 1, + sym__heredoc_body_middle, + ACTIONS(6549), 1, + sym__heredoc_body_end, + STATE(2734), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [116162] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6551), 1, + anon_sym_DOLLAR, + ACTIONS(6554), 1, + anon_sym_DQUOTE, + ACTIONS(6556), 1, + sym__string_content, + ACTIONS(6559), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6562), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6565), 1, + anon_sym_BQUOTE, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116192] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6025), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6568), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116222] = 8, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6570), 1, + anon_sym_DOLLAR, + ACTIONS(6573), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6576), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6579), 1, + anon_sym_BQUOTE, + ACTIONS(6582), 1, + sym__heredoc_body_middle, + ACTIONS(6585), 1, + sym__heredoc_body_end, + STATE(2734), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [116250] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6051), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6587), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116280] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6087), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6589), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116310] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6091), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6591), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116340] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6593), 1, + anon_sym_DOLLAR, + ACTIONS(6595), 1, + anon_sym_DQUOTE, + STATE(2746), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116370] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6597), 1, + anon_sym_DOLLAR, + ACTIONS(6599), 1, + anon_sym_DQUOTE, + STATE(2781), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116400] = 8, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6539), 1, + anon_sym_BQUOTE, + ACTIONS(6601), 1, + sym__heredoc_body_middle, + ACTIONS(6603), 1, + sym__heredoc_body_end, + STATE(2731), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [116428] = 8, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6533), 1, + anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6539), 1, + anon_sym_BQUOTE, + ACTIONS(6605), 1, + sym__heredoc_body_middle, + ACTIONS(6607), 1, + sym__heredoc_body_end, + STATE(2756), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [116456] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6041), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6609), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116486] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(6085), 1, anon_sym_DQUOTE, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6611), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116516] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6613), 1, + anon_sym_DOLLAR, + ACTIONS(6615), 1, + anon_sym_DQUOTE, + STATE(2733), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116546] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6037), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6617), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116576] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6089), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6619), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116606] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6621), 1, anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116659] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, ACTIONS(6623), 1, - anon_sym_DOLLAR, + anon_sym_DQUOTE, + STATE(2742), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116636] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, ACTIONS(6625), 1, - anon_sym_DQUOTE, - STATE(2760), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116689] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR, ACTIONS(6627), 1, - anon_sym_DOLLAR, - ACTIONS(6629), 1, anon_sym_DQUOTE, - STATE(2730), 1, + STATE(2771), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [116719] = 9, + [116666] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6007), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, - ACTIONS(6631), 1, + ACTIONS(6629), 1, anon_sym_DOLLAR, - STATE(2738), 1, + ACTIONS(6631), 1, + anon_sym_DQUOTE, + STATE(2743), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [116749] = 9, + [116696] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6633), 1, anon_sym_DOLLAR, ACTIONS(6635), 1, anon_sym_DQUOTE, - STATE(2775), 1, + STATE(2718), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [116779] = 9, + [116726] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6009), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6637), 1, anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116809] = 8, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6595), 1, - anon_sym_DOLLAR, - ACTIONS(6597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6599), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6601), 1, - anon_sym_BQUOTE, ACTIONS(6639), 1, - sym__heredoc_body_middle, - ACTIONS(6641), 1, - sym__heredoc_body_end, - STATE(2765), 4, + anon_sym_DQUOTE, + STATE(2752), 1, + aux_sym_string_repeat1, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [116837] = 9, + [116756] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6035), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6641), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116786] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6095), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6643), 1, anon_sym_DOLLAR, - ACTIONS(6645), 1, - anon_sym_DQUOTE, - STATE(2764), 1, + STATE(2732), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [116867] = 9, + [116816] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6125), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6645), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116846] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6647), 1, anon_sym_DOLLAR, ACTIONS(6649), 1, anon_sym_DQUOTE, - STATE(2761), 1, + STATE(2719), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [116897] = 9, - ACTIONS(3), 1, + [116876] = 8, + ACTIONS(4073), 1, sym_comment, - ACTIONS(5975), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6651), 1, + ACTIONS(6533), 1, anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116927] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6535), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6537), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6539), 1, anon_sym_BQUOTE, - ACTIONS(6653), 1, - anon_sym_DOLLAR, - ACTIONS(6655), 1, - anon_sym_DQUOTE, - STATE(2752), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116957] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6113), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6657), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [116987] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5985), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6659), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117017] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6103), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6661), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117047] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6663), 1, - anon_sym_DOLLAR, - ACTIONS(6665), 1, - anon_sym_DQUOTE, - STATE(2781), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117077] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6109), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6667), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117107] = 8, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6595), 1, - anon_sym_DOLLAR, - ACTIONS(6597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6599), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6601), 1, - anon_sym_BQUOTE, - ACTIONS(6603), 1, + ACTIONS(6541), 1, sym__heredoc_body_middle, - ACTIONS(6669), 1, + ACTIONS(6651), 1, sym__heredoc_body_end, - STATE(2733), 4, + STATE(2734), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [117135] = 4, + [116904] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6673), 1, + ACTIONS(6027), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6653), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116934] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6655), 1, + anon_sym_DOLLAR, + ACTIONS(6657), 1, + anon_sym_DQUOTE, + STATE(2762), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116964] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6029), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6659), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [116994] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6663), 1, aux_sym__simple_variable_name_token1, - ACTIONS(6675), 2, + ACTIONS(6665), 2, anon_sym_0, anon_sym__, - ACTIONS(6671), 7, + ACTIONS(6661), 7, anon_sym_BANG, anon_sym_DASH, anon_sym_QMARK, @@ -116892,532 +116993,601 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_POUND, anon_sym_STAR, anon_sym_AT, - [117155] = 9, + [117014] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6081), 1, + ACTIONS(6011), 1, anon_sym_DQUOTE, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6667), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117044] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6021), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6669), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117074] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6079), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6671), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117104] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6673), 1, + anon_sym_DOLLAR, + ACTIONS(6675), 1, + anon_sym_DQUOTE, + STATE(2736), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117134] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6677), 1, anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117185] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, ACTIONS(6679), 1, - anon_sym_DOLLAR, - ACTIONS(6681), 1, anon_sym_DQUOTE, - STATE(2758), 1, + STATE(2728), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117215] = 9, + [117164] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6479), 1, + ACTIONS(6107), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6681), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117194] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6683), 1, anon_sym_DOLLAR, ACTIONS(6685), 1, anon_sym_DQUOTE, - STATE(2773), 1, + STATE(2757), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117245] = 9, + [117224] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6001), 1, + ACTIONS(6009), 1, anon_sym_DQUOTE, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6687), 1, anon_sym_DOLLAR, - STATE(2738), 1, + STATE(2732), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117275] = 9, + [117254] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6113), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6689), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117284] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6691), 1, + anon_sym_DOLLAR, + ACTIONS(6693), 1, + anon_sym_DQUOTE, + STATE(2766), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117314] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6103), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6695), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117344] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6697), 1, + anon_sym_DOLLAR, + ACTIONS(6699), 1, + anon_sym_DQUOTE, + STATE(2745), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117374] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6005), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6701), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117404] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6703), 1, + anon_sym_DOLLAR, + ACTIONS(6705), 1, + anon_sym_DQUOTE, + STATE(2773), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117434] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(6115), 1, anon_sym_DQUOTE, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, - ACTIONS(6689), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117305] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6041), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6691), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117335] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5973), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6693), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117365] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6695), 1, - anon_sym_DOLLAR, - ACTIONS(6697), 1, - anon_sym_DQUOTE, - STATE(2778), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117395] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6039), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6699), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117425] = 8, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6595), 1, - anon_sym_DOLLAR, - ACTIONS(6597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6599), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6601), 1, - anon_sym_BQUOTE, - ACTIONS(6701), 1, - sym__heredoc_body_middle, - ACTIONS(6703), 1, - sym__heredoc_body_end, - STATE(2748), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [117453] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6705), 1, - anon_sym_DOLLAR, ACTIONS(6707), 1, - anon_sym_DQUOTE, - STATE(2767), 1, + anon_sym_DOLLAR, + STATE(2732), 1, aux_sym_string_repeat1, - STATE(2803), 3, + STATE(2825), 3, sym_simple_expansion, sym_expansion, sym_command_substitution, - [117483] = 9, + [117464] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6033), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, + ACTIONS(6493), 1, sym__string_content, - ACTIONS(6481), 1, + ACTIONS(6495), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, + ACTIONS(6497), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, + ACTIONS(6499), 1, anon_sym_BQUOTE, ACTIONS(6709), 1, anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117513] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, ACTIONS(6711), 1, - anon_sym_DOLLAR, + anon_sym_DQUOTE, + STATE(2769), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117494] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, ACTIONS(6713), 1, - anon_sym_DQUOTE, - STATE(2772), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117543] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, + anon_sym_DOLLAR, ACTIONS(6715), 1, + anon_sym_DQUOTE, + STATE(2754), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117524] = 8, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6533), 1, anon_sym_DOLLAR, + ACTIONS(6535), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6537), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6539), 1, + anon_sym_BQUOTE, ACTIONS(6717), 1, - anon_sym_DQUOTE, - STATE(2745), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117573] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6095), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6719), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117603] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6117), 1, - anon_sym_DQUOTE, - ACTIONS(6479), 1, - sym__string_content, - ACTIONS(6481), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6483), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6485), 1, - anon_sym_BQUOTE, - ACTIONS(6721), 1, - anon_sym_DOLLAR, - STATE(2738), 1, - aux_sym_string_repeat1, - STATE(2803), 3, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [117633] = 8, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6595), 1, - anon_sym_DOLLAR, - ACTIONS(6597), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6599), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6601), 1, - anon_sym_BQUOTE, - ACTIONS(6723), 1, sym__heredoc_body_middle, - ACTIONS(6725), 1, + ACTIONS(6719), 1, sym__heredoc_body_end, - STATE(2743), 4, + STATE(2729), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [117661] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6727), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6729), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [117677] = 7, - ACTIONS(145), 1, - anon_sym_LBRACK, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6731), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(6733), 1, - anon_sym_LPAREN, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6737), 1, - anon_sym_LBRACK_LBRACK, - STATE(1884), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [117701] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6739), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6741), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [117717] = 7, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(145), 1, - anon_sym_LBRACK, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6731), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6737), 1, - anon_sym_LBRACK_LBRACK, - STATE(1801), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [117741] = 7, - ACTIONS(139), 1, - anon_sym_LPAREN, - ACTIONS(145), 1, - anon_sym_LBRACK, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6731), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6737), 1, - anon_sym_LBRACK_LBRACK, - STATE(1782), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [117765] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6743), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6745), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [117781] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6747), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - ACTIONS(6749), 5, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [117797] = 7, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6751), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_LBRACK_LBRACK, - STATE(2129), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [117821] = 7, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6757), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(6759), 1, - anon_sym_LPAREN, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6763), 1, - anon_sym_LBRACK_LBRACK, - STATE(1921), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [117845] = 5, + [117552] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, - anon_sym_LF, - ACTIONS(6765), 1, - sym__concat, - STATE(2832), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1195), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - sym__special_character, - anon_sym_AMP, - [117865] = 7, - ACTIONS(77), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, - anon_sym_LBRACK, - ACTIONS(4189), 1, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6721), 1, + anon_sym_DOLLAR, + ACTIONS(6723), 1, + anon_sym_DQUOTE, + STATE(2775), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117582] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6725), 1, + anon_sym_DOLLAR, + ACTIONS(6727), 1, + anon_sym_DQUOTE, + STATE(2768), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117612] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5993), 1, + anon_sym_DQUOTE, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6729), 1, + anon_sym_DOLLAR, + STATE(2732), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117642] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6731), 1, + anon_sym_DOLLAR, + ACTIONS(6733), 1, + anon_sym_DQUOTE, + STATE(2737), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117672] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6493), 1, + sym__string_content, + ACTIONS(6495), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6499), 1, + anon_sym_BQUOTE, + ACTIONS(6735), 1, + anon_sym_DOLLAR, + ACTIONS(6737), 1, + anon_sym_DQUOTE, + STATE(2761), 1, + aux_sym_string_repeat1, + STATE(2825), 3, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [117702] = 7, + ACTIONS(23), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6739), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6761), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6763), 1, + ACTIONS(6743), 1, anon_sym_LBRACK_LBRACK, - STATE(1914), 3, + STATE(2124), 3, sym_compound_statement, sym_subshell, sym_test_command, - [117889] = 3, - ACTIONS(4189), 1, + [117726] = 7, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6745), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6749), 1, + anon_sym_LBRACK_LBRACK, + STATE(1810), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [117750] = 7, + ACTIONS(147), 1, + anon_sym_LPAREN, + ACTIONS(153), 1, + anon_sym_LBRACK, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6745), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6749), 1, + anon_sym_LBRACK_LBRACK, + STATE(1802), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [117774] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6751), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(6753), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [117790] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6755), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(6757), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [117806] = 7, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6759), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(6761), 1, + anon_sym_LPAREN, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6765), 1, + anon_sym_LBRACK_LBRACK, + STATE(2007), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [117830] = 7, + ACTIONS(23), 1, + anon_sym_LPAREN, + ACTIONS(29), 1, + anon_sym_LBRACK, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6739), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6743), 1, + anon_sym_LBRACK_LBRACK, + STATE(2114), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [117854] = 3, + ACTIONS(4073), 1, sym_comment, ACTIONS(6767), 3, anon_sym_LT, @@ -117429,359 +117599,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [117905] = 7, - ACTIONS(27), 1, + [117870] = 7, + ACTIONS(153), 1, anon_sym_LBRACK, - ACTIONS(4189), 1, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6751), 1, + ACTIONS(6745), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6753), 1, + ACTIONS(6747), 1, anon_sym_LBRACE, - ACTIONS(6755), 1, + ACTIONS(6749), 1, anon_sym_LBRACK_LBRACK, ACTIONS(6771), 1, anon_sym_LPAREN, - STATE(2194), 3, + STATE(1885), 3, sym_compound_statement, sym_subshell, sym_test_command, - [117929] = 7, - ACTIONS(77), 1, - anon_sym_LPAREN, - ACTIONS(83), 1, + [117894] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6773), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(6775), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [117910] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6777), 3, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + ACTIONS(6779), 5, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [117926] = 7, + ACTIONS(29), 1, anon_sym_LBRACK, - ACTIONS(4189), 1, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6757), 1, + ACTIONS(6739), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(6761), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6763), 1, + ACTIONS(6743), 1, anon_sym_LBRACK_LBRACK, - STATE(1952), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [117953] = 7, - ACTIONS(21), 1, - anon_sym_LPAREN, - ACTIONS(27), 1, - anon_sym_LBRACK, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6751), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6755), 1, - anon_sym_LBRACK_LBRACK, - STATE(2135), 3, - sym_compound_statement, - sym_subshell, - sym_test_command, - [117977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 1, - sym__concat, - ACTIONS(1274), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [117992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6773), 1, - anon_sym_LF, - ACTIONS(6775), 6, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP, - [118007] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 1, - sym__concat, - ACTIONS(1298), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 1, - sym__concat, - ACTIONS(1310), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118037] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6779), 1, - sym__concat, - ACTIONS(6777), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118052] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 1, - sym__concat, - ACTIONS(1302), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118067] = 6, - ACTIONS(3), 1, - sym_comment, ACTIONS(6781), 1, + anon_sym_LPAREN, + STATE(2195), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [117950] = 7, + ACTIONS(81), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6759), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6765), 1, + anon_sym_LBRACK_LBRACK, + STATE(1914), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [117974] = 7, + ACTIONS(81), 1, + anon_sym_LPAREN, + ACTIONS(87), 1, + anon_sym_LBRACK, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6759), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6765), 1, + anon_sym_LBRACK_LBRACK, + STATE(1926), 3, + sym_compound_statement, + sym_subshell, + sym_test_command, + [117998] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, anon_sym_LF, ACTIONS(6783), 1, + sym__concat, + STATE(2817), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1227), 5, anon_sym_in, - ACTIONS(6787), 1, - sym__special_character, - STATE(2815), 1, - aux_sym__literal_repeat1, - ACTIONS(6785), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, + sym__special_character, anon_sym_AMP, - [118088] = 6, + [118018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6765), 1, - sym__concat, - ACTIONS(6789), 1, + ACTIONS(6785), 1, anon_sym_LF, + ACTIONS(6787), 1, + anon_sym_in, ACTIONS(6791), 1, - anon_sym_in, - STATE(2832), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6793), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 1, - sym__concat, - ACTIONS(1286), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118124] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 1, - anon_sym_LF, - ACTIONS(6795), 1, - sym__concat, - STATE(2808), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1215), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118143] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6798), 1, - anon_sym_LF, - ACTIONS(6800), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(497), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [118160] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_LF, - ACTIONS(6804), 6, - anon_sym_SEMI, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP, - [118175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1316), 1, - sym__concat, - ACTIONS(1314), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 1, - sym__concat, - ACTIONS(1290), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118205] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6787), 1, sym__special_character, + STATE(2808), 1, + aux_sym__literal_repeat1, + ACTIONS(6789), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118039] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6793), 1, + anon_sym_LF, + ACTIONS(6795), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(517), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [118056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1265), 1, + sym__concat, + ACTIONS(1263), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + sym__concat, + ACTIONS(1320), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118086] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 1, + anon_sym_LF, + ACTIONS(6797), 1, + sym__concat, + STATE(2803), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1211), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + sym__concat, + ACTIONS(1346), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 1, + sym__concat, + ACTIONS(1346), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118135] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 1, + sym__special_character, + ACTIONS(6800), 1, + anon_sym_LF, + ACTIONS(6802), 1, + anon_sym_in, + STATE(2808), 1, + aux_sym__literal_repeat1, + ACTIONS(6804), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118156] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6783), 1, + sym__concat, ACTIONS(6806), 1, anon_sym_LF, ACTIONS(6808), 1, anon_sym_in, - STATE(2815), 1, - aux_sym__literal_repeat1, + STATE(2817), 1, + aux_sym_concatenation_repeat1, ACTIONS(6810), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [118226] = 3, + [118177] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, + ACTIONS(1374), 1, anon_sym_LF, - ACTIONS(6814), 6, + ACTIONS(6812), 1, + sym__special_character, + STATE(2808), 1, + aux_sym__literal_repeat1, + ACTIONS(1369), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 1, + sym__concat, + ACTIONS(1394), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118211] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6783), 1, + sym__concat, + ACTIONS(6815), 1, + anon_sym_LF, + ACTIONS(6817), 1, + anon_sym_in, + STATE(2817), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6819), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 1, + sym__concat, + ACTIONS(1292), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118247] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 1, + sym__concat, + ACTIONS(1350), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6821), 1, + anon_sym_LF, + ACTIONS(6823), 6, anon_sym_SEMI, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_AMP, - [118241] = 5, + [118277] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1360), 1, - anon_sym_LF, - ACTIONS(6816), 1, + sym__concat, + ACTIONS(1358), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 1, + sym__concat, + ACTIONS(1296), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118307] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6791), 1, sym__special_character, - STATE(2815), 1, - aux_sym__literal_repeat1, - ACTIONS(1355), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 1, - sym__concat, - ACTIONS(1378), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1376), 1, - sym__concat, - ACTIONS(1374), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118290] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1364), 1, - sym__concat, - ACTIONS(1362), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 1, - sym__concat, - ACTIONS(1294), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118320] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6787), 1, - sym__special_character, - ACTIONS(6819), 1, - anon_sym_LF, - ACTIONS(6821), 1, - anon_sym_in, - STATE(2815), 1, - aux_sym__literal_repeat1, - ACTIONS(6823), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118341] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6765), 1, - sym__concat, ACTIONS(6825), 1, anon_sym_LF, ACTIONS(6827), 1, anon_sym_in, - STATE(2832), 1, - aux_sym_concatenation_repeat1, + STATE(2808), 1, + aux_sym__literal_repeat1, ACTIONS(6829), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, + [118328] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1220), 1, + anon_sym_LF, + ACTIONS(6831), 1, + sym__concat, + STATE(2803), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1218), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 1, + sym__concat, + ACTIONS(1380), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, [118362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 1, + ACTIONS(1302), 1, sym__concat, - ACTIONS(1348), 6, + ACTIONS(1300), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, @@ -117791,1455 +117985,1390 @@ static const uint16_t ts_small_parse_table[] = { [118377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6831), 1, + ACTIONS(1290), 1, sym__concat, - ACTIONS(6571), 6, + ACTIONS(1288), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [118392] = 6, + [118392] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6765), 1, + ACTIONS(1269), 1, sym__concat, + ACTIONS(1267), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118407] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(6833), 1, anon_sym_LF, - ACTIONS(6835), 1, - anon_sym_in, - STATE(2832), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6837), 3, + ACTIONS(6835), 6, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 1, - sym__concat, - ACTIONS(1344), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1253), 1, - sym__concat, - ACTIONS(1251), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 1, - sym__concat, - ACTIONS(1282), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118458] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 1, - sym__concat, - ACTIONS(1278), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 1, - sym__concat, - ACTIONS(1340), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 1, - sym__concat, - ACTIONS(1270), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118503] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6839), 1, - anon_sym_LF, - ACTIONS(6841), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(876), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [118520] = 5, + anon_sym_AMP, + [118422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1233), 1, - anon_sym_LF, + ACTIONS(1330), 1, + sym__concat, + ACTIONS(1328), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 1, + sym__concat, + ACTIONS(1304), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6839), 1, + sym__concat, + ACTIONS(6837), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118467] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6841), 1, + sym__concat, + ACTIONS(6554), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118482] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6783), 1, + sym__concat, ACTIONS(6843), 1, - sym__concat, - STATE(2808), 1, + anon_sym_LF, + ACTIONS(6845), 1, + anon_sym_in, + STATE(2817), 1, aux_sym_concatenation_repeat1, - ACTIONS(1231), 4, + ACTIONS(6847), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118503] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 1, + sym__concat, + ACTIONS(1308), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6849), 1, + anon_sym_LF, + ACTIONS(6851), 6, + anon_sym_SEMI, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP, + [118533] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 1, + sym__concat, + ACTIONS(1284), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 1, + sym__concat, + ACTIONS(1312), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 1, + sym__concat, + ACTIONS(1324), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6853), 1, + anon_sym_LF, + ACTIONS(6855), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(839), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [118595] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 1, + sym__concat, + ACTIONS(1316), 6, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym__string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118610] = 3, + ACTIONS(1300), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1302), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118624] = 3, + ACTIONS(1304), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1306), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118638] = 3, + ACTIONS(1358), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1360), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118652] = 3, + ACTIONS(1346), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1348), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118666] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1324), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [118539] = 3, + [118680] = 3, ACTIONS(3), 1, sym_comment, + ACTIONS(1360), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1358), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118694] = 6, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6857), 1, + anon_sym_fi, + ACTIONS(6859), 1, + anon_sym_elif, + ACTIONS(6861), 1, + anon_sym_else, + STATE(3458), 1, + sym_else_clause, + STATE(2916), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [118714] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1455), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1453), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118728] = 6, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6859), 1, + anon_sym_elif, + ACTIONS(6861), 1, + anon_sym_else, + ACTIONS(6863), 1, + anon_sym_fi, + STATE(3273), 1, + sym_else_clause, + STATE(2916), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [118748] = 3, + ACTIONS(1328), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1330), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118762] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1346), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1346), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118790] = 3, + ACTIONS(1324), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1326), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118804] = 3, + ACTIONS(1320), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1322), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118818] = 3, + ACTIONS(1263), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1265), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118832] = 3, + ACTIONS(1316), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1318), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118846] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6865), 1, + anon_sym_LF, + ACTIONS(6867), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(517), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [118862] = 3, + ACTIONS(1394), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1396), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118876] = 3, + ACTIONS(1312), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1314), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1213), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1211), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [118904] = 3, ACTIONS(1308), 1, - sym__concat, - ACTIONS(1306), 6, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1310), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6869), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [118554] = 3, + [118930] = 3, + ACTIONS(1267), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1269), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [118944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 1, - sym__concat, - ACTIONS(1340), 6, + ACTIONS(6554), 6, anon_sym_DOLLAR, anon_sym_DQUOTE, sym__string_content, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [118569] = 3, - ACTIONS(1302), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1304), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118583] = 3, - ACTIONS(1290), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1292), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118597] = 3, - ACTIONS(1340), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1342), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118611] = 3, + [118956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 2, + ACTIONS(1378), 2, sym__concat, anon_sym_LF, - ACTIONS(1374), 4, + ACTIONS(1376), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [118625] = 3, - ACTIONS(1340), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1342), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118639] = 3, - ACTIONS(1344), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1346), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118653] = 3, - ACTIONS(1348), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1350), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118667] = 3, - ACTIONS(1362), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1364), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118681] = 3, + [118970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1446), 2, + ACTIONS(1443), 2, sym__concat, anon_sym_LF, - ACTIONS(1444), 4, + ACTIONS(1441), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [118695] = 3, + [118984] = 6, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6859), 1, + anon_sym_elif, + ACTIONS(6861), 1, + anon_sym_else, + ACTIONS(6871), 1, + anon_sym_fi, + STATE(3379), 1, + sym_else_clause, + STATE(2916), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [119004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(1330), 2, sym__concat, anon_sym_LF, - ACTIONS(1362), 4, + ACTIONS(1328), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [118709] = 3, + [119018] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1197), 1, + ACTIONS(1352), 2, + sym__concat, anon_sym_LF, - ACTIONS(1195), 5, + ACTIONS(1350), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119032] = 3, + ACTIONS(1350), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1352), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [119046] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6849), 1, + anon_sym_LF, + ACTIONS(6851), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_BQUOTE, + anon_sym_AMP, + [119060] = 3, + ACTIONS(1296), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1298), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [119074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1320), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119088] = 3, + ACTIONS(1292), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1294), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [119102] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1396), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1394), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119116] = 3, + ACTIONS(1346), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1348), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [119130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6833), 1, + anon_sym_LF, + ACTIONS(6835), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_BQUOTE, + anon_sym_AMP, + [119144] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6873), 1, + anon_sym_LF, + ACTIONS(6875), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(839), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [119160] = 3, + ACTIONS(1380), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1382), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [119174] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1308), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1318), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1316), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1312), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119216] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1304), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119230] = 3, + ACTIONS(1288), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1290), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [119244] = 3, + ACTIONS(1284), 1, + anon_sym_DOLLAR, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1286), 5, + sym__heredoc_body_middle, + sym__heredoc_body_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + [119258] = 6, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6859), 1, + anon_sym_elif, + ACTIONS(6861), 1, + anon_sym_else, + ACTIONS(6877), 1, + anon_sym_fi, + STATE(3296), 1, + sym_else_clause, + STATE(2916), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [119278] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1267), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1300), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119306] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1296), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1292), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119334] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1229), 1, + anon_sym_LF, + ACTIONS(1227), 5, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, sym__special_character, anon_sym_AMP, - [118723] = 3, - ACTIONS(3), 1, + [119348] = 6, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1253), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1251), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118737] = 3, - ACTIONS(1374), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1376), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118751] = 3, - ACTIONS(1378), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1380), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1428), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1426), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118779] = 3, - ACTIONS(1310), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1312), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118793] = 3, - ACTIONS(1306), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1308), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1272), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1270), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118821] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1436), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1434), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118835] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6571), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118847] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6845), 6, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym__string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1276), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1274), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1380), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1378), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118887] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1280), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1278), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1284), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1282), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118915] = 3, - ACTIONS(1298), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1300), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118929] = 6, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6847), 1, - anon_sym_fi, - ACTIONS(6849), 1, - anon_sym_elif, - ACTIONS(6851), 1, - anon_sym_else, - STATE(3416), 1, - sym_else_clause, - STATE(2922), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [118949] = 3, - ACTIONS(1294), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1296), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1296), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1294), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [118977] = 3, - ACTIONS(1314), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1316), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [118991] = 3, - ACTIONS(1286), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1288), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [119005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1217), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1215), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119019] = 6, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6849), 1, - anon_sym_elif, - ACTIONS(6851), 1, - anon_sym_else, - ACTIONS(6853), 1, - anon_sym_fi, - STATE(3297), 1, - sym_else_clause, - STATE(2922), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [119039] = 3, - ACTIONS(1282), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1284), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [119053] = 3, - ACTIONS(1278), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1280), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [119067] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6773), 1, - anon_sym_LF, - ACTIONS(6775), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_BQUOTE, - anon_sym_AMP, - [119081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6812), 1, - anon_sym_LF, - ACTIONS(6814), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_BQUOTE, - anon_sym_AMP, - [119095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1288), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1286), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119109] = 6, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6849), 1, - anon_sym_elif, - ACTIONS(6851), 1, - anon_sym_else, - ACTIONS(6855), 1, - anon_sym_fi, - STATE(3463), 1, - sym_else_clause, - STATE(2922), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [119129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1440), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1438), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119143] = 6, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6849), 1, - anon_sym_elif, - ACTIONS(6851), 1, - anon_sym_else, - ACTIONS(6857), 1, - anon_sym_fi, - STATE(3274), 1, - sym_else_clause, - STATE(2922), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [119163] = 6, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6849), 1, - anon_sym_elif, - ACTIONS(6851), 1, - anon_sym_else, ACTIONS(6859), 1, - anon_sym_fi, - STATE(3454), 1, - sym_else_clause, - STATE(2922), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [119183] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1348), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1344), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1292), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1290), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119225] = 6, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6849), 1, anon_sym_elif, - ACTIONS(6851), 1, - anon_sym_else, ACTIONS(6861), 1, + anon_sym_else, + ACTIONS(6879), 1, anon_sym_fi, - STATE(3271), 1, + STATE(3353), 1, sym_else_clause, - STATE(2922), 2, + STATE(2916), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [119245] = 3, + [119368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1432), 2, + ACTIONS(1290), 2, sym__concat, anon_sym_LF, - ACTIONS(1430), 4, + ACTIONS(1288), 4, anon_sym_in, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119259] = 3, - ACTIONS(3), 1, + [119382] = 6, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1316), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1314), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1312), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1310), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119287] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1340), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119301] = 3, - ACTIONS(1274), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1276), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [119315] = 3, - ACTIONS(1270), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1272), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [119329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1308), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1306), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119343] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6863), 1, - anon_sym_LF, - ACTIONS(6865), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(876), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [119359] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6802), 1, - anon_sym_LF, - ACTIONS(6804), 5, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_BQUOTE, - anon_sym_AMP, - [119373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1304), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1302), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1300), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1298), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 2, - sym__concat, - anon_sym_LF, - ACTIONS(1340), 4, - anon_sym_in, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119415] = 3, - ACTIONS(1251), 1, - anon_sym_DOLLAR, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1253), 5, - sym__heredoc_body_middle, - sym__heredoc_body_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - [119429] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6867), 1, - anon_sym_LF, - ACTIONS(6869), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(497), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [119445] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6871), 1, - anon_sym_SEMI, - ACTIONS(6873), 1, - anon_sym_do, - STATE(2053), 2, - sym_do_group, - sym_compound_statement, - [119462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_BQUOTE, - ACTIONS(6875), 1, - anon_sym_LF, - ACTIONS(6877), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119477] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(876), 1, - anon_sym_RPAREN, - ACTIONS(6863), 1, - anon_sym_LF, - ACTIONS(6865), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119492] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6789), 1, - anon_sym_LF, - ACTIONS(6791), 1, - anon_sym_in, - ACTIONS(6793), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119507] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_RPAREN, - ACTIONS(6867), 1, - anon_sym_LF, - ACTIONS(6869), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119522] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6833), 1, - anon_sym_LF, - ACTIONS(6835), 1, - anon_sym_in, - ACTIONS(6837), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6879), 1, - anon_sym_LF, + ACTIONS(6859), 1, + anon_sym_elif, + ACTIONS(6861), 1, + anon_sym_else, ACTIONS(6881), 1, - anon_sym_in, - ACTIONS(6883), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119552] = 4, + anon_sym_fi, + STATE(3418), 1, + sym_else_clause, + STATE(2916), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [119402] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6825), 1, + ACTIONS(6821), 1, anon_sym_LF, - ACTIONS(6827), 1, + ACTIONS(6823), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_BQUOTE, + anon_sym_AMP, + [119416] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1284), 4, anon_sym_in, - ACTIONS(6829), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119567] = 5, - ACTIONS(4189), 1, + [119430] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6753), 1, + ACTIONS(1265), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1263), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119444] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1451), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1449), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1427), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1425), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119472] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 2, + sym__concat, + anon_sym_LF, + ACTIONS(1380), 4, + anon_sym_in, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119486] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, anon_sym_LBRACE, + ACTIONS(6883), 1, + anon_sym_SEMI, ACTIONS(6885), 1, - anon_sym_SEMI, - ACTIONS(6887), 1, anon_sym_do, - STATE(2122), 2, + STATE(2019), 2, sym_do_group, sym_compound_statement, - [119584] = 5, - ACTIONS(4189), 1, + [119503] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, + ACTIONS(517), 1, + anon_sym_BQUOTE, ACTIONS(6887), 1, - anon_sym_do, - ACTIONS(6889), 1, + anon_sym_LF, + ACTIONS(6889), 3, anon_sym_SEMI, - STATE(2085), 2, - sym_do_group, - sym_compound_statement, - [119601] = 5, - ACTIONS(4189), 1, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119518] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6735), 1, + ACTIONS(839), 1, + anon_sym_RPAREN, + ACTIONS(6873), 1, + anon_sym_LF, + ACTIONS(6875), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119533] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6806), 1, + anon_sym_LF, + ACTIONS(6808), 1, + anon_sym_in, + ACTIONS(6810), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119548] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6741), 1, anon_sym_LBRACE, ACTIONS(6891), 1, anon_sym_SEMI, ACTIONS(6893), 1, anon_sym_do, - STATE(1756), 2, + STATE(2170), 2, sym_do_group, sym_compound_statement, - [119618] = 5, - ACTIONS(4189), 1, + [119565] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(517), 1, + anon_sym_RPAREN, + ACTIONS(6865), 1, + anon_sym_LF, + ACTIONS(6867), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119580] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6843), 1, + anon_sym_LF, + ACTIONS(6845), 1, + anon_sym_in, + ACTIONS(6847), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119595] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, ACTIONS(6895), 1, - anon_sym_SEMI, - STATE(2107), 2, - sym_do_group, - sym_compound_statement, - [119635] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, + anon_sym_LF, ACTIONS(6897), 1, + anon_sym_in, + ACTIONS(6899), 3, anon_sym_SEMI, - STATE(2103), 2, - sym_do_group, - sym_compound_statement, - [119652] = 5, - ACTIONS(4189), 1, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119610] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, - ACTIONS(6899), 1, + ACTIONS(6815), 1, + anon_sym_LF, + ACTIONS(6817), 1, + anon_sym_in, + ACTIONS(6819), 3, anon_sym_SEMI, - STATE(2102), 2, - sym_do_group, - sym_compound_statement, - [119669] = 5, - ACTIONS(4189), 1, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119625] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6735), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, ACTIONS(6893), 1, anon_sym_do, ACTIONS(6901), 1, anon_sym_SEMI, - STATE(1762), 2, + STATE(2126), 2, sym_do_group, sym_compound_statement, - [119686] = 5, - ACTIONS(4189), 1, + [119642] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_LBRACE, - ACTIONS(6893), 1, - anon_sym_do, ACTIONS(6903), 1, anon_sym_SEMI, - STATE(1763), 2, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1775), 2, sym_do_group, sym_compound_statement, - [119703] = 3, - ACTIONS(3), 1, + [119659] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6802), 2, - ts_builtin_sym_end, - anon_sym_LF, - ACTIONS(6804), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119716] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, ACTIONS(6893), 1, anon_sym_do, - ACTIONS(6905), 1, + ACTIONS(6907), 1, anon_sym_SEMI, - STATE(1765), 2, + STATE(2147), 2, sym_do_group, sym_compound_statement, - [119733] = 6, - ACTIONS(4189), 1, + [119676] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4277), 1, - sym__concat, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(6909), 1, - anon_sym_RPAREN, - STATE(2941), 1, - aux_sym_concatenation_repeat1, - STATE(3011), 1, - aux_sym_case_item_repeat1, - [119752] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6753), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6887), 1, + ACTIONS(6893), 1, + anon_sym_do, + ACTIONS(6909), 1, + anon_sym_SEMI, + STATE(2181), 2, + sym_do_group, + sym_compound_statement, + [119693] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, anon_sym_do, ACTIONS(6911), 1, anon_sym_SEMI, - STATE(2119), 2, + STATE(2176), 2, sym_do_group, sym_compound_statement, - [119769] = 5, - ACTIONS(4189), 1, + [119710] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_LBRACE, - ACTIONS(6893), 1, + ACTIONS(6905), 1, anon_sym_do, ACTIONS(6913), 1, anon_sym_SEMI, - STATE(1771), 2, + STATE(1781), 2, sym_do_group, sym_compound_statement, - [119786] = 4, - ACTIONS(3), 1, + [119727] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1157), 1, - ts_builtin_sym_end, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, ACTIONS(6915), 1, - anon_sym_LF, - ACTIONS(6917), 3, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119801] = 5, - ACTIONS(4189), 1, + STATE(1782), 2, + sym_do_group, + sym_compound_statement, + [119744] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6735), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, ACTIONS(6893), 1, anon_sym_do, + ACTIONS(6917), 1, + anon_sym_SEMI, + STATE(2175), 2, + sym_do_group, + sym_compound_statement, + [119761] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, ACTIONS(6919), 1, anon_sym_SEMI, - STATE(1772), 2, + STATE(1784), 2, sym_do_group, sym_compound_statement, - [119818] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6893), 1, - anon_sym_do, - ACTIONS(6921), 1, - anon_sym_SEMI, - STATE(1773), 2, - sym_do_group, - sym_compound_statement, - [119835] = 3, + [119778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6773), 2, + ACTIONS(6821), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6775), 3, + ACTIONS(6823), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119848] = 5, - ACTIONS(4189), 1, + [119791] = 6, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, + ACTIONS(4297), 1, + sym__concat, + ACTIONS(6921), 1, + anon_sym_PIPE, ACTIONS(6923), 1, + anon_sym_RPAREN, + STATE(2970), 1, + aux_sym_concatenation_repeat1, + STATE(3011), 1, + aux_sym_case_item_repeat1, + [119810] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, + ACTIONS(6925), 1, anon_sym_SEMI, - STATE(2095), 2, + STATE(1790), 2, sym_do_group, sym_compound_statement, - [119865] = 6, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4277), 1, - sym__concat, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(6925), 1, - anon_sym_RPAREN, - STATE(2941), 1, - aux_sym_concatenation_repeat1, - STATE(3117), 1, - aux_sym_case_item_repeat1, - [119884] = 4, - ACTIONS(4189), 1, + [119827] = 4, + ACTIONS(4073), 1, sym_comment, ACTIONS(6929), 1, anon_sym_elif, ACTIONS(6927), 2, anon_sym_fi, anon_sym_else, - STATE(2922), 2, + STATE(2916), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [119899] = 6, - ACTIONS(4189), 1, + [119842] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4641), 1, - sym__special_character, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(6932), 1, - anon_sym_RPAREN, - STATE(1907), 1, - aux_sym__literal_repeat1, - STATE(3138), 1, - aux_sym_case_item_repeat1, - [119918] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_LBRACE, - ACTIONS(6893), 1, + ACTIONS(6905), 1, + anon_sym_do, + ACTIONS(6932), 1, + anon_sym_SEMI, + STATE(1791), 2, + sym_do_group, + sym_compound_statement, + [119859] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, anon_sym_do, ACTIONS(6934), 1, anon_sym_SEMI, - STATE(1780), 2, + STATE(1792), 2, sym_do_group, sym_compound_statement, - [119935] = 4, - ACTIONS(3), 1, + [119876] = 5, + ACTIONS(4073), 1, sym_comment, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, + anon_sym_do, ACTIONS(6936), 1, - anon_sym_LF, + anon_sym_SEMI, + STATE(2128), 2, + sym_do_group, + sym_compound_statement, + [119893] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, + anon_sym_do, ACTIONS(6938), 1, - anon_sym_in, - ACTIONS(6940), 3, anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [119950] = 4, + STATE(2163), 2, + sym_do_group, + sym_compound_statement, + [119910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(994), 1, + ACTIONS(1157), 1, ts_builtin_sym_end, - ACTIONS(6942), 1, + ACTIONS(6940), 1, anon_sym_LF, - ACTIONS(6944), 3, + ACTIONS(6942), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119965] = 3, + [119925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 2, + ACTIONS(6849), 2, ts_builtin_sym_end, anon_sym_LF, - ACTIONS(6814), 3, + ACTIONS(6851), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [119978] = 4, - ACTIONS(4189), 1, + [119938] = 6, + ACTIONS(4073), 1, sym_comment, - ACTIONS(4277), 1, + ACTIONS(4297), 1, sym__concat, - STATE(2941), 1, + ACTIONS(6921), 1, + anon_sym_PIPE, + ACTIONS(6944), 1, + anon_sym_RPAREN, + STATE(2970), 1, aux_sym_concatenation_repeat1, - ACTIONS(1197), 3, - anon_sym_PIPE, - anon_sym_RPAREN, - sym__special_character, - [119993] = 6, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4641), 1, - sym__special_character, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(6946), 1, - anon_sym_RPAREN, - STATE(1907), 1, - aux_sym__literal_repeat1, - STATE(3010), 1, + STATE(3138), 1, aux_sym_case_item_repeat1, - [120012] = 5, - ACTIONS(4189), 1, + [119957] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, - anon_sym_do, + ACTIONS(6946), 1, + anon_sym_LF, ACTIONS(6948), 1, + anon_sym_in, + ACTIONS(6950), 3, anon_sym_SEMI, - STATE(2000), 2, - sym_do_group, - sym_compound_statement, - [120029] = 5, - ACTIONS(4189), 1, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [119972] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6761), 1, + ACTIONS(6747), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, - anon_sym_do, - ACTIONS(6950), 1, - anon_sym_SEMI, - STATE(2040), 2, - sym_do_group, - sym_compound_statement, - [120046] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(6905), 1, anon_sym_do, ACTIONS(6952), 1, anon_sym_SEMI, - STATE(2056), 2, + STATE(1799), 2, sym_do_group, sym_compound_statement, - [120063] = 5, - ACTIONS(4189), 1, + [119989] = 6, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, + ACTIONS(4652), 1, + sym__special_character, + ACTIONS(6921), 1, + anon_sym_PIPE, ACTIONS(6954), 1, - anon_sym_SEMI, - STATE(2098), 2, - sym_do_group, - sym_compound_statement, - [120080] = 5, - ACTIONS(4189), 1, + anon_sym_RPAREN, + STATE(1909), 1, + aux_sym__literal_repeat1, + STATE(3140), 1, + aux_sym_case_item_repeat1, + [120008] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, - anon_sym_do, + ACTIONS(4297), 1, + sym__concat, + STATE(2970), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1229), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [120023] = 6, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4652), 1, + sym__special_character, + ACTIONS(6921), 1, + anon_sym_PIPE, ACTIONS(6956), 1, - anon_sym_SEMI, - STATE(2072), 2, - sym_do_group, - sym_compound_statement, - [120097] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, - anon_sym_do, - ACTIONS(6958), 1, - anon_sym_SEMI, - STATE(1940), 2, - sym_do_group, - sym_compound_statement, - [120114] = 4, + anon_sym_RPAREN, + STATE(1909), 1, + aux_sym__literal_repeat1, + STATE(3009), 1, + aux_sym_case_item_repeat1, + [120042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6960), 1, + ACTIONS(829), 1, + ts_builtin_sym_end, + ACTIONS(6958), 1, anon_sym_LF, - ACTIONS(6962), 1, - anon_sym_in, - ACTIONS(6964), 3, + ACTIONS(6960), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120129] = 5, - ACTIONS(4189), 1, + [120057] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6761), 1, + ACTIONS(6833), 2, + ts_builtin_sym_end, + anon_sym_LF, + ACTIONS(6835), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [120070] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(6885), 1, + anon_sym_do, + ACTIONS(6962), 1, + anon_sym_SEMI, + STATE(1962), 2, + sym_do_group, + sym_compound_statement, + [120087] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_do, + ACTIONS(6964), 1, + anon_sym_SEMI, + STATE(2014), 2, + sym_do_group, + sym_compound_statement, + [120104] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, anon_sym_do, ACTIONS(6966), 1, anon_sym_SEMI, + STATE(2021), 2, + sym_do_group, + sym_compound_statement, + [120121] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_do, + ACTIONS(6968), 1, + anon_sym_SEMI, + STATE(2071), 2, + sym_do_group, + sym_compound_statement, + [120138] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_do, + ACTIONS(6970), 1, + anon_sym_SEMI, + STATE(2060), 2, + sym_do_group, + sym_compound_statement, + [120155] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_do, + ACTIONS(6972), 1, + anon_sym_SEMI, STATE(2059), 2, sym_do_group, sym_compound_statement, - [120146] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, - anon_sym_do, - ACTIONS(6968), 1, - anon_sym_SEMI, - STATE(2045), 2, - sym_do_group, - sym_compound_statement, - [120163] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(876), 1, - anon_sym_BQUOTE, - ACTIONS(6970), 1, - anon_sym_LF, - ACTIONS(6972), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [120178] = 3, + [120172] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(6974), 1, anon_sym_LF, - ACTIONS(6976), 3, + ACTIONS(6976), 1, + anon_sym_in, + ACTIONS(6978), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120190] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6978), 1, - sym__concat, - STATE(1964), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1233), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [120204] = 5, - ACTIONS(1195), 1, - sym__special_character, - ACTIONS(1197), 1, - anon_sym_RBRACE, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [120220] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, - anon_sym_do, - STATE(2041), 2, - sym_do_group, - sym_compound_statement, - [120234] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2084), 2, - sym_do_group, - sym_compound_statement, - [120248] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, - anon_sym_do, - STATE(2047), 2, - sym_do_group, - sym_compound_statement, - [120262] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, - anon_sym_do, - STATE(2049), 2, - sym_do_group, - sym_compound_statement, - [120276] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6761), 1, - anon_sym_LBRACE, - ACTIONS(6873), 1, - anon_sym_do, - STATE(2050), 2, - sym_do_group, - sym_compound_statement, - [120290] = 3, + [120187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6982), 1, + ACTIONS(839), 1, + anon_sym_BQUOTE, + ACTIONS(6980), 1, anon_sym_LF, - ACTIONS(6984), 3, + ACTIONS(6982), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120302] = 4, - ACTIONS(4189), 1, + [120202] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6761), 1, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(6885), 1, anon_sym_do, - STATE(2070), 2, + ACTIONS(6984), 1, + anon_sym_SEMI, + STATE(2045), 2, sym_do_group, sym_compound_statement, - [120316] = 3, + [120219] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6986), 1, @@ -119248,37 +119377,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120328] = 4, - ACTIONS(4189), 1, + [120231] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6761), 1, + ACTIONS(6741), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(6893), 1, anon_sym_do, - STATE(2073), 2, + STATE(2136), 2, sym_do_group, sym_compound_statement, - [120342] = 4, - ACTIONS(4189), 1, + [120245] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6761), 1, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(6885), 1, anon_sym_do, - STATE(2074), 2, + STATE(2042), 2, sym_do_group, sym_compound_statement, - [120356] = 4, - ACTIONS(4189), 1, + [120259] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6753), 1, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6887), 1, + ACTIONS(6885), 1, anon_sym_do, - STATE(2134), 2, + STATE(2047), 2, sym_do_group, sym_compound_statement, - [120370] = 3, + [120273] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_do, + STATE(2049), 2, + sym_do_group, + sym_compound_statement, + [120287] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, + anon_sym_do, + STATE(2146), 2, + sym_do_group, + sym_compound_statement, + [120301] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, + anon_sym_do, + STATE(2123), 2, + sym_do_group, + sym_compound_statement, + [120315] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_do, + STATE(2051), 2, + sym_do_group, + sym_compound_statement, + [120329] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6990), 1, @@ -119287,7 +119456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120382] = 3, + [120341] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6994), 1, @@ -119296,38 +119465,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120394] = 3, - ACTIONS(3), 1, + [120353] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_do, + STATE(1935), 2, + sym_do_group, + sym_compound_statement, + [120367] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, + anon_sym_do, + STATE(2153), 2, + sym_do_group, + sym_compound_statement, + [120381] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_do, + STATE(2078), 2, + sym_do_group, + sym_compound_statement, + [120395] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6763), 1, + anon_sym_LBRACE, + ACTIONS(6885), 1, + anon_sym_do, + STATE(2079), 2, + sym_do_group, + sym_compound_statement, + [120409] = 5, + ACTIONS(4073), 1, sym_comment, ACTIONS(6998), 1, + anon_sym_esac, + ACTIONS(7000), 1, + anon_sym_SEMI_SEMI, + ACTIONS(7002), 1, + anon_sym_SEMI_AMP, + ACTIONS(7004), 1, + anon_sym_SEMI_SEMI_AMP, + [120425] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1774), 2, + sym_do_group, + sym_compound_statement, + [120439] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7006), 1, anon_sym_LF, - ACTIONS(7000), 3, + ACTIONS(7008), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120406] = 4, - ACTIONS(4189), 1, + [120451] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6761), 1, + ACTIONS(6763), 1, anon_sym_LBRACE, - ACTIONS(6873), 1, + ACTIONS(6885), 1, anon_sym_do, - STATE(2026), 2, + STATE(1994), 2, sym_do_group, sym_compound_statement, - [120420] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7002), 1, - anon_sym_esac, - ACTIONS(7004), 1, - anon_sym_SEMI_SEMI, - ACTIONS(7006), 1, - anon_sym_SEMI_AMP, - ACTIONS(7008), 1, - anon_sym_SEMI_SEMI_AMP, - [120436] = 5, - ACTIONS(4189), 1, + [120465] = 5, + ACTIONS(4073), 1, sym_comment, ACTIONS(7010), 1, anon_sym_esac, @@ -119337,106 +119556,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, ACTIONS(7016), 1, anon_sym_SEMI_SEMI_AMP, - [120452] = 5, - ACTIONS(4189), 1, + [120481] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7010), 1, - anon_sym_esac, ACTIONS(7018), 1, + anon_sym_LF, + ACTIONS(7020), 3, + anon_sym_SEMI, anon_sym_SEMI_SEMI, - ACTIONS(7020), 1, - anon_sym_SEMI_AMP, + anon_sym_AMP, + [120493] = 3, + ACTIONS(3), 1, + sym_comment, ACTIONS(7022), 1, - anon_sym_SEMI_SEMI_AMP, - [120468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7024), 1, anon_sym_LF, - ACTIONS(7026), 3, + ACTIONS(7024), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120480] = 3, + [120505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7028), 1, + ACTIONS(7026), 1, anon_sym_LF, - ACTIONS(7030), 3, + ACTIONS(7028), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120492] = 5, - ACTIONS(4189), 1, + [120517] = 5, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7032), 1, + ACTIONS(7030), 1, anon_sym_RBRACK, + ACTIONS(7032), 1, + sym__special_character, ACTIONS(7034), 1, - sym__special_character, - ACTIONS(7036), 1, sym__concat, - STATE(2966), 1, + STATE(2964), 1, aux_sym__literal_repeat1, - [120508] = 4, - ACTIONS(1195), 1, + [120533] = 4, + ACTIONS(1227), 1, sym__special_character, - ACTIONS(4189), 1, + ACTIONS(4073), 1, sym_comment, STATE(3101), 1, aux_sym_concatenation_repeat1, - ACTIONS(1197), 2, + ACTIONS(1229), 2, sym__concat, anon_sym_RBRACK, - [120522] = 3, + [120547] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7036), 1, + sym__special_character, + STATE(2964), 1, + aux_sym__literal_repeat1, + ACTIONS(1374), 2, + sym__concat, + anon_sym_RBRACK, + [120561] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6998), 1, + anon_sym_esac, + ACTIONS(7039), 1, + anon_sym_SEMI_SEMI, + ACTIONS(7041), 1, + anon_sym_SEMI_AMP, + ACTIONS(7043), 1, + anon_sym_SEMI_SEMI_AMP, + [120577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7038), 1, + ACTIONS(7045), 1, anon_sym_LF, - ACTIONS(7040), 3, + ACTIONS(7047), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120534] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7042), 1, + [120589] = 5, + ACTIONS(1227), 1, sym__special_character, - STATE(2966), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 2, + ACTIONS(1229), 1, + anon_sym_RBRACE, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, sym__concat, - anon_sym_RBRACK, - [120548] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2088), 2, - sym_do_group, - sym_compound_statement, - [120562] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2090), 2, - sym_do_group, - sym_compound_statement, - [120576] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7045), 1, - anon_sym_esac, - ACTIONS(7047), 1, - anon_sym_SEMI_SEMI, - ACTIONS(7049), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [120590] = 3, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [120605] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7051), 1, @@ -119445,25 +119654,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120602] = 3, - ACTIONS(3), 1, + [120617] = 4, + ACTIONS(4073), 1, sym_comment, ACTIONS(7055), 1, - anon_sym_LF, - ACTIONS(7057), 3, - anon_sym_SEMI, + anon_sym_esac, + ACTIONS(7057), 1, anon_sym_SEMI_SEMI, - anon_sym_AMP, - [120614] = 3, - ACTIONS(3), 1, + ACTIONS(7059), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [120631] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7059), 1, - anon_sym_LF, - ACTIONS(7061), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [120626] = 3, + ACTIONS(7061), 1, + sym__concat, + STATE(2004), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1220), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [120645] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7063), 1, @@ -119472,7 +119683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120638] = 3, + [120657] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7067), 1, @@ -119481,7 +119692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120650] = 3, + [120669] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7071), 1, @@ -119490,3416 +119701,3448 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120662] = 3, - ACTIONS(3), 1, + [120681] = 4, + ACTIONS(4073), 1, sym_comment, ACTIONS(7075), 1, - anon_sym_LF, - ACTIONS(7077), 3, - anon_sym_SEMI, - anon_sym_SEMI_SEMI, - anon_sym_AMP, - [120674] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6893), 1, - anon_sym_do, - STATE(1774), 2, - sym_do_group, - sym_compound_statement, - [120688] = 5, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7034), 1, - sym__special_character, - ACTIONS(7079), 1, - anon_sym_RBRACK, - ACTIONS(7081), 1, - sym__concat, - STATE(2966), 1, - aux_sym__literal_repeat1, - [120704] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6893), 1, - anon_sym_do, - STATE(1767), 2, - sym_do_group, - sym_compound_statement, - [120718] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7083), 1, anon_sym_esac, - ACTIONS(7085), 1, + ACTIONS(7077), 1, anon_sym_SEMI_SEMI, - ACTIONS(7087), 2, + ACTIONS(7079), 2, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - [120732] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(4641), 1, - sym__special_character, - STATE(1907), 1, - aux_sym__literal_repeat1, - ACTIONS(7089), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [120746] = 3, + [120695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, + ACTIONS(7081), 1, anon_sym_LF, - ACTIONS(7093), 3, + ACTIONS(7083), 3, anon_sym_SEMI, anon_sym_SEMI_SEMI, anon_sym_AMP, - [120758] = 4, - ACTIONS(4189), 1, + [120707] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4277), 1, + ACTIONS(7085), 1, + anon_sym_LF, + ACTIONS(7087), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [120719] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7089), 1, + anon_sym_LF, + ACTIONS(7091), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [120731] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7093), 1, + anon_sym_LF, + ACTIONS(7095), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [120743] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1793), 2, + sym_do_group, + sym_compound_statement, + [120757] = 5, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7032), 1, + sym__special_character, + ACTIONS(7097), 1, + anon_sym_RBRACK, + ACTIONS(7099), 1, sym__concat, - STATE(2941), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7095), 2, + STATE(2964), 1, + aux_sym__literal_repeat1, + [120773] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(4652), 1, + sym__special_character, + STATE(1909), 1, + aux_sym__literal_repeat1, + ACTIONS(7101), 2, anon_sym_PIPE, anon_sym_RPAREN, - [120772] = 4, - ACTIONS(4189), 1, + [120787] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6735), 1, + ACTIONS(6747), 1, anon_sym_LBRACE, - ACTIONS(6893), 1, + ACTIONS(6905), 1, anon_sym_do, - STATE(1766), 2, + STATE(1786), 2, sym_do_group, sym_compound_statement, - [120786] = 4, - ACTIONS(4189), 1, + [120801] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2096), 2, - sym_do_group, - sym_compound_statement, - [120800] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6893), 1, - anon_sym_do, - STATE(1764), 2, - sym_do_group, - sym_compound_statement, - [120814] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6893), 1, - anon_sym_do, - STATE(1759), 2, - sym_do_group, - sym_compound_statement, - [120828] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6893), 1, - anon_sym_do, - STATE(1758), 2, - sym_do_group, - sym_compound_statement, - [120842] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2109), 2, - sym_do_group, - sym_compound_statement, - [120856] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2097), 2, - sym_do_group, - sym_compound_statement, - [120870] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6893), 1, - anon_sym_do, - STATE(1757), 2, - sym_do_group, - sym_compound_statement, - [120884] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6735), 1, - anon_sym_LBRACE, - ACTIONS(6893), 1, - anon_sym_do, - STATE(1755), 2, - sym_do_group, - sym_compound_statement, - [120898] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6753), 1, - anon_sym_LBRACE, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2093), 2, - sym_do_group, - sym_compound_statement, - [120912] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7097), 1, - anon_sym_RBRACE, - ACTIONS(7099), 1, - sym__special_character, - STATE(3148), 1, - aux_sym__literal_repeat1, - [120925] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, + ACTIONS(4297), 1, sym__concat, - ACTIONS(7101), 1, - anon_sym_RBRACE, - STATE(3061), 1, + STATE(2970), 1, aux_sym_concatenation_repeat1, - [120938] = 4, - ACTIONS(4189), 1, + ACTIONS(7103), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [120815] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7103), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [120951] = 4, - ACTIONS(4189), 1, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, + anon_sym_do, + STATE(2165), 2, + sym_do_group, + sym_compound_statement, + [120829] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1785), 2, + sym_do_group, + sym_compound_statement, + [120843] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1783), 2, + sym_do_group, + sym_compound_statement, + [120857] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, + anon_sym_do, + STATE(2168), 2, + sym_do_group, + sym_compound_statement, + [120871] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1778), 2, + sym_do_group, + sym_compound_statement, + [120885] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, + anon_sym_do, + STATE(2187), 2, + sym_do_group, + sym_compound_statement, + [120899] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, ACTIONS(7105), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [120964] = 4, - ACTIONS(4189), 1, + anon_sym_LF, + ACTIONS(7107), 3, + anon_sym_SEMI, + anon_sym_SEMI_SEMI, + anon_sym_AMP, + [120911] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7107), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [120977] = 4, - ACTIONS(4189), 1, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1777), 2, + sym_do_group, + sym_compound_statement, + [120925] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6747), 1, + anon_sym_LBRACE, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1776), 2, + sym_do_group, + sym_compound_statement, + [120939] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6741), 1, + anon_sym_LBRACE, + ACTIONS(6893), 1, + anon_sym_do, + STATE(2149), 2, + sym_do_group, + sym_compound_statement, + [120953] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, ACTIONS(7109), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [120990] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, ACTIONS(7111), 1, - anon_sym_RBRACE, - STATE(3148), 1, + sym__special_character, + STATE(3150), 1, aux_sym__literal_repeat1, - [121003] = 4, - ACTIONS(4189), 1, + [120966] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7113), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121016] = 4, - ACTIONS(4189), 1, + [120979] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7115), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121029] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [120992] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7117), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121042] = 3, - ACTIONS(4189), 1, + [121005] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7119), 1, - anon_sym_LBRACK, - ACTIONS(7121), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [121053] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, + ACTIONS(7119), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121018] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7121), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121031] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7123), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121066] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121044] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7125), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121079] = 4, - ACTIONS(4189), 1, + [121057] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7127), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121092] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121070] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7129), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121105] = 4, - ACTIONS(4189), 1, + [121083] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7131), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121118] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121096] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6907), 1, - anon_sym_PIPE, ACTIONS(7133), 1, - anon_sym_RPAREN, - STATE(3086), 1, - aux_sym_case_item_repeat1, - [121131] = 4, - ACTIONS(4189), 1, + anon_sym_LBRACK, + ACTIONS(7135), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [121107] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(7135), 1, - anon_sym_RPAREN, - STATE(3086), 1, - aux_sym_case_item_repeat1, - [121144] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6907), 1, - anon_sym_PIPE, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7137), 1, - anon_sym_RPAREN, - STATE(3086), 1, - aux_sym_case_item_repeat1, - [121157] = 4, - ACTIONS(4189), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121120] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7139), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121170] = 4, - ACTIONS(4189), 1, + [121133] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7141), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121183] = 4, - ACTIONS(4189), 1, + [121146] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(6921), 1, + anon_sym_PIPE, ACTIONS(7143), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121196] = 4, - ACTIONS(4189), 1, + anon_sym_RPAREN, + STATE(3076), 1, + aux_sym_case_item_repeat1, + [121159] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(6921), 1, + anon_sym_PIPE, ACTIONS(7145), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121209] = 4, - ACTIONS(4189), 1, + anon_sym_RPAREN, + STATE(3076), 1, + aux_sym_case_item_repeat1, + [121172] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(6921), 1, + anon_sym_PIPE, ACTIONS(7147), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121222] = 4, - ACTIONS(4189), 1, + anon_sym_RPAREN, + STATE(3076), 1, + aux_sym_case_item_repeat1, + [121185] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7149), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121235] = 4, - ACTIONS(4189), 1, + [121198] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7151), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121248] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121211] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7153), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121261] = 4, - ACTIONS(4189), 1, + [121224] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7155), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121274] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121237] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7157), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121287] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121250] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7159), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121300] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121263] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7161), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121313] = 4, - ACTIONS(4189), 1, + [121276] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7163), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121326] = 4, - ACTIONS(4189), 1, + [121289] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7165), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121339] = 4, - ACTIONS(4189), 1, + [121302] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7167), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121352] = 4, - ACTIONS(4189), 1, + [121315] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7169), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121365] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121328] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7171), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121378] = 4, - ACTIONS(4189), 1, + [121341] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7173), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121391] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121354] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7175), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121404] = 4, - ACTIONS(4189), 1, + [121367] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7177), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121417] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121380] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7179), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121430] = 4, - ACTIONS(4189), 1, + [121393] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7181), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121443] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121406] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7183), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121456] = 4, - ACTIONS(4189), 1, + [121419] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7185), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121469] = 4, - ACTIONS(4189), 1, + [121432] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(6909), 1, - anon_sym_RPAREN, - STATE(3012), 1, - aux_sym_case_item_repeat1, - [121482] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7187), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121495] = 4, - ACTIONS(4189), 1, + [121445] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7189), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121508] = 4, - ACTIONS(4189), 1, + [121458] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7191), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121521] = 4, - ACTIONS(4189), 1, + [121471] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7193), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121534] = 4, - ACTIONS(4189), 1, + [121484] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7195), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121547] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121497] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(6921), 1, + anon_sym_PIPE, + ACTIONS(6923), 1, + anon_sym_RPAREN, + STATE(3010), 1, + aux_sym_case_item_repeat1, + [121510] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7197), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121560] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121523] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7199), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121573] = 4, - ACTIONS(4189), 1, + [121536] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7201), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121586] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121549] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7203), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121599] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121562] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7205), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121612] = 4, - ACTIONS(4189), 1, + [121575] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7207), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121625] = 4, - ACTIONS(4189), 1, + [121588] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7209), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [121638] = 4, - ACTIONS(4189), 1, + [121601] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7211), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [121651] = 3, - ACTIONS(4189), 1, + [121614] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7215), 1, - sym__concat, - ACTIONS(7213), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [121662] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, + ACTIONS(7213), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121627] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7215), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121640] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7217), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121675] = 4, - ACTIONS(1217), 1, - anon_sym_RBRACE, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121653] = 4, + ACTIONS(4073), 1, sym_comment, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7219), 1, - sym__concat, - STATE(3053), 1, - aux_sym_concatenation_repeat1, - [121688] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7222), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121701] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121666] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7006), 1, - anon_sym_SEMI_AMP, - ACTIONS(7008), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7224), 1, - anon_sym_SEMI_SEMI, - [121714] = 3, - ACTIONS(4189), 1, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7221), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121679] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7228), 1, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7223), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121692] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7227), 1, sym__concat, - ACTIONS(7226), 2, + ACTIONS(7225), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [121725] = 3, - ACTIONS(4189), 1, + [121703] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7119), 1, - anon_sym_LBRACK, - ACTIONS(7230), 2, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7229), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121716] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7231), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121729] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7233), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121742] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7235), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121755] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7239), 1, + sym__concat, + ACTIONS(7237), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [121736] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7232), 1, + [121766] = 4, + ACTIONS(1213), 1, anon_sym_RBRACE, - STATE(3061), 1, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7241), 1, + sym__concat, + STATE(3057), 1, aux_sym_concatenation_repeat1, - [121749] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7119), 1, - anon_sym_LBRACK, - ACTIONS(7234), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [121760] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7236), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121773] = 4, - ACTIONS(1233), 1, - anon_sym_RBRACE, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7238), 1, - sym__concat, - STATE(3053), 1, - aux_sym_concatenation_repeat1, - [121786] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7119), 1, - anon_sym_LBRACK, - ACTIONS(7240), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [121797] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7242), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121810] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7119), 1, - anon_sym_LBRACK, - ACTIONS(7244), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [121821] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7246), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121834] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7248), 1, - anon_sym_RBRACK, - ACTIONS(7250), 1, - sym__concat, - STATE(3101), 1, - aux_sym_concatenation_repeat1, - [121847] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7252), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121860] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7119), 1, - anon_sym_LBRACK, - ACTIONS(7254), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [121871] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7256), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121884] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7258), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121897] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7260), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121910] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7020), 1, - anon_sym_SEMI_AMP, - ACTIONS(7022), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(7262), 1, - anon_sym_SEMI_SEMI, - [121923] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7264), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121936] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7119), 1, - anon_sym_LBRACK, - ACTIONS(7266), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [121947] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7268), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [121960] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7270), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121973] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7272), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121986] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7274), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [121999] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7276), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122012] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7278), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122025] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7282), 1, - sym__concat, - ACTIONS(7280), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [122036] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7284), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122049] = 4, - ACTIONS(4189), 1, + [121779] = 4, + ACTIONS(4073), 1, sym_comment, ACTIONS(7014), 1, anon_sym_SEMI_AMP, ACTIONS(7016), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(7286), 1, + ACTIONS(7244), 1, anon_sym_SEMI_SEMI, - [122062] = 4, - ACTIONS(4189), 1, + [121792] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7288), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122075] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7290), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122088] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7292), 1, - anon_sym_PIPE, - ACTIONS(7295), 1, - anon_sym_RPAREN, - STATE(3086), 1, - aux_sym_case_item_repeat1, - [122101] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7299), 1, - sym__concat, - ACTIONS(7297), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [122112] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7301), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122125] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7303), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122138] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(6925), 1, - anon_sym_RPAREN, - STATE(3137), 1, - aux_sym_case_item_repeat1, - [122151] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7305), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122164] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7307), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122177] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7309), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122190] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7311), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122203] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7313), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122216] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7315), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122229] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7317), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122242] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7319), 1, - anon_sym_SEMI_SEMI, - ACTIONS(7049), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [122253] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7321), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122266] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7119), 1, + ACTIONS(7133), 1, anon_sym_LBRACK, - ACTIONS(7323), 2, + ACTIONS(7246), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [122277] = 4, - ACTIONS(1233), 1, - anon_sym_RBRACK, - ACTIONS(4189), 1, + [121803] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7325), 1, - sym__concat, - STATE(2108), 1, - aux_sym_concatenation_repeat1, - [122290] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7327), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122303] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7329), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122316] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7331), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122329] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7333), 1, - anon_sym_SEMI_SEMI, - ACTIONS(7087), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [122340] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7335), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122353] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7337), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122366] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7339), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122379] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7341), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122392] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7343), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122405] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7119), 1, + ACTIONS(7133), 1, anon_sym_LBRACK, - ACTIONS(7345), 2, + ACTIONS(7248), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [122416] = 4, - ACTIONS(4189), 1, + [121814] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7347), 1, + ACTIONS(7002), 1, + anon_sym_SEMI_AMP, + ACTIONS(7004), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(7250), 1, + anon_sym_SEMI_SEMI, + [121827] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7252), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121840] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7133), 1, + anon_sym_LBRACK, + ACTIONS(7254), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [121851] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7256), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121864] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7258), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121877] = 4, + ACTIONS(1220), 1, + anon_sym_RBRACE, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7260), 1, + sym__concat, + STATE(3057), 1, + aux_sym_concatenation_repeat1, + [121890] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7262), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121903] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7133), 1, + anon_sym_LBRACK, + ACTIONS(7264), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [121914] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7266), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121927] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7268), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121940] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7270), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121953] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7272), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [121966] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7274), 1, anon_sym_RBRACK, - ACTIONS(7349), 1, + ACTIONS(7276), 1, sym__concat, STATE(3101), 1, aux_sym_concatenation_repeat1, - [122429] = 4, - ACTIONS(4189), 1, + [121979] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7278), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [121992] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, sym__concat, + ACTIONS(7280), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122005] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7282), 1, + anon_sym_PIPE, + ACTIONS(7285), 1, + anon_sym_RPAREN, + STATE(3076), 1, + aux_sym_case_item_repeat1, + [122018] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7133), 1, + anon_sym_LBRACK, + ACTIONS(7287), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [122029] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7289), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122042] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7291), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122055] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7293), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122068] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7297), 1, + sym__concat, + ACTIONS(7295), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [122079] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7133), 1, + anon_sym_LBRACK, + ACTIONS(7299), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [122090] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7301), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122103] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7041), 1, + anon_sym_SEMI_AMP, + ACTIONS(7043), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(7303), 1, + anon_sym_SEMI_SEMI, + [122116] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7305), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122129] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7307), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122142] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7309), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122155] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7311), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122168] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7313), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122181] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6921), 1, + anon_sym_PIPE, + ACTIONS(6944), 1, + anon_sym_RPAREN, + STATE(3139), 1, + aux_sym_case_item_repeat1, + [122194] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7315), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122207] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7317), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122220] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7319), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122233] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7321), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122246] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7323), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122259] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7325), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122272] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7327), 1, + anon_sym_SEMI_SEMI, + ACTIONS(7059), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [122283] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7329), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122296] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7331), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122309] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7133), 1, + anon_sym_LBRACK, + ACTIONS(7333), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [122320] = 4, + ACTIONS(1220), 1, + anon_sym_RBRACK, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7335), 1, + sym__concat, + STATE(2185), 1, + aux_sym_concatenation_repeat1, + [122333] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7337), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122346] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7339), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122359] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7341), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122372] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7343), 1, + anon_sym_SEMI_SEMI, + ACTIONS(7079), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [122383] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7345), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122396] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7347), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122409] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7349), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122422] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7351), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122442] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122435] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7133), 1, + anon_sym_LBRACK, + ACTIONS(7353), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [122446] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, sym__concat, - ACTIONS(7353), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122455] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, ACTIONS(7355), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122468] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122459] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7357), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [122481] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(7359), 1, - anon_sym_RPAREN, - STATE(3086), 1, - aux_sym_case_item_repeat1, - [122494] = 3, - ACTIONS(1195), 1, + [122472] = 3, + ACTIONS(1227), 1, sym__special_character, - ACTIONS(4189), 1, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1197), 2, + ACTIONS(1229), 2, sym__concat, anon_sym_RBRACK, - [122505] = 4, - ACTIONS(4189), 1, + [122483] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7359), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122496] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7361), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122518] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122509] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7363), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [122531] = 4, - ACTIONS(4189), 1, + [122522] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7365), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122544] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122535] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7367), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122557] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7369), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122570] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7371), 1, - anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [122583] = 4, - ACTIONS(4189), 1, + [122548] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7371), 1, + sym__concat, + ACTIONS(7369), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [122559] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7373), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [122596] = 4, - ACTIONS(4189), 1, + [122572] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7375), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122609] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122585] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7377), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [122622] = 4, - ACTIONS(4189), 1, + [122598] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7379), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122635] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122611] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7381), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122648] = 4, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122624] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7383), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [122661] = 4, - ACTIONS(4189), 1, + [122637] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7385), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [122674] = 4, - ACTIONS(4189), 1, + [122650] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7387), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [122687] = 4, - ACTIONS(4189), 1, + [122663] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, ACTIONS(7389), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122700] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, + anon_sym_RBRACK, ACTIONS(7391), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122713] = 4, - ACTIONS(4189), 1, + sym__concat, + STATE(3101), 1, + aux_sym_concatenation_repeat1, + [122676] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7393), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [122726] = 4, - ACTIONS(4189), 1, + [122689] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7395), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [122739] = 4, - ACTIONS(4189), 1, + [122702] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(7397), 1, - anon_sym_RPAREN, - STATE(3086), 1, - aux_sym_case_item_repeat1, - [122752] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6907), 1, - anon_sym_PIPE, - ACTIONS(7399), 1, - anon_sym_RPAREN, - STATE(3086), 1, - aux_sym_case_item_repeat1, - [122765] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, + ACTIONS(7397), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122715] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7399), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122728] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7401), 1, anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122778] = 4, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122741] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7403), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [122791] = 4, - ACTIONS(4189), 1, + [122754] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7405), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [122804] = 4, - ACTIONS(4189), 1, + [122767] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, ACTIONS(7407), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [122817] = 4, - ACTIONS(4189), 1, + [122780] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(7049), 1, + sym__concat, ACTIONS(7409), 1, anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122830] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, - sym__special_character, - ACTIONS(7411), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122843] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7413), 1, - anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [122856] = 4, - ACTIONS(4189), 1, + [122793] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7099), 1, - sym__special_character, + ACTIONS(6921), 1, + anon_sym_PIPE, + ACTIONS(7411), 1, + anon_sym_RPAREN, + STATE(3076), 1, + aux_sym_case_item_repeat1, + [122806] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6921), 1, + anon_sym_PIPE, + ACTIONS(7413), 1, + anon_sym_RPAREN, + STATE(3076), 1, + aux_sym_case_item_repeat1, + [122819] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6921), 1, + anon_sym_PIPE, ACTIONS(7415), 1, - anon_sym_RBRACE, - STATE(3148), 1, - aux_sym__literal_repeat1, - [122869] = 4, - ACTIONS(4189), 1, + anon_sym_RPAREN, + STATE(3076), 1, + aux_sym_case_item_repeat1, + [122832] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, ACTIONS(7417), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [122882] = 4, - ACTIONS(1360), 1, - anon_sym_RBRACE, - ACTIONS(4189), 1, + [122845] = 4, + ACTIONS(4073), 1, sym_comment, + ACTIONS(7111), 1, + sym__special_character, ACTIONS(7419), 1, - sym__special_character, - STATE(3148), 1, + anon_sym_RBRACE, + STATE(3150), 1, aux_sym__literal_repeat1, - [122895] = 4, - ACTIONS(4189), 1, + [122858] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7049), 1, sym__concat, - ACTIONS(7422), 1, + ACTIONS(7421), 1, anon_sym_RBRACE, - STATE(3061), 1, + STATE(3066), 1, aux_sym_concatenation_repeat1, - [122908] = 4, - ACTIONS(4189), 1, + [122871] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6980), 1, - sym__concat, - ACTIONS(7424), 1, - anon_sym_RBRACE, - STATE(3061), 1, - aux_sym_concatenation_repeat1, - [122921] = 4, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7099), 1, + ACTIONS(7111), 1, sym__special_character, - ACTIONS(7426), 1, + ACTIONS(7423), 1, anon_sym_RBRACE, - STATE(3148), 1, + STATE(3150), 1, aux_sym__literal_repeat1, - [122934] = 3, - ACTIONS(4189), 1, + [122884] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7430), 1, - anon_sym_EQ, - [122944] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1308), 2, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7425), 1, anon_sym_RBRACE, - [122952] = 2, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122897] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1376), 2, - sym__concat, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7427), 1, anon_sym_RBRACE, - [122960] = 3, - ACTIONS(4189), 1, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122910] = 4, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7432), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(7434), 1, - aux_sym__simple_variable_name_token1, - [122970] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7436), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [122978] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7438), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [122986] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1380), 2, + ACTIONS(7049), 1, sym__concat, + ACTIONS(7429), 1, anon_sym_RBRACE, - [122994] = 3, - ACTIONS(4189), 1, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122923] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7431), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122936] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7111), 1, + sym__special_character, + ACTIONS(7433), 1, + anon_sym_RBRACE, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122949] = 4, + ACTIONS(1374), 1, + anon_sym_RBRACE, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7435), 1, + sym__special_character, + STATE(3150), 1, + aux_sym__literal_repeat1, + [122962] = 4, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7049), 1, + sym__concat, + ACTIONS(7438), 1, + anon_sym_RBRACE, + STATE(3066), 1, + aux_sym_concatenation_repeat1, + [122975] = 3, + ACTIONS(4073), 1, sym_comment, ACTIONS(7440), 1, - anon_sym_LPAREN_LPAREN, + anon_sym_LBRACK, ACTIONS(7442), 1, - aux_sym__simple_variable_name_token1, - [123004] = 3, - ACTIONS(4189), 1, + anon_sym_EQ, + [122985] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1314), 2, + sym__concat, + anon_sym_RBRACE, + [122993] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1382), 2, + sym__concat, + anon_sym_RBRACE, + [123001] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1265), 2, + sym__concat, + anon_sym_RBRACE, + [123009] = 3, + ACTIONS(4073), 1, sym_comment, ACTIONS(7444), 1, anon_sym_LPAREN_LPAREN, ACTIONS(7446), 1, aux_sym__simple_variable_name_token1, - [123014] = 3, - ACTIONS(4189), 1, + [123019] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7448), 1, + ACTIONS(1396), 2, + sym__concat, + anon_sym_RBRACE, + [123027] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7448), 2, anon_sym_EQ, - [123024] = 3, - ACTIONS(4189), 1, + anon_sym_PLUS_EQ, + [123035] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7450), 1, + ACTIONS(7450), 2, anon_sym_EQ, - [123034] = 3, - ACTIONS(4189), 1, + anon_sym_PLUS_EQ, + [123043] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6873), 1, - anon_sym_do, - STATE(1991), 1, - sym_do_group, - [123044] = 3, - ACTIONS(4189), 1, + ACTIONS(1443), 2, + sym__concat, + anon_sym_RBRACE, + [123051] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, ACTIONS(7452), 1, - anon_sym_EQ, - [123054] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, + anon_sym_LPAREN_LPAREN, ACTIONS(7454), 1, - anon_sym_EQ, - [123064] = 3, - ACTIONS(4189), 1, + aux_sym__simple_variable_name_token1, + [123061] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, ACTIONS(7456), 1, - anon_sym_EQ, - [123074] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, + anon_sym_LPAREN_LPAREN, ACTIONS(7458), 1, - anon_sym_EQ, - [123084] = 3, - ACTIONS(4189), 1, + aux_sym__simple_variable_name_token1, + [123071] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7460), 1, anon_sym_EQ, - [123094] = 3, - ACTIONS(4189), 1, + [123081] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7462), 1, anon_sym_EQ, - [123104] = 3, - ACTIONS(4189), 1, + [123091] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6873), 1, - anon_sym_do, - STATE(2001), 1, - sym_do_group, - [123114] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7464), 1, anon_sym_EQ, - [123124] = 3, - ACTIONS(4189), 1, + [123101] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7466), 1, anon_sym_EQ, - [123134] = 2, - ACTIONS(4189), 1, + [123111] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7121), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123142] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7468), 1, anon_sym_EQ, - [123152] = 3, - ACTIONS(4189), 1, + [123121] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7470), 1, anon_sym_EQ, - [123162] = 3, - ACTIONS(1195), 1, - sym__special_character, - ACTIONS(1197), 1, - anon_sym_RBRACE, - ACTIONS(4189), 1, + [123131] = 3, + ACTIONS(4073), 1, sym_comment, - [123172] = 3, - ACTIONS(4189), 1, + ACTIONS(6885), 1, + anon_sym_do, + STATE(1963), 1, + sym_do_group, + [123141] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7472), 1, anon_sym_EQ, - [123182] = 3, - ACTIONS(4189), 1, + [123151] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7474), 1, anon_sym_EQ, - [123192] = 3, - ACTIONS(4189), 1, + [123161] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7476), 1, anon_sym_EQ, - [123202] = 3, - ACTIONS(4189), 1, + [123171] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7478), 1, anon_sym_EQ, - [123212] = 2, - ACTIONS(4189), 1, + [123181] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1432), 2, - sym__concat, - anon_sym_RBRACE, - [123220] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7480), 1, anon_sym_EQ, - [123230] = 3, - ACTIONS(4189), 1, + [123191] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7482), 1, anon_sym_EQ, - [123240] = 3, - ACTIONS(4189), 1, + [123201] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7135), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [123209] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7484), 1, anon_sym_EQ, - [123250] = 3, - ACTIONS(4189), 1, + [123219] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7486), 1, anon_sym_EQ, - [123260] = 3, - ACTIONS(4189), 1, + [123229] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2167), 1, - sym_do_group, - [123270] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7488), 1, anon_sym_EQ, - [123280] = 3, - ACTIONS(4189), 1, + [123239] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7490), 1, anon_sym_EQ, - [123290] = 3, - ACTIONS(4189), 1, + [123249] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(1451), 2, + sym__concat, + anon_sym_RBRACE, + [123257] = 3, + ACTIONS(1227), 1, + sym__special_character, + ACTIONS(1229), 1, + anon_sym_RBRACE, + ACTIONS(4073), 1, + sym_comment, + [123267] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7492), 1, anon_sym_EQ, - [123300] = 3, - ACTIONS(4189), 1, + [123277] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7494), 1, anon_sym_EQ, - [123310] = 3, - ACTIONS(4189), 1, + [123287] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7496), 1, anon_sym_EQ, - [123320] = 3, - ACTIONS(4189), 1, + [123297] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7498), 1, anon_sym_EQ, - [123330] = 3, - ACTIONS(4189), 1, + [123307] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7500), 1, anon_sym_EQ, - [123340] = 3, - ACTIONS(4189), 1, + [123317] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7502), 1, anon_sym_EQ, - [123350] = 3, - ACTIONS(4189), 1, + [123327] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(6893), 1, + anon_sym_do, + STATE(2082), 1, + sym_do_group, + [123337] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7504), 1, anon_sym_EQ, - [123360] = 3, - ACTIONS(4189), 1, + [123347] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7506), 1, anon_sym_EQ, - [123370] = 3, - ACTIONS(4189), 1, + [123357] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7508), 1, anon_sym_EQ, - [123380] = 3, - ACTIONS(4189), 1, + [123367] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7510), 1, anon_sym_EQ, - [123390] = 3, - ACTIONS(4189), 1, + [123377] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, + ACTIONS(6885), 1, + anon_sym_do, + STATE(2012), 1, + sym_do_group, + [123387] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7389), 1, + anon_sym_RBRACK, ACTIONS(7512), 1, - anon_sym_EQ, - [123400] = 3, - ACTIONS(4189), 1, + sym__concat, + [123397] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7103), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [123405] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7514), 1, anon_sym_EQ, - [123410] = 3, - ACTIONS(4189), 1, + [123415] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7516), 1, anon_sym_EQ, - [123420] = 3, - ACTIONS(4189), 1, + [123425] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7347), 1, - anon_sym_RBRACK, + ACTIONS(7440), 1, + anon_sym_LBRACK, ACTIONS(7518), 1, - sym__concat, - [123430] = 2, - ACTIONS(4189), 1, + anon_sym_EQ, + [123435] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1284), 2, - sym__concat, - anon_sym_RBRACE, - [123438] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1280), 2, - sym__concat, - anon_sym_RBRACE, - [123446] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2118), 1, - sym_do_group, - [123456] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1276), 2, - sym__concat, - anon_sym_RBRACE, - [123464] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7520), 1, anon_sym_EQ, - [123474] = 2, - ACTIONS(4189), 1, + [123445] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7095), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [123482] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1272), 2, - sym__concat, - anon_sym_RBRACE, - [123490] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1288), 2, - sym__concat, - anon_sym_RBRACE, - [123498] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7522), 1, anon_sym_EQ, - [123508] = 3, - ACTIONS(4189), 1, + [123455] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(1360), 2, + sym__concat, + anon_sym_RBRACE, + [123463] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1298), 2, + sym__concat, + anon_sym_RBRACE, + [123471] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1294), 2, + sym__concat, + anon_sym_RBRACE, + [123479] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1290), 2, + sym__concat, + anon_sym_RBRACE, + [123487] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7524), 1, anon_sym_EQ, - [123518] = 2, - ACTIONS(4189), 1, + [123497] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1364), 2, + ACTIONS(1286), 2, sym__concat, anon_sym_RBRACE, - [123526] = 3, - ACTIONS(4189), 1, + [123505] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(6893), 1, + anon_sym_do, + STATE(2130), 1, + sym_do_group, + [123515] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7526), 1, anon_sym_EQ, - [123536] = 2, - ACTIONS(4189), 1, + [123525] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7345), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123544] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7528), 1, anon_sym_EQ, - [123554] = 2, - ACTIONS(4189), 1, + [123535] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1253), 2, - sym__concat, - anon_sym_RBRACE, - [123562] = 3, - ACTIONS(4189), 1, + ACTIONS(7225), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [123543] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6893), 1, - anon_sym_do, - STATE(1885), 1, - sym_do_group, - [123572] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7530), 1, anon_sym_EQ, - [123582] = 3, - ACTIONS(4189), 1, + [123553] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7532), 1, anon_sym_EQ, - [123592] = 2, - ACTIONS(4189), 1, + [123563] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1440), 2, - sym__concat, - anon_sym_RBRACE, - [123600] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7213), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123608] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1436), 2, - sym__concat, - anon_sym_RBRACE, - [123616] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7534), 1, anon_sym_EQ, - [123626] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7536), 1, - anon_sym_EQ, - [123636] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7538), 1, - anon_sym_EQ, - [123646] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7226), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123654] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7540), 1, - anon_sym_EQ, - [123664] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7542), 1, - anon_sym_EQ, - [123674] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7544), 1, - anon_sym_EQ, - [123684] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1350), 2, - sym__concat, - anon_sym_RBRACE, - [123692] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7546), 1, - anon_sym_EQ, - [123702] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7230), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123710] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1292), 2, - sym__concat, - anon_sym_RBRACE, - [123718] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7548), 1, - anon_sym_EQ, - [123728] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, - anon_sym_LBRACK, - ACTIONS(7550), 1, - anon_sym_EQ, - [123738] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7234), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123746] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1217), 2, - sym__concat, - anon_sym_RBRACE, - [123754] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1446), 2, - sym__concat, - anon_sym_RBRACE, - [123762] = 3, - ACTIONS(4189), 1, + [123573] = 3, + ACTIONS(4073), 1, sym_comment, ACTIONS(6893), 1, anon_sym_do, - STATE(1857), 1, + STATE(2098), 1, sym_do_group, - [123772] = 2, - ACTIONS(4189), 1, + [123583] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1346), 2, + ACTIONS(7353), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [123591] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7536), 1, + anon_sym_EQ, + [123601] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7538), 1, + anon_sym_EQ, + [123611] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1897), 1, + sym_do_group, + [123621] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7540), 1, + anon_sym_EQ, + [123631] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7542), 1, + anon_sym_EQ, + [123641] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7544), 1, + anon_sym_EQ, + [123651] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7546), 1, + anon_sym_EQ, + [123661] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1455), 2, sym__concat, anon_sym_RBRACE, - [123780] = 3, - ACTIONS(4189), 1, + [123669] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7548), 1, + anon_sym_EQ, + [123679] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1352), 2, + sym__concat, + anon_sym_RBRACE, + [123687] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7550), 1, + anon_sym_EQ, + [123697] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7552), 1, anon_sym_EQ, - [123790] = 3, - ACTIONS(4189), 1, + [123707] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7237), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [123715] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7554), 1, anon_sym_EQ, - [123800] = 2, - ACTIONS(4189), 1, + [123725] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1348), 2, sym__concat, anon_sym_RBRACE, - [123808] = 2, - ACTIONS(4189), 1, + [123733] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1348), 2, sym__concat, anon_sym_RBRACE, - [123816] = 2, - ACTIONS(4189), 1, + [123741] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7240), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123824] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7556), 1, anon_sym_EQ, - [123834] = 3, - ACTIONS(4189), 1, + [123751] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7246), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [123759] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7558), 1, anon_sym_EQ, - [123844] = 2, - ACTIONS(4189), 1, + [123769] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7560), 2, - anon_sym_do, - anon_sym_then, - [123852] = 2, - ACTIONS(4189), 1, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7560), 1, + anon_sym_EQ, + [123779] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7244), 2, + ACTIONS(7248), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [123860] = 3, - ACTIONS(4189), 1, + [123787] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(1302), 2, + sym__concat, + anon_sym_RBRACE, + [123795] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1213), 2, + sym__concat, + anon_sym_RBRACE, + [123803] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1427), 2, + sym__concat, + anon_sym_RBRACE, + [123811] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7562), 1, anon_sym_EQ, - [123870] = 3, - ACTIONS(4189), 1, + [123821] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1820), 1, + sym_do_group, + [123831] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7564), 1, anon_sym_EQ, - [123880] = 2, - ACTIONS(4189), 1, + [123841] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7254), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [123888] = 3, - ACTIONS(4189), 1, + [123849] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6887), 1, - anon_sym_do, - STATE(2144), 1, - sym_do_group, - [123898] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7248), 1, - anon_sym_RBRACK, - ACTIONS(7566), 1, - sym__concat, - [123908] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, - ACTIONS(7568), 1, + ACTIONS(7566), 1, anon_sym_EQ, - [123918] = 3, - ACTIONS(4189), 1, + [123859] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6873), 1, + ACTIONS(1330), 2, + sym__concat, + anon_sym_RBRACE, + [123867] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7568), 2, anon_sym_do, - STATE(1926), 1, - sym_do_group, - [123928] = 3, - ACTIONS(4189), 1, + anon_sym_then, + [123875] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7570), 1, anon_sym_EQ, - [123938] = 2, - ACTIONS(4189), 1, + [123885] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7266), 2, + ACTIONS(7264), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [123946] = 2, - ACTIONS(4189), 1, + [123893] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1428), 2, + ACTIONS(1378), 2, sym__concat, anon_sym_RBRACE, - [123954] = 2, - ACTIONS(4189), 1, + [123901] = 3, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1296), 2, - sym__concat, - anon_sym_RBRACE, - [123962] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7323), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [123970] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1316), 2, - sym__concat, - anon_sym_RBRACE, - [123978] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1300), 2, - sym__concat, - anon_sym_RBRACE, - [123986] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(1304), 2, - sym__concat, - anon_sym_RBRACE, - [123994] = 3, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7428), 1, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7572), 1, anon_sym_EQ, - [124004] = 3, - ACTIONS(4189), 1, + [123911] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7428), 1, + ACTIONS(1326), 2, + sym__concat, + anon_sym_RBRACE, + [123919] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, anon_sym_LBRACK, ACTIONS(7574), 1, anon_sym_EQ, - [124014] = 3, - ACTIONS(4189), 1, + [123929] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(6893), 1, + ACTIONS(7287), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [123937] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7576), 1, + anon_sym_EQ, + [123947] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, + ACTIONS(7578), 1, + anon_sym_EQ, + [123957] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6885), 1, anon_sym_do, - STATE(1779), 1, + STATE(2011), 1, sym_do_group, - [124024] = 2, - ACTIONS(4189), 1, + [123967] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(1312), 2, + ACTIONS(7299), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [123975] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7274), 1, + anon_sym_RBRACK, + ACTIONS(7580), 1, + sym__concat, + [123985] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1269), 2, sym__concat, anon_sym_RBRACE, - [124032] = 2, - ACTIONS(4189), 1, + [123993] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7576), 1, - anon_sym_RPAREN, - [124039] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6859), 1, - anon_sym_fi, - [124046] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7303), 1, + ACTIONS(1306), 2, + sym__concat, anon_sym_RBRACE, - [124053] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7578), 1, - anon_sym_RPAREN, - [124060] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6853), 1, - anon_sym_fi, - [124067] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7580), 1, - anon_sym_BQUOTE, - [124074] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7290), 1, - anon_sym_RBRACE, - [124081] = 2, - ACTIONS(4189), 1, + [124001] = 3, + ACTIONS(4073), 1, sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, ACTIONS(7582), 1, - anon_sym_RPAREN, - [124088] = 2, - ACTIONS(4189), 1, + anon_sym_EQ, + [124011] = 2, + ACTIONS(4073), 1, sym_comment, + ACTIONS(7333), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [124019] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1310), 2, + sym__concat, + anon_sym_RBRACE, + [124027] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6905), 1, + anon_sym_do, + STATE(1798), 1, + sym_do_group, + [124037] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1322), 2, + sym__concat, + anon_sym_RBRACE, + [124045] = 3, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, ACTIONS(7584), 1, - anon_sym_esac, - [124095] = 2, - ACTIONS(4189), 1, + anon_sym_EQ, + [124055] = 3, + ACTIONS(4073), 1, sym_comment, + ACTIONS(7440), 1, + anon_sym_LBRACK, ACTIONS(7586), 1, - anon_sym_RBRACK, - [124102] = 2, - ACTIONS(4189), 1, + anon_sym_EQ, + [124065] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(1318), 2, + sym__concat, + anon_sym_RBRACE, + [124073] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7588), 1, - anon_sym_esac, - [124109] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [124080] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7284), 1, + ACTIONS(7203), 1, anon_sym_RBRACE, - [124116] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7276), 1, - anon_sym_RBRACE, - [124123] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7278), 1, - anon_sym_RBRACE, - [124130] = 2, - ACTIONS(4189), 1, + [124087] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7590), 1, anon_sym_RPAREN, - [124137] = 2, - ACTIONS(4189), 1, + [124094] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6877), 1, + anon_sym_fi, + [124101] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7592), 1, anon_sym_BQUOTE, - [124144] = 2, - ACTIONS(4189), 1, + [124108] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7594), 1, anon_sym_RPAREN, - [124151] = 2, - ACTIONS(4189), 1, + [124115] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7311), 1, + anon_sym_RBRACE, + [124122] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7596), 1, - anon_sym_RPAREN, - [124158] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6861), 1, - anon_sym_fi, - [124165] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [124129] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7598), 1, - anon_sym_then, - [124172] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [124136] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7600), 1, - anon_sym_RPAREN, - [124179] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [124143] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7602), 1, anon_sym_RPAREN, - [124186] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7317), 1, - anon_sym_RBRACE, - [124193] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7268), 1, - anon_sym_RBRACE, - [124200] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7315), 1, - anon_sym_RBRACE, - [124207] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7260), 1, - anon_sym_RBRACE, - [124214] = 2, - ACTIONS(4189), 1, + [124150] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7309), 1, anon_sym_RBRACE, - [124221] = 2, - ACTIONS(4189), 1, + [124157] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7604), 1, - anon_sym_fi, - [124228] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [124164] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7606), 1, anon_sym_RPAREN, - [124235] = 2, - ACTIONS(4189), 1, + [124171] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7608), 1, - anon_sym_RPAREN, - [124242] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7209), 1, - anon_sym_RBRACE, - [124249] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [124178] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7610), 1, - anon_sym_esac, - [124256] = 2, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [124185] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7612), 1, - sym_word, - [124263] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym_RBRACE, - [124270] = 2, - ACTIONS(4189), 1, + anon_sym_RBRACK, + [124192] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7614), 1, anon_sym_RPAREN, - [124277] = 2, - ACTIONS(4189), 1, + [124199] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7252), 1, + ACTIONS(7315), 1, anon_sym_RBRACE, - [124284] = 2, - ACTIONS(4189), 1, + [124206] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7301), 1, + anon_sym_RBRACE, + [124213] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7195), 1, + anon_sym_RBRACE, + [124220] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7616), 1, - anon_sym_esac, - [124291] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7242), 1, - anon_sym_RBRACE, - [124298] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7618), 1, - anon_sym_RPAREN, - [124305] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7620), 1, - anon_sym_RPAREN, - [124312] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6857), 1, - anon_sym_fi, - [124319] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7622), 1, - anon_sym_RPAREN, - [124326] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7624), 1, - anon_sym_BQUOTE, - [124333] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7626), 1, - anon_sym_RPAREN, - [124340] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7628), 1, - anon_sym_BQUOTE, - [124347] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7232), 1, - anon_sym_RBRACE, - [124354] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7630), 1, - anon_sym_BQUOTE, - [124361] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7632), 1, - anon_sym_RPAREN, - [124368] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7634), 1, - anon_sym_BQUOTE, - [124375] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7636), 1, - anon_sym_RPAREN, - [124382] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7638), 1, - anon_sym_RPAREN, - [124389] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7640), 1, - anon_sym_in, - [124396] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7642), 1, - anon_sym_RPAREN, - [124403] = 2, - ACTIONS(4189), 1, + anon_sym_RBRACK, + [124227] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7329), 1, anon_sym_RBRACE, - [124410] = 2, - ACTIONS(4189), 1, + [124234] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7644), 1, + ACTIONS(7618), 1, anon_sym_RPAREN, - [124417] = 2, - ACTIONS(4189), 1, + [124241] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7646), 1, - sym_heredoc_start, - [124424] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7648), 1, - anon_sym_BQUOTE, - [124431] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7650), 1, - anon_sym_RPAREN, - [124438] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7652), 1, - anon_sym_BQUOTE, - [124445] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7654), 1, - sym_heredoc_start, - [124452] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7395), 1, + ACTIONS(7270), 1, anon_sym_RBRACE, - [124459] = 2, - ACTIONS(4189), 1, + [124248] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7656), 1, - anon_sym_BQUOTE, - [124466] = 2, - ACTIONS(4189), 1, + ACTIONS(7323), 1, + anon_sym_RBRACE, + [124255] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7658), 1, - anon_sym_RPAREN, - [124473] = 2, - ACTIONS(4189), 1, + ACTIONS(7620), 1, + anon_sym_fi, + [124262] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7660), 1, - anon_sym_RPAREN, - [124480] = 2, - ACTIONS(4189), 1, + ACTIONS(7622), 1, + sym_word, + [124269] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7662), 1, + ACTIONS(7624), 1, anon_sym_esac, - [124487] = 2, - ACTIONS(4189), 1, + [124276] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7664), 1, - anon_sym_BQUOTE, - [124494] = 2, - ACTIONS(4189), 1, + ACTIONS(7293), 1, + anon_sym_RBRACE, + [124283] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7666), 1, - anon_sym_RPAREN, - [124501] = 2, - ACTIONS(4189), 1, + ACTIONS(6871), 1, + anon_sym_fi, + [124290] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7668), 1, - anon_sym_RPAREN, - [124508] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7670), 1, + ACTIONS(7626), 1, anon_sym_esac, - [124515] = 2, - ACTIONS(4189), 1, + [124297] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7672), 1, - anon_sym_RPAREN, - [124522] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7335), 1, + ACTIONS(7272), 1, anon_sym_RBRACE, - [124529] = 2, - ACTIONS(4189), 1, + [124304] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7674), 1, + ACTIONS(7628), 1, anon_sym_RPAREN, - [124536] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7676), 1, - anon_sym_RPAREN, - [124543] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7678), 1, - anon_sym_BQUOTE, - [124550] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7222), 1, - anon_sym_RBRACE, - [124557] = 2, - ACTIONS(4189), 1, + [124311] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7339), 1, anon_sym_RBRACE, - [124564] = 2, - ACTIONS(4189), 1, + [124318] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7630), 1, + anon_sym_RPAREN, + [124325] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7280), 1, + anon_sym_RBRACE, + [124332] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6863), 1, + anon_sym_fi, + [124339] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7632), 1, + anon_sym_RPAREN, + [124346] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7262), 1, + anon_sym_RBRACE, + [124353] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7634), 1, + anon_sym_RPAREN, + [124360] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7636), 1, + anon_sym_BQUOTE, + [124367] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_RPAREN, + [124374] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7640), 1, + anon_sym_RPAREN, + [124381] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7252), 1, + anon_sym_RBRACE, + [124388] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7642), 1, + anon_sym_RPAREN, + [124395] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7644), 1, + anon_sym_BQUOTE, + [124402] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7646), 1, + anon_sym_RPAREN, + [124409] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7648), 1, + anon_sym_RPAREN, + [124416] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7650), 1, + anon_sym_in, + [124423] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7652), 1, + anon_sym_BQUOTE, + [124430] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7654), 1, + sym_heredoc_start, + [124437] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7656), 1, + anon_sym_BQUOTE, + [124444] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7337), 1, + anon_sym_RBRACE, + [124451] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7658), 1, + anon_sym_RPAREN, + [124458] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7660), 1, + anon_sym_RPAREN, + [124465] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7662), 1, + anon_sym_RPAREN, + [124472] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7664), 1, + anon_sym_RPAREN, + [124479] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7666), 1, + anon_sym_esac, + [124486] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7668), 1, + sym_heredoc_start, + [124493] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7670), 1, + anon_sym_RPAREN, + [124500] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7672), 1, + anon_sym_RPAREN, + [124507] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7674), 1, + anon_sym_RPAREN, + [124514] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7676), 1, + anon_sym_BQUOTE, + [124521] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7678), 1, + anon_sym_RPAREN, + [124528] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7680), 1, - anon_sym_RPAREN, - [124571] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [124535] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7682), 1, - anon_sym_then, - [124578] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [124542] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7345), 1, + anon_sym_RBRACE, + [124549] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7684), 1, - anon_sym_RPAREN, - [124585] = 2, - ACTIONS(4189), 1, + anon_sym_in, + [124556] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7686), 1, - anon_sym_RPAREN, - [124592] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [124563] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7688), 1, - anon_sym_BQUOTE, - [124599] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7690), 1, - anon_sym_RPAREN, - [124606] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7692), 1, - anon_sym_RPAREN, - [124613] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7341), 1, + ACTIONS(7201), 1, anon_sym_RBRACE, - [124620] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7107), 1, - anon_sym_RBRACE, - [124627] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7694), 1, - anon_sym_RPAREN, - [124634] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7696), 1, - sym_heredoc_start, - [124641] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7698), 1, - sym_word, - [124648] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7700), 1, - anon_sym_BQUOTE, - [124655] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7702), 1, - anon_sym_RPAREN, - [124662] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7704), 1, - anon_sym_RPAREN, - [124669] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7351), 1, - anon_sym_RBRACE, - [124676] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_RBRACE, - [124683] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7706), 1, - anon_sym_BQUOTE, - [124690] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7708), 1, - anon_sym_RPAREN, - [124697] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7205), 1, - anon_sym_RBRACE, - [124704] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7710), 1, - anon_sym_RPAREN, - [124711] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7357), 1, - anon_sym_RBRACE, - [124718] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7197), 1, - anon_sym_RBRACE, - [124725] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7712), 1, - anon_sym_then, - [124732] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7181), 1, - anon_sym_RBRACE, - [124739] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7714), 1, - anon_sym_RPAREN, - [124746] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7422), 1, - anon_sym_RBRACE, - [124753] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7716), 1, - anon_sym_RPAREN, - [124760] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7193), 1, - anon_sym_RBRACE, - [124767] = 2, - ACTIONS(4189), 1, + [124570] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7191), 1, anon_sym_RBRACE, - [124774] = 2, - ACTIONS(4189), 1, + [124577] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7688), 1, + anon_sym_BQUOTE, + [124584] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7690), 1, + anon_sym_RPAREN, + [124591] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7692), 1, + anon_sym_BQUOTE, + [124598] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7229), 1, + anon_sym_RBRACE, + [124605] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7694), 1, + anon_sym_RPAREN, + [124612] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7696), 1, + anon_sym_then, + [124619] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7698), 1, + anon_sym_BQUOTE, + [124626] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7235), 1, + anon_sym_RBRACE, + [124633] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7700), 1, + anon_sym_RPAREN, + [124640] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7119), 1, + anon_sym_RBRACE, + [124647] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7702), 1, + anon_sym_RPAREN, + [124654] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6881), 1, + anon_sym_fi, + [124661] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7704), 1, + anon_sym_RPAREN, + [124668] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7706), 1, + anon_sym_RPAREN, + [124675] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7708), 1, + anon_sym_BQUOTE, + [124682] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7710), 1, + anon_sym_RPAREN, + [124689] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7712), 1, + anon_sym_esac, + [124696] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7714), 1, + anon_sym_RPAREN, + [124703] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7716), 1, + anon_sym_RPAREN, + [124710] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7718), 1, - anon_sym_RBRACK, - [124781] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [124717] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7365), 1, + ACTIONS(7349), 1, anon_sym_RBRACE, - [124788] = 2, - ACTIONS(4189), 1, + [124724] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7720), 1, - anon_sym_BQUOTE, - [124795] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7185), 1, - anon_sym_RBRACE, - [124802] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [124731] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7722), 1, anon_sym_RPAREN, - [124809] = 2, - ACTIONS(4189), 1, + [124738] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7375), 1, + ACTIONS(7215), 1, anon_sym_RBRACE, - [124816] = 2, - ACTIONS(4189), 1, + [124745] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(7724), 1, - anon_sym_BQUOTE, - [124823] = 2, - ACTIONS(4189), 1, + sym_word, + [124752] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7726), 1, - anon_sym_esac, - [124830] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [124759] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7728), 1, - anon_sym_esac, - [124837] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [124766] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7217), 1, + anon_sym_RBRACE, + [124773] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7730), 1, - anon_sym_esac, - [124844] = 2, - ACTIONS(4189), 1, + anon_sym_then, + [124780] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7209), 1, + anon_sym_RBRACE, + [124787] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7359), 1, + anon_sym_RBRACE, + [124794] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7732), 1, - anon_sym_esac, - [124851] = 2, - ACTIONS(4189), 1, + sym_heredoc_start, + [124801] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7381), 1, + anon_sym_RBRACE, + [124808] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7734), 1, - anon_sym_RPAREN, - [124858] = 2, - ACTIONS(4189), 1, + anon_sym_then, + [124815] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7183), 1, + ACTIONS(7205), 1, anon_sym_RBRACE, - [124865] = 2, - ACTIONS(4189), 1, + [124822] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7361), 1, + anon_sym_RBRACE, + [124829] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7355), 1, + anon_sym_RBRACE, + [124836] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6857), 1, + anon_sym_fi, + [124843] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7736), 1, - anon_sym_then, - [124872] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7738), 1, anon_sym_RPAREN, - [124879] = 2, - ACTIONS(4189), 1, + [124850] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7357), 1, + anon_sym_RBRACE, + [124857] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7367), 1, + anon_sym_RBRACE, + [124864] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7387), 1, anon_sym_RBRACE, - [124886] = 2, - ACTIONS(4189), 1, + [124871] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7193), 1, + anon_sym_RBRACE, + [124878] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7738), 1, + anon_sym_esac, + [124885] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7740), 1, - anon_sym_BQUOTE, - [124893] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [124892] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7742), 1, - anon_sym_RPAREN, - [124900] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [124899] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7744), 1, - anon_sym_RPAREN, - [124907] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [124906] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7746), 1, - anon_sym_BQUOTE, - [124914] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7101), 1, - anon_sym_RBRACE, - [124921] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6855), 1, - anon_sym_fi, - [124928] = 2, - ACTIONS(4189), 1, + anon_sym_then, + [124913] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7748), 1, anon_sym_RPAREN, - [124935] = 2, - ACTIONS(4189), 1, + [124920] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7750), 1, anon_sym_RPAREN, - [124942] = 2, - ACTIONS(4189), 1, + [124927] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7752), 1, - anon_sym_BQUOTE, - [124949] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7424), 1, - anon_sym_RBRACE, - [124956] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [124934] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7754), 1, - anon_sym_RBRACK, - [124963] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [124941] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7756), 1, - anon_sym_RPAREN, - [124970] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7389), 1, - anon_sym_RBRACE, - [124977] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [124948] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7758), 1, - anon_sym_BQUOTE, - [124984] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [124955] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7760), 1, anon_sym_RPAREN, - [124991] = 2, - ACTIONS(4189), 1, + [124962] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7762), 1, - anon_sym_esac, - [124998] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [124969] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7169), 1, + ACTIONS(7409), 1, anon_sym_RBRACE, - [125005] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7171), 1, - anon_sym_RBRACE, - [125012] = 2, - ACTIONS(4189), 1, + [124976] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7764), 1, - anon_sym_RPAREN, - [125019] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [124983] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7766), 1, - anon_sym_BQUOTE, - [125026] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [124990] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7185), 1, + anon_sym_RBRACE, + [124997] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7438), 1, + anon_sym_RBRACE, + [125004] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(6879), 1, + anon_sym_fi, + [125011] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7768), 1, anon_sym_RPAREN, - [125033] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7167), 1, - anon_sym_RBRACE, - [125040] = 2, - ACTIONS(4189), 1, + [125018] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7179), 1, anon_sym_RBRACE, - [125047] = 2, - ACTIONS(4189), 1, + [125025] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7770), 1, - anon_sym_esac, - [125054] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [125032] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7772), 1, - anon_sym_fi, - [125061] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125039] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7774), 1, - anon_sym_BQUOTE, - [125068] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [125046] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7776), 1, - anon_sym_RBRACK, - [125075] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7159), 1, - anon_sym_RBRACE, - [125082] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125053] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7778), 1, - ts_builtin_sym_end, - [125089] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125060] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7177), 1, + anon_sym_RBRACE, + [125067] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7780), 1, - anon_sym_RPAREN, - [125096] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [125074] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7782), 1, - anon_sym_in, - [125103] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125081] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7183), 1, + anon_sym_RBRACE, + [125088] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7784), 1, - ts_builtin_sym_end, - [125110] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7161), 1, - anon_sym_RBRACE, - [125117] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125095] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7786), 1, - anon_sym_RPAREN, - [125124] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7417), 1, - anon_sym_RBRACE, - [125131] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [125102] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7788), 1, - anon_sym_esac, - [125138] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7151), 1, - anon_sym_RBRACE, - [125145] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [125109] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7790), 1, - anon_sym_BQUOTE, - [125152] = 2, - ACTIONS(4189), 1, + anon_sym_fi, + [125116] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7171), 1, + anon_sym_RBRACE, + [125123] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7792), 1, - anon_sym_RPAREN, - [125159] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7379), 1, - anon_sym_RBRACE, - [125166] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7413), 1, - anon_sym_RBRACE, - [125173] = 2, - ACTIONS(4189), 1, + ts_builtin_sym_end, + [125130] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7794), 1, - anon_sym_RPAREN, - [125180] = 2, - ACTIONS(3), 1, + ts_builtin_sym_end, + [125137] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7796), 1, - sym_word, - [125187] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7383), 1, - anon_sym_RBRACE, - [125194] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7371), 1, - anon_sym_RBRACE, - [125201] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7798), 1, - anon_sym_BQUOTE, - [125208] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7800), 1, - anon_sym_BQUOTE, - [125215] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125144] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7405), 1, anon_sym_RBRACE, - [125222] = 2, - ACTIONS(4189), 1, + [125151] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7173), 1, + anon_sym_RBRACE, + [125158] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7167), 1, + anon_sym_RBRACE, + [125165] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7798), 1, + anon_sym_RPAREN, + [125172] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7800), 1, + anon_sym_RBRACK, + [125179] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7802), 1, - anon_sym_esac, - [125229] = 2, - ACTIONS(4189), 1, + anon_sym_RBRACK, + [125186] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7804), 1, anon_sym_BQUOTE, - [125236] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7401), 1, - anon_sym_RBRACE, - [125243] = 2, - ACTIONS(4189), 1, + [125193] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7806), 1, anon_sym_RPAREN, - [125250] = 2, - ACTIONS(4189), 1, + [125200] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7808), 1, - anon_sym_RPAREN, - [125257] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [125207] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7431), 1, + anon_sym_RBRACE, + [125214] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7397), 1, + anon_sym_RBRACE, + [125221] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(7810), 1, - anon_sym_RPAREN, - [125264] = 2, - ACTIONS(4189), 1, + sym_word, + [125228] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7812), 1, anon_sym_RPAREN, - [125271] = 2, - ACTIONS(4189), 1, + [125235] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7149), 1, + ACTIONS(7429), 1, anon_sym_RBRACE, - [125278] = 2, - ACTIONS(4189), 1, + [125242] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7383), 1, + anon_sym_RBRACE, + [125249] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7814), 1, anon_sym_RPAREN, - [125285] = 2, - ACTIONS(4189), 1, + [125256] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7454), 1, + aux_sym__simple_variable_name_token1, + [125263] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7399), 1, + anon_sym_RBRACE, + [125270] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7421), 1, + anon_sym_RBRACE, + [125277] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7395), 1, + anon_sym_RBRACE, + [125284] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7458), 1, + aux_sym__simple_variable_name_token1, + [125291] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7816), 1, - anon_sym_in, - [125292] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [125298] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7818), 1, - anon_sym_in, - [125299] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [125305] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7417), 1, + anon_sym_RBRACE, + [125312] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7820), 1, - anon_sym_BQUOTE, - [125306] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7143), 1, - anon_sym_RBRACE, - [125313] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7145), 1, - anon_sym_RBRACE, - [125320] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125319] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7822), 1, - anon_sym_fi, - [125327] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125326] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7161), 1, + anon_sym_RBRACE, + [125333] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7824), 1, - anon_sym_esac, - [125334] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7129), 1, - anon_sym_RBRACE, - [125341] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [125340] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7826), 1, - anon_sym_esac, - [125348] = 2, - ACTIONS(4189), 1, + anon_sym_in, + [125347] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7828), 1, - anon_sym_RPAREN, - [125355] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7117), 1, - anon_sym_RBRACE, - [125362] = 2, - ACTIONS(4189), 1, + anon_sym_in, + [125354] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7830), 1, anon_sym_esac, - [125369] = 2, - ACTIONS(4189), 1, + [125361] = 2, + ACTIONS(4073), 1, sym_comment, - ACTIONS(7123), 1, + ACTIONS(7155), 1, anon_sym_RBRACE, - [125376] = 2, - ACTIONS(4189), 1, + [125368] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7157), 1, + anon_sym_RBRACE, + [125375] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7149), 1, + anon_sym_RBRACE, + [125382] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7832), 1, - anon_sym_BQUOTE, - [125383] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(6847), 1, - anon_sym_fi, - [125390] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125389] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7834), 1, - anon_sym_RPAREN, - [125397] = 2, - ACTIONS(4189), 1, + anon_sym_fi, + [125396] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7836), 1, - anon_sym_BQUOTE, - [125404] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [125403] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7838), 1, - anon_sym_RPAREN, - [125411] = 2, - ACTIONS(4189), 1, + anon_sym_esac, + [125410] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7129), 1, + anon_sym_RBRACE, + [125417] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7840), 1, - anon_sym_in, - [125418] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125424] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7446), 1, + aux_sym__simple_variable_name_token1, + [125431] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7842), 1, - anon_sym_in, - [125425] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125438] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7131), 1, + anon_sym_RBRACE, + [125445] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7844), 1, - anon_sym_RPAREN, - [125432] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7115), 1, - anon_sym_RBRACE, - [125439] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [125452] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7846), 1, - anon_sym_esac, - [125446] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125459] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7848), 1, - anon_sym_RPAREN, - [125453] = 2, - ACTIONS(4189), 1, + anon_sym_BQUOTE, + [125466] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7850), 1, - anon_sym_BQUOTE, - [125460] = 2, - ACTIONS(4189), 1, + anon_sym_RPAREN, + [125473] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7852), 1, - anon_sym_RPAREN, - [125467] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7109), 1, - anon_sym_RBRACE, - [125474] = 2, - ACTIONS(4189), 1, - sym_comment, - ACTIONS(7105), 1, - anon_sym_RBRACE, - [125481] = 2, - ACTIONS(4189), 1, + anon_sym_in, + [125480] = 2, + ACTIONS(4073), 1, sym_comment, ACTIONS(7854), 1, + anon_sym_in, + [125487] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7856), 1, anon_sym_BQUOTE, + [125494] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7127), 1, + anon_sym_RBRACE, + [125501] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7858), 1, + anon_sym_RPAREN, + [125508] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7860), 1, + anon_sym_BQUOTE, + [125515] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7862), 1, + anon_sym_RPAREN, + [125522] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7864), 1, + anon_sym_RPAREN, + [125529] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7121), 1, + anon_sym_RBRACE, + [125536] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7117), 1, + anon_sym_RBRACE, + [125543] = 2, + ACTIONS(4073), 1, + sym_comment, + ACTIONS(7866), 1, + anon_sym_esac, }; static const uint32_t ts_small_parse_table_map[] = { @@ -122907,3322 +123150,3325 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(159)] = 83, [SMALL_STATE(160)] = 166, [SMALL_STATE(161)] = 249, - [SMALL_STATE(162)] = 311, - [SMALL_STATE(163)] = 373, - [SMALL_STATE(164)] = 455, - [SMALL_STATE(165)] = 519, - [SMALL_STATE(166)] = 601, - [SMALL_STATE(167)] = 683, - [SMALL_STATE(168)] = 764, - [SMALL_STATE(169)] = 823, - [SMALL_STATE(170)] = 902, - [SMALL_STATE(171)] = 981, - [SMALL_STATE(172)] = 1062, - [SMALL_STATE(173)] = 1143, - [SMALL_STATE(174)] = 1204, - [SMALL_STATE(175)] = 1285, - [SMALL_STATE(176)] = 1364, - [SMALL_STATE(177)] = 1443, - [SMALL_STATE(178)] = 1506, - [SMALL_STATE(179)] = 1567, - [SMALL_STATE(180)] = 1646, - [SMALL_STATE(181)] = 1709, - [SMALL_STATE(182)] = 1790, - [SMALL_STATE(183)] = 1871, - [SMALL_STATE(184)] = 1934, - [SMALL_STATE(185)] = 2012, - [SMALL_STATE(186)] = 2090, - [SMALL_STATE(187)] = 2152, - [SMALL_STATE(188)] = 2228, - [SMALL_STATE(189)] = 2306, - [SMALL_STATE(190)] = 2368, - [SMALL_STATE(191)] = 2446, - [SMALL_STATE(192)] = 2522, - [SMALL_STATE(193)] = 2584, - [SMALL_STATE(194)] = 2646, - [SMALL_STATE(195)] = 2724, - [SMALL_STATE(196)] = 2800, - [SMALL_STATE(197)] = 2862, - [SMALL_STATE(198)] = 2940, - [SMALL_STATE(199)] = 3018, - [SMALL_STATE(200)] = 3071, - [SMALL_STATE(201)] = 3124, - [SMALL_STATE(202)] = 3181, - [SMALL_STATE(203)] = 3258, - [SMALL_STATE(204)] = 3335, - [SMALL_STATE(205)] = 3396, - [SMALL_STATE(206)] = 3473, - [SMALL_STATE(207)] = 3526, - [SMALL_STATE(208)] = 3579, - [SMALL_STATE(209)] = 3640, - [SMALL_STATE(210)] = 3717, - [SMALL_STATE(211)] = 3794, - [SMALL_STATE(212)] = 3847, - [SMALL_STATE(213)] = 3906, - [SMALL_STATE(214)] = 3983, - [SMALL_STATE(215)] = 4058, - [SMALL_STATE(216)] = 4115, - [SMALL_STATE(217)] = 4176, - [SMALL_STATE(218)] = 4251, - [SMALL_STATE(219)] = 4328, - [SMALL_STATE(220)] = 4387, - [SMALL_STATE(221)] = 4440, - [SMALL_STATE(222)] = 4499, - [SMALL_STATE(223)] = 4576, - [SMALL_STATE(224)] = 4633, - [SMALL_STATE(225)] = 4694, - [SMALL_STATE(226)] = 4753, - [SMALL_STATE(227)] = 4828, - [SMALL_STATE(228)] = 4905, - [SMALL_STATE(229)] = 4982, - [SMALL_STATE(230)] = 5043, - [SMALL_STATE(231)] = 5096, - [SMALL_STATE(232)] = 5149, - [SMALL_STATE(233)] = 5223, - [SMALL_STATE(234)] = 5297, - [SMALL_STATE(235)] = 5371, - [SMALL_STATE(236)] = 5431, - [SMALL_STATE(237)] = 5481, - [SMALL_STATE(238)] = 5555, - [SMALL_STATE(239)] = 5629, - [SMALL_STATE(240)] = 5703, - [SMALL_STATE(241)] = 5761, - [SMALL_STATE(242)] = 5817, - [SMALL_STATE(243)] = 5877, - [SMALL_STATE(244)] = 5927, - [SMALL_STATE(245)] = 5985, - [SMALL_STATE(246)] = 6059, - [SMALL_STATE(247)] = 6133, - [SMALL_STATE(248)] = 6207, - [SMALL_STATE(249)] = 6281, - [SMALL_STATE(250)] = 6352, - [SMALL_STATE(251)] = 6443, - [SMALL_STATE(252)] = 6534, - [SMALL_STATE(253)] = 6625, - [SMALL_STATE(254)] = 6716, - [SMALL_STATE(255)] = 6787, - [SMALL_STATE(256)] = 6878, - [SMALL_STATE(257)] = 6928, - [SMALL_STATE(258)] = 6976, - [SMALL_STATE(259)] = 7026, - [SMALL_STATE(260)] = 7076, - [SMALL_STATE(261)] = 7124, - [SMALL_STATE(262)] = 7172, - [SMALL_STATE(263)] = 7222, - [SMALL_STATE(264)] = 7270, - [SMALL_STATE(265)] = 7318, - [SMALL_STATE(266)] = 7366, - [SMALL_STATE(267)] = 7415, - [SMALL_STATE(268)] = 7462, - [SMALL_STATE(269)] = 7511, - [SMALL_STATE(270)] = 7558, - [SMALL_STATE(271)] = 7607, - [SMALL_STATE(272)] = 7670, - [SMALL_STATE(273)] = 7719, - [SMALL_STATE(274)] = 7772, - [SMALL_STATE(275)] = 7825, - [SMALL_STATE(276)] = 7888, - [SMALL_STATE(277)] = 7941, - [SMALL_STATE(278)] = 7991, - [SMALL_STATE(279)] = 8041, - [SMALL_STATE(280)] = 8103, - [SMALL_STATE(281)] = 8153, - [SMALL_STATE(282)] = 8203, - [SMALL_STATE(283)] = 8253, - [SMALL_STATE(284)] = 8305, - [SMALL_STATE(285)] = 8357, - [SMALL_STATE(286)] = 8409, - [SMALL_STATE(287)] = 8459, - [SMALL_STATE(288)] = 8509, - [SMALL_STATE(289)] = 8559, - [SMALL_STATE(290)] = 8609, - [SMALL_STATE(291)] = 8659, - [SMALL_STATE(292)] = 8721, - [SMALL_STATE(293)] = 8771, - [SMALL_STATE(294)] = 8816, - [SMALL_STATE(295)] = 8865, - [SMALL_STATE(296)] = 8914, - [SMALL_STATE(297)] = 8963, - [SMALL_STATE(298)] = 9012, - [SMALL_STATE(299)] = 9061, - [SMALL_STATE(300)] = 9110, - [SMALL_STATE(301)] = 9155, - [SMALL_STATE(302)] = 9200, - [SMALL_STATE(303)] = 9245, - [SMALL_STATE(304)] = 9290, - [SMALL_STATE(305)] = 9335, - [SMALL_STATE(306)] = 9380, - [SMALL_STATE(307)] = 9425, - [SMALL_STATE(308)] = 9470, - [SMALL_STATE(309)] = 9515, - [SMALL_STATE(310)] = 9560, - [SMALL_STATE(311)] = 9605, - [SMALL_STATE(312)] = 9650, - [SMALL_STATE(313)] = 9711, - [SMALL_STATE(314)] = 9762, - [SMALL_STATE(315)] = 9811, - [SMALL_STATE(316)] = 9856, - [SMALL_STATE(317)] = 9901, - [SMALL_STATE(318)] = 9952, - [SMALL_STATE(319)] = 9997, - [SMALL_STATE(320)] = 10042, - [SMALL_STATE(321)] = 10091, - [SMALL_STATE(322)] = 10140, - [SMALL_STATE(323)] = 10191, - [SMALL_STATE(324)] = 10236, - [SMALL_STATE(325)] = 10297, - [SMALL_STATE(326)] = 10348, - [SMALL_STATE(327)] = 10397, - [SMALL_STATE(328)] = 10442, - [SMALL_STATE(329)] = 10491, - [SMALL_STATE(330)] = 10536, - [SMALL_STATE(331)] = 10585, - [SMALL_STATE(332)] = 10630, - [SMALL_STATE(333)] = 10675, - [SMALL_STATE(334)] = 10720, - [SMALL_STATE(335)] = 10765, - [SMALL_STATE(336)] = 10810, - [SMALL_STATE(337)] = 10871, - [SMALL_STATE(338)] = 10916, - [SMALL_STATE(339)] = 10961, - [SMALL_STATE(340)] = 11006, - [SMALL_STATE(341)] = 11051, - [SMALL_STATE(342)] = 11096, - [SMALL_STATE(343)] = 11141, - [SMALL_STATE(344)] = 11186, - [SMALL_STATE(345)] = 11231, - [SMALL_STATE(346)] = 11280, - [SMALL_STATE(347)] = 11329, - [SMALL_STATE(348)] = 11380, - [SMALL_STATE(349)] = 11429, - [SMALL_STATE(350)] = 11474, - [SMALL_STATE(351)] = 11519, - [SMALL_STATE(352)] = 11564, - [SMALL_STATE(353)] = 11609, - [SMALL_STATE(354)] = 11658, - [SMALL_STATE(355)] = 11707, - [SMALL_STATE(356)] = 11756, - [SMALL_STATE(357)] = 11805, - [SMALL_STATE(358)] = 11858, - [SMALL_STATE(359)] = 11907, - [SMALL_STATE(360)] = 11952, - [SMALL_STATE(361)] = 12013, - [SMALL_STATE(362)] = 12062, - [SMALL_STATE(363)] = 12111, - [SMALL_STATE(364)] = 12156, - [SMALL_STATE(365)] = 12201, - [SMALL_STATE(366)] = 12246, - [SMALL_STATE(367)] = 12295, - [SMALL_STATE(368)] = 12340, - [SMALL_STATE(369)] = 12385, - [SMALL_STATE(370)] = 12430, - [SMALL_STATE(371)] = 12479, - [SMALL_STATE(372)] = 12524, - [SMALL_STATE(373)] = 12569, - [SMALL_STATE(374)] = 12618, - [SMALL_STATE(375)] = 12663, - [SMALL_STATE(376)] = 12708, - [SMALL_STATE(377)] = 12753, - [SMALL_STATE(378)] = 12798, - [SMALL_STATE(379)] = 12847, - [SMALL_STATE(380)] = 12892, - [SMALL_STATE(381)] = 12937, - [SMALL_STATE(382)] = 12981, - [SMALL_STATE(383)] = 13025, - [SMALL_STATE(384)] = 13069, - [SMALL_STATE(385)] = 13113, - [SMALL_STATE(386)] = 13157, - [SMALL_STATE(387)] = 13205, - [SMALL_STATE(388)] = 13249, - [SMALL_STATE(389)] = 13297, - [SMALL_STATE(390)] = 13345, - [SMALL_STATE(391)] = 13389, - [SMALL_STATE(392)] = 13437, - [SMALL_STATE(393)] = 13481, - [SMALL_STATE(394)] = 13525, - [SMALL_STATE(395)] = 13573, - [SMALL_STATE(396)] = 13617, - [SMALL_STATE(397)] = 13661, - [SMALL_STATE(398)] = 13705, - [SMALL_STATE(399)] = 13749, - [SMALL_STATE(400)] = 13793, - [SMALL_STATE(401)] = 13837, - [SMALL_STATE(402)] = 13881, - [SMALL_STATE(403)] = 13929, - [SMALL_STATE(404)] = 13973, - [SMALL_STATE(405)] = 14021, - [SMALL_STATE(406)] = 14069, - [SMALL_STATE(407)] = 14113, - [SMALL_STATE(408)] = 14161, - [SMALL_STATE(409)] = 14205, - [SMALL_STATE(410)] = 14249, - [SMALL_STATE(411)] = 14293, - [SMALL_STATE(412)] = 14337, - [SMALL_STATE(413)] = 14385, - [SMALL_STATE(414)] = 14429, - [SMALL_STATE(415)] = 14473, - [SMALL_STATE(416)] = 14517, - [SMALL_STATE(417)] = 14561, - [SMALL_STATE(418)] = 14605, - [SMALL_STATE(419)] = 14649, - [SMALL_STATE(420)] = 14697, - [SMALL_STATE(421)] = 14741, - [SMALL_STATE(422)] = 14785, - [SMALL_STATE(423)] = 14833, - [SMALL_STATE(424)] = 14877, - [SMALL_STATE(425)] = 14921, - [SMALL_STATE(426)] = 14965, - [SMALL_STATE(427)] = 15009, - [SMALL_STATE(428)] = 15053, - [SMALL_STATE(429)] = 15101, - [SMALL_STATE(430)] = 15145, - [SMALL_STATE(431)] = 15189, - [SMALL_STATE(432)] = 15247, - [SMALL_STATE(433)] = 15291, - [SMALL_STATE(434)] = 15339, - [SMALL_STATE(435)] = 15383, - [SMALL_STATE(436)] = 15431, - [SMALL_STATE(437)] = 15475, - [SMALL_STATE(438)] = 15519, - [SMALL_STATE(439)] = 15563, - [SMALL_STATE(440)] = 15607, - [SMALL_STATE(441)] = 15651, - [SMALL_STATE(442)] = 15699, - [SMALL_STATE(443)] = 15743, - [SMALL_STATE(444)] = 15787, - [SMALL_STATE(445)] = 15831, - [SMALL_STATE(446)] = 15875, - [SMALL_STATE(447)] = 15919, - [SMALL_STATE(448)] = 15963, - [SMALL_STATE(449)] = 16007, - [SMALL_STATE(450)] = 16051, - [SMALL_STATE(451)] = 16095, - [SMALL_STATE(452)] = 16143, - [SMALL_STATE(453)] = 16201, - [SMALL_STATE(454)] = 16245, - [SMALL_STATE(455)] = 16293, - [SMALL_STATE(456)] = 16341, - [SMALL_STATE(457)] = 16385, - [SMALL_STATE(458)] = 16443, - [SMALL_STATE(459)] = 16487, - [SMALL_STATE(460)] = 16535, - [SMALL_STATE(461)] = 16579, - [SMALL_STATE(462)] = 16623, - [SMALL_STATE(463)] = 16667, - [SMALL_STATE(464)] = 16711, - [SMALL_STATE(465)] = 16755, - [SMALL_STATE(466)] = 16803, - [SMALL_STATE(467)] = 16851, - [SMALL_STATE(468)] = 16895, - [SMALL_STATE(469)] = 16939, - [SMALL_STATE(470)] = 16987, - [SMALL_STATE(471)] = 17031, - [SMALL_STATE(472)] = 17075, - [SMALL_STATE(473)] = 17123, - [SMALL_STATE(474)] = 17167, - [SMALL_STATE(475)] = 17211, - [SMALL_STATE(476)] = 17255, - [SMALL_STATE(477)] = 17303, - [SMALL_STATE(478)] = 17351, - [SMALL_STATE(479)] = 17395, - [SMALL_STATE(480)] = 17439, - [SMALL_STATE(481)] = 17483, - [SMALL_STATE(482)] = 17527, - [SMALL_STATE(483)] = 17571, - [SMALL_STATE(484)] = 17615, - [SMALL_STATE(485)] = 17659, - [SMALL_STATE(486)] = 17703, - [SMALL_STATE(487)] = 17747, - [SMALL_STATE(488)] = 17791, - [SMALL_STATE(489)] = 17835, - [SMALL_STATE(490)] = 17879, - [SMALL_STATE(491)] = 17923, - [SMALL_STATE(492)] = 17967, - [SMALL_STATE(493)] = 18015, - [SMALL_STATE(494)] = 18069, - [SMALL_STATE(495)] = 18113, - [SMALL_STATE(496)] = 18157, - [SMALL_STATE(497)] = 18207, - [SMALL_STATE(498)] = 18257, - [SMALL_STATE(499)] = 18305, - [SMALL_STATE(500)] = 18349, - [SMALL_STATE(501)] = 18407, - [SMALL_STATE(502)] = 18451, - [SMALL_STATE(503)] = 18499, - [SMALL_STATE(504)] = 18555, - [SMALL_STATE(505)] = 18599, - [SMALL_STATE(506)] = 18647, - [SMALL_STATE(507)] = 18695, - [SMALL_STATE(508)] = 18739, - [SMALL_STATE(509)] = 18783, - [SMALL_STATE(510)] = 18827, - [SMALL_STATE(511)] = 18887, - [SMALL_STATE(512)] = 18931, - [SMALL_STATE(513)] = 18975, - [SMALL_STATE(514)] = 19019, - [SMALL_STATE(515)] = 19063, - [SMALL_STATE(516)] = 19111, - [SMALL_STATE(517)] = 19159, - [SMALL_STATE(518)] = 19203, - [SMALL_STATE(519)] = 19247, - [SMALL_STATE(520)] = 19295, - [SMALL_STATE(521)] = 19339, - [SMALL_STATE(522)] = 19383, - [SMALL_STATE(523)] = 19427, - [SMALL_STATE(524)] = 19471, - [SMALL_STATE(525)] = 19515, - [SMALL_STATE(526)] = 19559, - [SMALL_STATE(527)] = 19603, - [SMALL_STATE(528)] = 19647, - [SMALL_STATE(529)] = 19691, - [SMALL_STATE(530)] = 19739, - [SMALL_STATE(531)] = 19783, - [SMALL_STATE(532)] = 19827, - [SMALL_STATE(533)] = 19885, - [SMALL_STATE(534)] = 19945, - [SMALL_STATE(535)] = 19989, - [SMALL_STATE(536)] = 20037, - [SMALL_STATE(537)] = 20081, - [SMALL_STATE(538)] = 20129, - [SMALL_STATE(539)] = 20177, - [SMALL_STATE(540)] = 20225, - [SMALL_STATE(541)] = 20269, - [SMALL_STATE(542)] = 20313, - [SMALL_STATE(543)] = 20361, - [SMALL_STATE(544)] = 20409, - [SMALL_STATE(545)] = 20453, - [SMALL_STATE(546)] = 20496, - [SMALL_STATE(547)] = 20539, - [SMALL_STATE(548)] = 20586, - [SMALL_STATE(549)] = 20629, - [SMALL_STATE(550)] = 20672, - [SMALL_STATE(551)] = 20719, - [SMALL_STATE(552)] = 20762, - [SMALL_STATE(553)] = 20805, - [SMALL_STATE(554)] = 20848, - [SMALL_STATE(555)] = 20891, - [SMALL_STATE(556)] = 20934, - [SMALL_STATE(557)] = 20977, - [SMALL_STATE(558)] = 21020, - [SMALL_STATE(559)] = 21063, - [SMALL_STATE(560)] = 21106, - [SMALL_STATE(561)] = 21149, - [SMALL_STATE(562)] = 21192, - [SMALL_STATE(563)] = 21235, - [SMALL_STATE(564)] = 21278, - [SMALL_STATE(565)] = 21321, - [SMALL_STATE(566)] = 21364, - [SMALL_STATE(567)] = 21407, - [SMALL_STATE(568)] = 21450, - [SMALL_STATE(569)] = 21493, - [SMALL_STATE(570)] = 21536, - [SMALL_STATE(571)] = 21579, - [SMALL_STATE(572)] = 21622, - [SMALL_STATE(573)] = 21665, - [SMALL_STATE(574)] = 21708, - [SMALL_STATE(575)] = 21755, - [SMALL_STATE(576)] = 21802, - [SMALL_STATE(577)] = 21849, - [SMALL_STATE(578)] = 21892, - [SMALL_STATE(579)] = 21935, - [SMALL_STATE(580)] = 21982, - [SMALL_STATE(581)] = 22029, - [SMALL_STATE(582)] = 22072, - [SMALL_STATE(583)] = 22119, - [SMALL_STATE(584)] = 22166, - [SMALL_STATE(585)] = 22209, - [SMALL_STATE(586)] = 22256, - [SMALL_STATE(587)] = 22303, - [SMALL_STATE(588)] = 22350, - [SMALL_STATE(589)] = 22397, - [SMALL_STATE(590)] = 22450, - [SMALL_STATE(591)] = 22497, - [SMALL_STATE(592)] = 22544, - [SMALL_STATE(593)] = 22587, - [SMALL_STATE(594)] = 22630, - [SMALL_STATE(595)] = 22673, - [SMALL_STATE(596)] = 22716, - [SMALL_STATE(597)] = 22759, - [SMALL_STATE(598)] = 22802, - [SMALL_STATE(599)] = 22845, - [SMALL_STATE(600)] = 22888, - [SMALL_STATE(601)] = 22931, - [SMALL_STATE(602)] = 22974, - [SMALL_STATE(603)] = 23017, - [SMALL_STATE(604)] = 23060, - [SMALL_STATE(605)] = 23103, - [SMALL_STATE(606)] = 23150, - [SMALL_STATE(607)] = 23193, - [SMALL_STATE(608)] = 23236, - [SMALL_STATE(609)] = 23279, - [SMALL_STATE(610)] = 23322, - [SMALL_STATE(611)] = 23365, - [SMALL_STATE(612)] = 23408, - [SMALL_STATE(613)] = 23451, - [SMALL_STATE(614)] = 23494, - [SMALL_STATE(615)] = 23537, - [SMALL_STATE(616)] = 23580, - [SMALL_STATE(617)] = 23623, - [SMALL_STATE(618)] = 23666, - [SMALL_STATE(619)] = 23709, - [SMALL_STATE(620)] = 23752, - [SMALL_STATE(621)] = 23795, - [SMALL_STATE(622)] = 23838, - [SMALL_STATE(623)] = 23881, - [SMALL_STATE(624)] = 23924, - [SMALL_STATE(625)] = 23967, - [SMALL_STATE(626)] = 24014, - [SMALL_STATE(627)] = 24057, - [SMALL_STATE(628)] = 24100, - [SMALL_STATE(629)] = 24143, - [SMALL_STATE(630)] = 24186, - [SMALL_STATE(631)] = 24229, - [SMALL_STATE(632)] = 24272, - [SMALL_STATE(633)] = 24315, - [SMALL_STATE(634)] = 24358, - [SMALL_STATE(635)] = 24401, - [SMALL_STATE(636)] = 24444, - [SMALL_STATE(637)] = 24487, - [SMALL_STATE(638)] = 24530, - [SMALL_STATE(639)] = 24573, - [SMALL_STATE(640)] = 24616, - [SMALL_STATE(641)] = 24663, - [SMALL_STATE(642)] = 24706, - [SMALL_STATE(643)] = 24749, - [SMALL_STATE(644)] = 24796, - [SMALL_STATE(645)] = 24839, - [SMALL_STATE(646)] = 24882, - [SMALL_STATE(647)] = 24929, - [SMALL_STATE(648)] = 24972, - [SMALL_STATE(649)] = 25015, - [SMALL_STATE(650)] = 25058, - [SMALL_STATE(651)] = 25105, - [SMALL_STATE(652)] = 25148, - [SMALL_STATE(653)] = 25191, - [SMALL_STATE(654)] = 25234, - [SMALL_STATE(655)] = 25277, - [SMALL_STATE(656)] = 25320, - [SMALL_STATE(657)] = 25363, - [SMALL_STATE(658)] = 25406, - [SMALL_STATE(659)] = 25449, - [SMALL_STATE(660)] = 25492, - [SMALL_STATE(661)] = 25535, - [SMALL_STATE(662)] = 25578, - [SMALL_STATE(663)] = 25625, - [SMALL_STATE(664)] = 25672, - [SMALL_STATE(665)] = 25719, - [SMALL_STATE(666)] = 25766, - [SMALL_STATE(667)] = 25809, - [SMALL_STATE(668)] = 25852, - [SMALL_STATE(669)] = 25895, - [SMALL_STATE(670)] = 25942, - [SMALL_STATE(671)] = 25989, - [SMALL_STATE(672)] = 26032, - [SMALL_STATE(673)] = 26079, - [SMALL_STATE(674)] = 26122, - [SMALL_STATE(675)] = 26165, - [SMALL_STATE(676)] = 26208, - [SMALL_STATE(677)] = 26251, - [SMALL_STATE(678)] = 26294, - [SMALL_STATE(679)] = 26337, - [SMALL_STATE(680)] = 26380, - [SMALL_STATE(681)] = 26423, - [SMALL_STATE(682)] = 26466, - [SMALL_STATE(683)] = 26509, - [SMALL_STATE(684)] = 26552, - [SMALL_STATE(685)] = 26595, - [SMALL_STATE(686)] = 26638, - [SMALL_STATE(687)] = 26681, - [SMALL_STATE(688)] = 26724, - [SMALL_STATE(689)] = 26767, - [SMALL_STATE(690)] = 26810, - [SMALL_STATE(691)] = 26853, - [SMALL_STATE(692)] = 26896, - [SMALL_STATE(693)] = 26939, - [SMALL_STATE(694)] = 26982, - [SMALL_STATE(695)] = 27025, - [SMALL_STATE(696)] = 27068, - [SMALL_STATE(697)] = 27111, - [SMALL_STATE(698)] = 27158, - [SMALL_STATE(699)] = 27201, - [SMALL_STATE(700)] = 27244, - [SMALL_STATE(701)] = 27291, - [SMALL_STATE(702)] = 27334, - [SMALL_STATE(703)] = 27377, - [SMALL_STATE(704)] = 27420, - [SMALL_STATE(705)] = 27463, - [SMALL_STATE(706)] = 27510, - [SMALL_STATE(707)] = 27553, - [SMALL_STATE(708)] = 27596, - [SMALL_STATE(709)] = 27639, - [SMALL_STATE(710)] = 27682, - [SMALL_STATE(711)] = 27725, - [SMALL_STATE(712)] = 27768, - [SMALL_STATE(713)] = 27815, - [SMALL_STATE(714)] = 27858, - [SMALL_STATE(715)] = 27901, - [SMALL_STATE(716)] = 27944, - [SMALL_STATE(717)] = 27997, - [SMALL_STATE(718)] = 28040, - [SMALL_STATE(719)] = 28083, - [SMALL_STATE(720)] = 28126, - [SMALL_STATE(721)] = 28169, - [SMALL_STATE(722)] = 28212, - [SMALL_STATE(723)] = 28255, - [SMALL_STATE(724)] = 28298, - [SMALL_STATE(725)] = 28341, - [SMALL_STATE(726)] = 28384, - [SMALL_STATE(727)] = 28427, - [SMALL_STATE(728)] = 28470, - [SMALL_STATE(729)] = 28513, - [SMALL_STATE(730)] = 28556, - [SMALL_STATE(731)] = 28599, - [SMALL_STATE(732)] = 28642, - [SMALL_STATE(733)] = 28685, - [SMALL_STATE(734)] = 28728, - [SMALL_STATE(735)] = 28771, - [SMALL_STATE(736)] = 28814, - [SMALL_STATE(737)] = 28857, - [SMALL_STATE(738)] = 28900, - [SMALL_STATE(739)] = 28943, - [SMALL_STATE(740)] = 28990, - [SMALL_STATE(741)] = 29033, - [SMALL_STATE(742)] = 29076, - [SMALL_STATE(743)] = 29119, - [SMALL_STATE(744)] = 29162, - [SMALL_STATE(745)] = 29209, - [SMALL_STATE(746)] = 29252, - [SMALL_STATE(747)] = 29295, - [SMALL_STATE(748)] = 29338, - [SMALL_STATE(749)] = 29381, - [SMALL_STATE(750)] = 29424, - [SMALL_STATE(751)] = 29466, - [SMALL_STATE(752)] = 29508, - [SMALL_STATE(753)] = 29550, - [SMALL_STATE(754)] = 29592, - [SMALL_STATE(755)] = 29634, - [SMALL_STATE(756)] = 29676, - [SMALL_STATE(757)] = 29718, - [SMALL_STATE(758)] = 29760, - [SMALL_STATE(759)] = 29802, - [SMALL_STATE(760)] = 29844, - [SMALL_STATE(761)] = 29886, - [SMALL_STATE(762)] = 29928, - [SMALL_STATE(763)] = 29970, - [SMALL_STATE(764)] = 30012, - [SMALL_STATE(765)] = 30058, - [SMALL_STATE(766)] = 30100, - [SMALL_STATE(767)] = 30142, - [SMALL_STATE(768)] = 30184, - [SMALL_STATE(769)] = 30226, - [SMALL_STATE(770)] = 30268, - [SMALL_STATE(771)] = 30310, - [SMALL_STATE(772)] = 30352, - [SMALL_STATE(773)] = 30394, - [SMALL_STATE(774)] = 30436, - [SMALL_STATE(775)] = 30478, - [SMALL_STATE(776)] = 30520, - [SMALL_STATE(777)] = 30562, - [SMALL_STATE(778)] = 30604, - [SMALL_STATE(779)] = 30646, - [SMALL_STATE(780)] = 30688, - [SMALL_STATE(781)] = 30730, - [SMALL_STATE(782)] = 30772, - [SMALL_STATE(783)] = 30846, - [SMALL_STATE(784)] = 30888, - [SMALL_STATE(785)] = 30962, - [SMALL_STATE(786)] = 31004, - [SMALL_STATE(787)] = 31046, - [SMALL_STATE(788)] = 31088, - [SMALL_STATE(789)] = 31130, - [SMALL_STATE(790)] = 31172, - [SMALL_STATE(791)] = 31214, - [SMALL_STATE(792)] = 31256, - [SMALL_STATE(793)] = 31298, - [SMALL_STATE(794)] = 31344, - [SMALL_STATE(795)] = 31386, - [SMALL_STATE(796)] = 31428, - [SMALL_STATE(797)] = 31470, - [SMALL_STATE(798)] = 31516, - [SMALL_STATE(799)] = 31558, - [SMALL_STATE(800)] = 31600, - [SMALL_STATE(801)] = 31642, - [SMALL_STATE(802)] = 31688, - [SMALL_STATE(803)] = 31730, - [SMALL_STATE(804)] = 31772, - [SMALL_STATE(805)] = 31814, - [SMALL_STATE(806)] = 31856, - [SMALL_STATE(807)] = 31898, - [SMALL_STATE(808)] = 31940, - [SMALL_STATE(809)] = 31982, - [SMALL_STATE(810)] = 32024, - [SMALL_STATE(811)] = 32066, - [SMALL_STATE(812)] = 32108, - [SMALL_STATE(813)] = 32150, - [SMALL_STATE(814)] = 32192, - [SMALL_STATE(815)] = 32234, - [SMALL_STATE(816)] = 32308, - [SMALL_STATE(817)] = 32350, - [SMALL_STATE(818)] = 32396, - [SMALL_STATE(819)] = 32470, - [SMALL_STATE(820)] = 32512, - [SMALL_STATE(821)] = 32554, - [SMALL_STATE(822)] = 32596, - [SMALL_STATE(823)] = 32638, - [SMALL_STATE(824)] = 32680, - [SMALL_STATE(825)] = 32722, - [SMALL_STATE(826)] = 32764, - [SMALL_STATE(827)] = 32806, - [SMALL_STATE(828)] = 32858, - [SMALL_STATE(829)] = 32900, - [SMALL_STATE(830)] = 32942, - [SMALL_STATE(831)] = 32984, - [SMALL_STATE(832)] = 33058, - [SMALL_STATE(833)] = 33100, - [SMALL_STATE(834)] = 33142, - [SMALL_STATE(835)] = 33184, - [SMALL_STATE(836)] = 33226, - [SMALL_STATE(837)] = 33268, - [SMALL_STATE(838)] = 33310, - [SMALL_STATE(839)] = 33352, - [SMALL_STATE(840)] = 33394, - [SMALL_STATE(841)] = 33436, - [SMALL_STATE(842)] = 33478, - [SMALL_STATE(843)] = 33520, - [SMALL_STATE(844)] = 33562, - [SMALL_STATE(845)] = 33604, - [SMALL_STATE(846)] = 33646, - [SMALL_STATE(847)] = 33688, - [SMALL_STATE(848)] = 33730, - [SMALL_STATE(849)] = 33772, - [SMALL_STATE(850)] = 33814, - [SMALL_STATE(851)] = 33856, - [SMALL_STATE(852)] = 33898, - [SMALL_STATE(853)] = 33940, - [SMALL_STATE(854)] = 33982, - [SMALL_STATE(855)] = 34024, - [SMALL_STATE(856)] = 34066, - [SMALL_STATE(857)] = 34108, - [SMALL_STATE(858)] = 34150, - [SMALL_STATE(859)] = 34192, - [SMALL_STATE(860)] = 34234, - [SMALL_STATE(861)] = 34276, - [SMALL_STATE(862)] = 34318, - [SMALL_STATE(863)] = 34364, - [SMALL_STATE(864)] = 34406, - [SMALL_STATE(865)] = 34448, - [SMALL_STATE(866)] = 34490, - [SMALL_STATE(867)] = 34532, - [SMALL_STATE(868)] = 34574, - [SMALL_STATE(869)] = 34616, - [SMALL_STATE(870)] = 34658, - [SMALL_STATE(871)] = 34700, - [SMALL_STATE(872)] = 34746, - [SMALL_STATE(873)] = 34788, - [SMALL_STATE(874)] = 34834, - [SMALL_STATE(875)] = 34876, - [SMALL_STATE(876)] = 34918, - [SMALL_STATE(877)] = 34960, - [SMALL_STATE(878)] = 35002, - [SMALL_STATE(879)] = 35044, - [SMALL_STATE(880)] = 35086, - [SMALL_STATE(881)] = 35128, - [SMALL_STATE(882)] = 35170, - [SMALL_STATE(883)] = 35212, - [SMALL_STATE(884)] = 35254, - [SMALL_STATE(885)] = 35296, - [SMALL_STATE(886)] = 35338, - [SMALL_STATE(887)] = 35380, - [SMALL_STATE(888)] = 35422, - [SMALL_STATE(889)] = 35464, - [SMALL_STATE(890)] = 35505, - [SMALL_STATE(891)] = 35546, - [SMALL_STATE(892)] = 35587, - [SMALL_STATE(893)] = 35628, - [SMALL_STATE(894)] = 35669, - [SMALL_STATE(895)] = 35710, - [SMALL_STATE(896)] = 35759, - [SMALL_STATE(897)] = 35800, - [SMALL_STATE(898)] = 35841, - [SMALL_STATE(899)] = 35882, - [SMALL_STATE(900)] = 35923, - [SMALL_STATE(901)] = 35989, - [SMALL_STATE(902)] = 36041, - [SMALL_STATE(903)] = 36107, - [SMALL_STATE(904)] = 36173, - [SMALL_STATE(905)] = 36223, - [SMALL_STATE(906)] = 36289, - [SMALL_STATE(907)] = 36355, - [SMALL_STATE(908)] = 36421, - [SMALL_STATE(909)] = 36487, - [SMALL_STATE(910)] = 36553, - [SMALL_STATE(911)] = 36619, - [SMALL_STATE(912)] = 36669, - [SMALL_STATE(913)] = 36719, - [SMALL_STATE(914)] = 36782, - [SMALL_STATE(915)] = 36843, - [SMALL_STATE(916)] = 36904, - [SMALL_STATE(917)] = 36965, - [SMALL_STATE(918)] = 37026, - [SMALL_STATE(919)] = 37087, - [SMALL_STATE(920)] = 37148, - [SMALL_STATE(921)] = 37209, - [SMALL_STATE(922)] = 37270, - [SMALL_STATE(923)] = 37331, - [SMALL_STATE(924)] = 37392, - [SMALL_STATE(925)] = 37453, - [SMALL_STATE(926)] = 37514, - [SMALL_STATE(927)] = 37575, - [SMALL_STATE(928)] = 37636, - [SMALL_STATE(929)] = 37697, - [SMALL_STATE(930)] = 37758, - [SMALL_STATE(931)] = 37819, - [SMALL_STATE(932)] = 37880, - [SMALL_STATE(933)] = 37941, - [SMALL_STATE(934)] = 38002, - [SMALL_STATE(935)] = 38063, - [SMALL_STATE(936)] = 38124, - [SMALL_STATE(937)] = 38187, - [SMALL_STATE(938)] = 38248, - [SMALL_STATE(939)] = 38309, - [SMALL_STATE(940)] = 38370, - [SMALL_STATE(941)] = 38431, - [SMALL_STATE(942)] = 38494, - [SMALL_STATE(943)] = 38555, - [SMALL_STATE(944)] = 38616, - [SMALL_STATE(945)] = 38677, - [SMALL_STATE(946)] = 38738, - [SMALL_STATE(947)] = 38799, - [SMALL_STATE(948)] = 38860, - [SMALL_STATE(949)] = 38921, - [SMALL_STATE(950)] = 38982, - [SMALL_STATE(951)] = 39043, - [SMALL_STATE(952)] = 39104, - [SMALL_STATE(953)] = 39165, - [SMALL_STATE(954)] = 39226, - [SMALL_STATE(955)] = 39287, - [SMALL_STATE(956)] = 39348, - [SMALL_STATE(957)] = 39409, - [SMALL_STATE(958)] = 39470, - [SMALL_STATE(959)] = 39531, - [SMALL_STATE(960)] = 39592, - [SMALL_STATE(961)] = 39653, - [SMALL_STATE(962)] = 39714, - [SMALL_STATE(963)] = 39775, - [SMALL_STATE(964)] = 39836, - [SMALL_STATE(965)] = 39897, - [SMALL_STATE(966)] = 39958, - [SMALL_STATE(967)] = 40019, - [SMALL_STATE(968)] = 40080, - [SMALL_STATE(969)] = 40141, - [SMALL_STATE(970)] = 40202, - [SMALL_STATE(971)] = 40263, - [SMALL_STATE(972)] = 40324, - [SMALL_STATE(973)] = 40385, - [SMALL_STATE(974)] = 40446, - [SMALL_STATE(975)] = 40507, - [SMALL_STATE(976)] = 40568, - [SMALL_STATE(977)] = 40629, - [SMALL_STATE(978)] = 40690, - [SMALL_STATE(979)] = 40751, - [SMALL_STATE(980)] = 40812, - [SMALL_STATE(981)] = 40873, - [SMALL_STATE(982)] = 40934, - [SMALL_STATE(983)] = 40995, - [SMALL_STATE(984)] = 41056, - [SMALL_STATE(985)] = 41117, - [SMALL_STATE(986)] = 41178, - [SMALL_STATE(987)] = 41239, - [SMALL_STATE(988)] = 41300, - [SMALL_STATE(989)] = 41361, - [SMALL_STATE(990)] = 41422, - [SMALL_STATE(991)] = 41483, - [SMALL_STATE(992)] = 41544, - [SMALL_STATE(993)] = 41605, - [SMALL_STATE(994)] = 41668, - [SMALL_STATE(995)] = 41731, - [SMALL_STATE(996)] = 41792, - [SMALL_STATE(997)] = 41855, - [SMALL_STATE(998)] = 41916, - [SMALL_STATE(999)] = 41977, - [SMALL_STATE(1000)] = 42038, - [SMALL_STATE(1001)] = 42099, - [SMALL_STATE(1002)] = 42160, - [SMALL_STATE(1003)] = 42223, - [SMALL_STATE(1004)] = 42284, - [SMALL_STATE(1005)] = 42345, - [SMALL_STATE(1006)] = 42406, - [SMALL_STATE(1007)] = 42467, - [SMALL_STATE(1008)] = 42528, - [SMALL_STATE(1009)] = 42589, - [SMALL_STATE(1010)] = 42650, - [SMALL_STATE(1011)] = 42711, - [SMALL_STATE(1012)] = 42772, - [SMALL_STATE(1013)] = 42833, - [SMALL_STATE(1014)] = 42894, - [SMALL_STATE(1015)] = 42957, - [SMALL_STATE(1016)] = 43018, - [SMALL_STATE(1017)] = 43081, - [SMALL_STATE(1018)] = 43142, - [SMALL_STATE(1019)] = 43205, - [SMALL_STATE(1020)] = 43268, - [SMALL_STATE(1021)] = 43329, - [SMALL_STATE(1022)] = 43390, - [SMALL_STATE(1023)] = 43451, - [SMALL_STATE(1024)] = 43514, - [SMALL_STATE(1025)] = 43575, - [SMALL_STATE(1026)] = 43636, - [SMALL_STATE(1027)] = 43697, - [SMALL_STATE(1028)] = 43758, - [SMALL_STATE(1029)] = 43819, - [SMALL_STATE(1030)] = 43880, - [SMALL_STATE(1031)] = 43941, - [SMALL_STATE(1032)] = 44002, - [SMALL_STATE(1033)] = 44063, - [SMALL_STATE(1034)] = 44124, - [SMALL_STATE(1035)] = 44185, - [SMALL_STATE(1036)] = 44246, - [SMALL_STATE(1037)] = 44307, - [SMALL_STATE(1038)] = 44368, - [SMALL_STATE(1039)] = 44429, - [SMALL_STATE(1040)] = 44490, - [SMALL_STATE(1041)] = 44551, - [SMALL_STATE(1042)] = 44612, - [SMALL_STATE(1043)] = 44673, - [SMALL_STATE(1044)] = 44734, - [SMALL_STATE(1045)] = 44795, - [SMALL_STATE(1046)] = 44856, - [SMALL_STATE(1047)] = 44917, - [SMALL_STATE(1048)] = 44978, - [SMALL_STATE(1049)] = 45039, - [SMALL_STATE(1050)] = 45100, - [SMALL_STATE(1051)] = 45161, - [SMALL_STATE(1052)] = 45222, - [SMALL_STATE(1053)] = 45283, - [SMALL_STATE(1054)] = 45344, - [SMALL_STATE(1055)] = 45405, - [SMALL_STATE(1056)] = 45466, - [SMALL_STATE(1057)] = 45527, - [SMALL_STATE(1058)] = 45588, - [SMALL_STATE(1059)] = 45649, - [SMALL_STATE(1060)] = 45710, - [SMALL_STATE(1061)] = 45771, - [SMALL_STATE(1062)] = 45832, - [SMALL_STATE(1063)] = 45893, - [SMALL_STATE(1064)] = 45954, - [SMALL_STATE(1065)] = 46015, - [SMALL_STATE(1066)] = 46076, - [SMALL_STATE(1067)] = 46137, - [SMALL_STATE(1068)] = 46198, - [SMALL_STATE(1069)] = 46259, - [SMALL_STATE(1070)] = 46320, - [SMALL_STATE(1071)] = 46381, - [SMALL_STATE(1072)] = 46442, - [SMALL_STATE(1073)] = 46503, - [SMALL_STATE(1074)] = 46564, - [SMALL_STATE(1075)] = 46625, - [SMALL_STATE(1076)] = 46686, - [SMALL_STATE(1077)] = 46747, - [SMALL_STATE(1078)] = 46808, - [SMALL_STATE(1079)] = 46869, - [SMALL_STATE(1080)] = 46930, - [SMALL_STATE(1081)] = 46991, - [SMALL_STATE(1082)] = 47052, - [SMALL_STATE(1083)] = 47113, - [SMALL_STATE(1084)] = 47174, - [SMALL_STATE(1085)] = 47235, - [SMALL_STATE(1086)] = 47296, - [SMALL_STATE(1087)] = 47357, - [SMALL_STATE(1088)] = 47418, - [SMALL_STATE(1089)] = 47479, - [SMALL_STATE(1090)] = 47540, - [SMALL_STATE(1091)] = 47601, - [SMALL_STATE(1092)] = 47662, - [SMALL_STATE(1093)] = 47723, - [SMALL_STATE(1094)] = 47784, - [SMALL_STATE(1095)] = 47845, - [SMALL_STATE(1096)] = 47906, - [SMALL_STATE(1097)] = 47969, - [SMALL_STATE(1098)] = 48030, - [SMALL_STATE(1099)] = 48091, - [SMALL_STATE(1100)] = 48152, - [SMALL_STATE(1101)] = 48215, - [SMALL_STATE(1102)] = 48278, - [SMALL_STATE(1103)] = 48339, - [SMALL_STATE(1104)] = 48400, - [SMALL_STATE(1105)] = 48461, - [SMALL_STATE(1106)] = 48522, - [SMALL_STATE(1107)] = 48583, - [SMALL_STATE(1108)] = 48644, - [SMALL_STATE(1109)] = 48705, - [SMALL_STATE(1110)] = 48766, - [SMALL_STATE(1111)] = 48827, - [SMALL_STATE(1112)] = 48888, - [SMALL_STATE(1113)] = 48949, - [SMALL_STATE(1114)] = 49010, - [SMALL_STATE(1115)] = 49071, - [SMALL_STATE(1116)] = 49132, - [SMALL_STATE(1117)] = 49193, - [SMALL_STATE(1118)] = 49254, - [SMALL_STATE(1119)] = 49315, - [SMALL_STATE(1120)] = 49376, - [SMALL_STATE(1121)] = 49437, - [SMALL_STATE(1122)] = 49498, - [SMALL_STATE(1123)] = 49559, - [SMALL_STATE(1124)] = 49620, - [SMALL_STATE(1125)] = 49681, - [SMALL_STATE(1126)] = 49742, - [SMALL_STATE(1127)] = 49803, - [SMALL_STATE(1128)] = 49864, - [SMALL_STATE(1129)] = 49925, - [SMALL_STATE(1130)] = 49986, - [SMALL_STATE(1131)] = 50047, - [SMALL_STATE(1132)] = 50108, - [SMALL_STATE(1133)] = 50169, - [SMALL_STATE(1134)] = 50230, - [SMALL_STATE(1135)] = 50291, - [SMALL_STATE(1136)] = 50352, - [SMALL_STATE(1137)] = 50413, - [SMALL_STATE(1138)] = 50474, - [SMALL_STATE(1139)] = 50537, - [SMALL_STATE(1140)] = 50598, - [SMALL_STATE(1141)] = 50659, - [SMALL_STATE(1142)] = 50720, - [SMALL_STATE(1143)] = 50781, - [SMALL_STATE(1144)] = 50842, - [SMALL_STATE(1145)] = 50903, - [SMALL_STATE(1146)] = 50964, - [SMALL_STATE(1147)] = 51025, - [SMALL_STATE(1148)] = 51086, - [SMALL_STATE(1149)] = 51147, - [SMALL_STATE(1150)] = 51208, - [SMALL_STATE(1151)] = 51269, - [SMALL_STATE(1152)] = 51330, - [SMALL_STATE(1153)] = 51391, - [SMALL_STATE(1154)] = 51452, - [SMALL_STATE(1155)] = 51513, - [SMALL_STATE(1156)] = 51574, - [SMALL_STATE(1157)] = 51635, - [SMALL_STATE(1158)] = 51698, - [SMALL_STATE(1159)] = 51759, - [SMALL_STATE(1160)] = 51820, - [SMALL_STATE(1161)] = 51881, - [SMALL_STATE(1162)] = 51942, - [SMALL_STATE(1163)] = 52003, - [SMALL_STATE(1164)] = 52064, - [SMALL_STATE(1165)] = 52125, - [SMALL_STATE(1166)] = 52186, - [SMALL_STATE(1167)] = 52247, - [SMALL_STATE(1168)] = 52308, - [SMALL_STATE(1169)] = 52369, - [SMALL_STATE(1170)] = 52430, - [SMALL_STATE(1171)] = 52491, - [SMALL_STATE(1172)] = 52552, - [SMALL_STATE(1173)] = 52613, - [SMALL_STATE(1174)] = 52674, - [SMALL_STATE(1175)] = 52735, - [SMALL_STATE(1176)] = 52796, - [SMALL_STATE(1177)] = 52857, - [SMALL_STATE(1178)] = 52918, - [SMALL_STATE(1179)] = 52976, - [SMALL_STATE(1180)] = 53034, - [SMALL_STATE(1181)] = 53092, - [SMALL_STATE(1182)] = 53150, - [SMALL_STATE(1183)] = 53208, - [SMALL_STATE(1184)] = 53266, - [SMALL_STATE(1185)] = 53324, - [SMALL_STATE(1186)] = 53382, - [SMALL_STATE(1187)] = 53440, - [SMALL_STATE(1188)] = 53498, - [SMALL_STATE(1189)] = 53556, - [SMALL_STATE(1190)] = 53614, - [SMALL_STATE(1191)] = 53672, - [SMALL_STATE(1192)] = 53730, - [SMALL_STATE(1193)] = 53788, - [SMALL_STATE(1194)] = 53846, - [SMALL_STATE(1195)] = 53904, - [SMALL_STATE(1196)] = 53962, - [SMALL_STATE(1197)] = 54022, - [SMALL_STATE(1198)] = 54080, - [SMALL_STATE(1199)] = 54138, - [SMALL_STATE(1200)] = 54196, - [SMALL_STATE(1201)] = 54254, - [SMALL_STATE(1202)] = 54312, - [SMALL_STATE(1203)] = 54370, - [SMALL_STATE(1204)] = 54428, - [SMALL_STATE(1205)] = 54486, - [SMALL_STATE(1206)] = 54544, - [SMALL_STATE(1207)] = 54602, - [SMALL_STATE(1208)] = 54660, - [SMALL_STATE(1209)] = 54718, - [SMALL_STATE(1210)] = 54776, - [SMALL_STATE(1211)] = 54834, - [SMALL_STATE(1212)] = 54892, - [SMALL_STATE(1213)] = 54950, - [SMALL_STATE(1214)] = 55008, - [SMALL_STATE(1215)] = 55066, - [SMALL_STATE(1216)] = 55124, - [SMALL_STATE(1217)] = 55182, - [SMALL_STATE(1218)] = 55240, - [SMALL_STATE(1219)] = 55298, - [SMALL_STATE(1220)] = 55358, - [SMALL_STATE(1221)] = 55416, - [SMALL_STATE(1222)] = 55476, - [SMALL_STATE(1223)] = 55534, - [SMALL_STATE(1224)] = 55592, - [SMALL_STATE(1225)] = 55650, - [SMALL_STATE(1226)] = 55708, - [SMALL_STATE(1227)] = 55766, - [SMALL_STATE(1228)] = 55824, - [SMALL_STATE(1229)] = 55882, - [SMALL_STATE(1230)] = 55940, - [SMALL_STATE(1231)] = 55998, - [SMALL_STATE(1232)] = 56056, - [SMALL_STATE(1233)] = 56114, - [SMALL_STATE(1234)] = 56172, - [SMALL_STATE(1235)] = 56230, - [SMALL_STATE(1236)] = 56288, - [SMALL_STATE(1237)] = 56346, - [SMALL_STATE(1238)] = 56404, - [SMALL_STATE(1239)] = 56462, - [SMALL_STATE(1240)] = 56520, - [SMALL_STATE(1241)] = 56578, - [SMALL_STATE(1242)] = 56636, - [SMALL_STATE(1243)] = 56694, - [SMALL_STATE(1244)] = 56752, - [SMALL_STATE(1245)] = 56810, - [SMALL_STATE(1246)] = 56868, - [SMALL_STATE(1247)] = 56926, - [SMALL_STATE(1248)] = 56984, - [SMALL_STATE(1249)] = 57042, - [SMALL_STATE(1250)] = 57100, - [SMALL_STATE(1251)] = 57158, - [SMALL_STATE(1252)] = 57216, - [SMALL_STATE(1253)] = 57274, - [SMALL_STATE(1254)] = 57332, - [SMALL_STATE(1255)] = 57390, - [SMALL_STATE(1256)] = 57448, - [SMALL_STATE(1257)] = 57506, - [SMALL_STATE(1258)] = 57564, - [SMALL_STATE(1259)] = 57622, - [SMALL_STATE(1260)] = 57680, - [SMALL_STATE(1261)] = 57738, - [SMALL_STATE(1262)] = 57796, - [SMALL_STATE(1263)] = 57854, - [SMALL_STATE(1264)] = 57912, - [SMALL_STATE(1265)] = 57970, - [SMALL_STATE(1266)] = 58028, - [SMALL_STATE(1267)] = 58086, - [SMALL_STATE(1268)] = 58144, - [SMALL_STATE(1269)] = 58202, - [SMALL_STATE(1270)] = 58260, - [SMALL_STATE(1271)] = 58318, - [SMALL_STATE(1272)] = 58376, - [SMALL_STATE(1273)] = 58434, - [SMALL_STATE(1274)] = 58492, - [SMALL_STATE(1275)] = 58550, - [SMALL_STATE(1276)] = 58608, - [SMALL_STATE(1277)] = 58666, - [SMALL_STATE(1278)] = 58724, - [SMALL_STATE(1279)] = 58782, - [SMALL_STATE(1280)] = 58840, - [SMALL_STATE(1281)] = 58898, - [SMALL_STATE(1282)] = 58956, - [SMALL_STATE(1283)] = 59014, - [SMALL_STATE(1284)] = 59072, - [SMALL_STATE(1285)] = 59130, - [SMALL_STATE(1286)] = 59188, - [SMALL_STATE(1287)] = 59246, - [SMALL_STATE(1288)] = 59304, - [SMALL_STATE(1289)] = 59362, - [SMALL_STATE(1290)] = 59420, - [SMALL_STATE(1291)] = 59478, - [SMALL_STATE(1292)] = 59536, - [SMALL_STATE(1293)] = 59594, - [SMALL_STATE(1294)] = 59652, - [SMALL_STATE(1295)] = 59710, - [SMALL_STATE(1296)] = 59768, - [SMALL_STATE(1297)] = 59826, - [SMALL_STATE(1298)] = 59884, - [SMALL_STATE(1299)] = 59942, - [SMALL_STATE(1300)] = 60000, - [SMALL_STATE(1301)] = 60058, - [SMALL_STATE(1302)] = 60116, - [SMALL_STATE(1303)] = 60174, - [SMALL_STATE(1304)] = 60232, - [SMALL_STATE(1305)] = 60290, - [SMALL_STATE(1306)] = 60348, - [SMALL_STATE(1307)] = 60406, - [SMALL_STATE(1308)] = 60464, - [SMALL_STATE(1309)] = 60522, - [SMALL_STATE(1310)] = 60580, - [SMALL_STATE(1311)] = 60638, - [SMALL_STATE(1312)] = 60696, - [SMALL_STATE(1313)] = 60754, - [SMALL_STATE(1314)] = 60812, - [SMALL_STATE(1315)] = 60870, - [SMALL_STATE(1316)] = 60928, - [SMALL_STATE(1317)] = 60986, - [SMALL_STATE(1318)] = 61044, - [SMALL_STATE(1319)] = 61102, - [SMALL_STATE(1320)] = 61160, - [SMALL_STATE(1321)] = 61218, - [SMALL_STATE(1322)] = 61276, - [SMALL_STATE(1323)] = 61334, - [SMALL_STATE(1324)] = 61392, - [SMALL_STATE(1325)] = 61450, - [SMALL_STATE(1326)] = 61508, - [SMALL_STATE(1327)] = 61566, - [SMALL_STATE(1328)] = 61624, - [SMALL_STATE(1329)] = 61682, - [SMALL_STATE(1330)] = 61740, - [SMALL_STATE(1331)] = 61798, - [SMALL_STATE(1332)] = 61856, - [SMALL_STATE(1333)] = 61914, - [SMALL_STATE(1334)] = 61972, - [SMALL_STATE(1335)] = 62030, - [SMALL_STATE(1336)] = 62088, - [SMALL_STATE(1337)] = 62146, - [SMALL_STATE(1338)] = 62204, - [SMALL_STATE(1339)] = 62262, - [SMALL_STATE(1340)] = 62320, - [SMALL_STATE(1341)] = 62378, - [SMALL_STATE(1342)] = 62436, - [SMALL_STATE(1343)] = 62494, - [SMALL_STATE(1344)] = 62552, - [SMALL_STATE(1345)] = 62610, - [SMALL_STATE(1346)] = 62668, - [SMALL_STATE(1347)] = 62726, - [SMALL_STATE(1348)] = 62784, - [SMALL_STATE(1349)] = 62842, - [SMALL_STATE(1350)] = 62902, - [SMALL_STATE(1351)] = 62960, - [SMALL_STATE(1352)] = 63018, - [SMALL_STATE(1353)] = 63076, - [SMALL_STATE(1354)] = 63134, - [SMALL_STATE(1355)] = 63192, - [SMALL_STATE(1356)] = 63250, - [SMALL_STATE(1357)] = 63308, - [SMALL_STATE(1358)] = 63366, - [SMALL_STATE(1359)] = 63424, - [SMALL_STATE(1360)] = 63482, - [SMALL_STATE(1361)] = 63540, - [SMALL_STATE(1362)] = 63598, - [SMALL_STATE(1363)] = 63656, - [SMALL_STATE(1364)] = 63714, - [SMALL_STATE(1365)] = 63772, - [SMALL_STATE(1366)] = 63830, - [SMALL_STATE(1367)] = 63888, - [SMALL_STATE(1368)] = 63946, - [SMALL_STATE(1369)] = 64004, - [SMALL_STATE(1370)] = 64062, - [SMALL_STATE(1371)] = 64120, - [SMALL_STATE(1372)] = 64178, - [SMALL_STATE(1373)] = 64236, - [SMALL_STATE(1374)] = 64294, - [SMALL_STATE(1375)] = 64352, - [SMALL_STATE(1376)] = 64410, - [SMALL_STATE(1377)] = 64468, - [SMALL_STATE(1378)] = 64526, - [SMALL_STATE(1379)] = 64584, - [SMALL_STATE(1380)] = 64642, - [SMALL_STATE(1381)] = 64700, - [SMALL_STATE(1382)] = 64760, - [SMALL_STATE(1383)] = 64818, - [SMALL_STATE(1384)] = 64878, - [SMALL_STATE(1385)] = 64938, - [SMALL_STATE(1386)] = 64996, - [SMALL_STATE(1387)] = 65054, - [SMALL_STATE(1388)] = 65112, - [SMALL_STATE(1389)] = 65170, - [SMALL_STATE(1390)] = 65228, - [SMALL_STATE(1391)] = 65288, - [SMALL_STATE(1392)] = 65348, - [SMALL_STATE(1393)] = 65406, - [SMALL_STATE(1394)] = 65464, - [SMALL_STATE(1395)] = 65522, - [SMALL_STATE(1396)] = 65580, - [SMALL_STATE(1397)] = 65638, - [SMALL_STATE(1398)] = 65696, - [SMALL_STATE(1399)] = 65754, - [SMALL_STATE(1400)] = 65812, - [SMALL_STATE(1401)] = 65870, - [SMALL_STATE(1402)] = 65928, - [SMALL_STATE(1403)] = 65986, - [SMALL_STATE(1404)] = 66044, - [SMALL_STATE(1405)] = 66102, - [SMALL_STATE(1406)] = 66160, - [SMALL_STATE(1407)] = 66220, - [SMALL_STATE(1408)] = 66278, - [SMALL_STATE(1409)] = 66336, - [SMALL_STATE(1410)] = 66394, - [SMALL_STATE(1411)] = 66452, - [SMALL_STATE(1412)] = 66512, - [SMALL_STATE(1413)] = 66570, - [SMALL_STATE(1414)] = 66628, - [SMALL_STATE(1415)] = 66686, - [SMALL_STATE(1416)] = 66744, - [SMALL_STATE(1417)] = 66802, - [SMALL_STATE(1418)] = 66862, - [SMALL_STATE(1419)] = 66920, - [SMALL_STATE(1420)] = 66978, - [SMALL_STATE(1421)] = 67036, - [SMALL_STATE(1422)] = 67094, - [SMALL_STATE(1423)] = 67152, - [SMALL_STATE(1424)] = 67212, - [SMALL_STATE(1425)] = 67270, - [SMALL_STATE(1426)] = 67328, - [SMALL_STATE(1427)] = 67386, - [SMALL_STATE(1428)] = 67444, - [SMALL_STATE(1429)] = 67502, - [SMALL_STATE(1430)] = 67560, - [SMALL_STATE(1431)] = 67618, - [SMALL_STATE(1432)] = 67676, - [SMALL_STATE(1433)] = 67734, - [SMALL_STATE(1434)] = 67792, - [SMALL_STATE(1435)] = 67850, - [SMALL_STATE(1436)] = 67908, - [SMALL_STATE(1437)] = 67966, - [SMALL_STATE(1438)] = 68024, - [SMALL_STATE(1439)] = 68082, - [SMALL_STATE(1440)] = 68140, - [SMALL_STATE(1441)] = 68198, - [SMALL_STATE(1442)] = 68256, - [SMALL_STATE(1443)] = 68314, - [SMALL_STATE(1444)] = 68372, - [SMALL_STATE(1445)] = 68430, - [SMALL_STATE(1446)] = 68488, - [SMALL_STATE(1447)] = 68546, - [SMALL_STATE(1448)] = 68604, - [SMALL_STATE(1449)] = 68662, - [SMALL_STATE(1450)] = 68720, - [SMALL_STATE(1451)] = 68778, - [SMALL_STATE(1452)] = 68836, - [SMALL_STATE(1453)] = 68894, - [SMALL_STATE(1454)] = 68954, - [SMALL_STATE(1455)] = 69012, - [SMALL_STATE(1456)] = 69070, - [SMALL_STATE(1457)] = 69128, - [SMALL_STATE(1458)] = 69186, - [SMALL_STATE(1459)] = 69244, - [SMALL_STATE(1460)] = 69302, - [SMALL_STATE(1461)] = 69362, - [SMALL_STATE(1462)] = 69420, - [SMALL_STATE(1463)] = 69478, - [SMALL_STATE(1464)] = 69536, - [SMALL_STATE(1465)] = 69594, - [SMALL_STATE(1466)] = 69652, - [SMALL_STATE(1467)] = 69712, - [SMALL_STATE(1468)] = 69770, - [SMALL_STATE(1469)] = 69828, - [SMALL_STATE(1470)] = 69886, - [SMALL_STATE(1471)] = 69944, - [SMALL_STATE(1472)] = 70002, - [SMALL_STATE(1473)] = 70060, - [SMALL_STATE(1474)] = 70118, - [SMALL_STATE(1475)] = 70176, - [SMALL_STATE(1476)] = 70234, - [SMALL_STATE(1477)] = 70292, - [SMALL_STATE(1478)] = 70350, - [SMALL_STATE(1479)] = 70408, - [SMALL_STATE(1480)] = 70466, - [SMALL_STATE(1481)] = 70524, - [SMALL_STATE(1482)] = 70582, - [SMALL_STATE(1483)] = 70640, - [SMALL_STATE(1484)] = 70698, - [SMALL_STATE(1485)] = 70756, - [SMALL_STATE(1486)] = 70814, - [SMALL_STATE(1487)] = 70872, - [SMALL_STATE(1488)] = 70930, - [SMALL_STATE(1489)] = 70988, - [SMALL_STATE(1490)] = 71046, - [SMALL_STATE(1491)] = 71104, - [SMALL_STATE(1492)] = 71162, - [SMALL_STATE(1493)] = 71220, - [SMALL_STATE(1494)] = 71278, - [SMALL_STATE(1495)] = 71336, - [SMALL_STATE(1496)] = 71394, - [SMALL_STATE(1497)] = 71452, - [SMALL_STATE(1498)] = 71510, - [SMALL_STATE(1499)] = 71568, - [SMALL_STATE(1500)] = 71626, - [SMALL_STATE(1501)] = 71684, - [SMALL_STATE(1502)] = 71742, - [SMALL_STATE(1503)] = 71800, - [SMALL_STATE(1504)] = 71858, - [SMALL_STATE(1505)] = 71916, - [SMALL_STATE(1506)] = 71974, - [SMALL_STATE(1507)] = 72032, - [SMALL_STATE(1508)] = 72090, - [SMALL_STATE(1509)] = 72148, - [SMALL_STATE(1510)] = 72206, - [SMALL_STATE(1511)] = 72264, - [SMALL_STATE(1512)] = 72322, - [SMALL_STATE(1513)] = 72380, - [SMALL_STATE(1514)] = 72438, - [SMALL_STATE(1515)] = 72496, - [SMALL_STATE(1516)] = 72554, - [SMALL_STATE(1517)] = 72612, - [SMALL_STATE(1518)] = 72670, - [SMALL_STATE(1519)] = 72728, - [SMALL_STATE(1520)] = 72786, - [SMALL_STATE(1521)] = 72844, - [SMALL_STATE(1522)] = 72902, - [SMALL_STATE(1523)] = 72960, - [SMALL_STATE(1524)] = 73018, - [SMALL_STATE(1525)] = 73078, - [SMALL_STATE(1526)] = 73136, - [SMALL_STATE(1527)] = 73194, - [SMALL_STATE(1528)] = 73252, - [SMALL_STATE(1529)] = 73312, - [SMALL_STATE(1530)] = 73370, - [SMALL_STATE(1531)] = 73428, - [SMALL_STATE(1532)] = 73488, - [SMALL_STATE(1533)] = 73546, - [SMALL_STATE(1534)] = 73604, - [SMALL_STATE(1535)] = 73664, - [SMALL_STATE(1536)] = 73724, - [SMALL_STATE(1537)] = 73782, - [SMALL_STATE(1538)] = 73840, - [SMALL_STATE(1539)] = 73898, - [SMALL_STATE(1540)] = 73956, - [SMALL_STATE(1541)] = 74014, - [SMALL_STATE(1542)] = 74072, - [SMALL_STATE(1543)] = 74130, - [SMALL_STATE(1544)] = 74188, - [SMALL_STATE(1545)] = 74246, - [SMALL_STATE(1546)] = 74304, - [SMALL_STATE(1547)] = 74362, - [SMALL_STATE(1548)] = 74420, - [SMALL_STATE(1549)] = 74478, - [SMALL_STATE(1550)] = 74536, - [SMALL_STATE(1551)] = 74594, - [SMALL_STATE(1552)] = 74652, - [SMALL_STATE(1553)] = 74710, - [SMALL_STATE(1554)] = 74770, - [SMALL_STATE(1555)] = 74828, - [SMALL_STATE(1556)] = 74886, - [SMALL_STATE(1557)] = 74944, - [SMALL_STATE(1558)] = 75002, - [SMALL_STATE(1559)] = 75060, - [SMALL_STATE(1560)] = 75118, - [SMALL_STATE(1561)] = 75176, - [SMALL_STATE(1562)] = 75234, - [SMALL_STATE(1563)] = 75292, - [SMALL_STATE(1564)] = 75352, - [SMALL_STATE(1565)] = 75410, - [SMALL_STATE(1566)] = 75468, - [SMALL_STATE(1567)] = 75526, - [SMALL_STATE(1568)] = 75584, - [SMALL_STATE(1569)] = 75642, - [SMALL_STATE(1570)] = 75700, - [SMALL_STATE(1571)] = 75758, - [SMALL_STATE(1572)] = 75816, - [SMALL_STATE(1573)] = 75874, - [SMALL_STATE(1574)] = 75932, - [SMALL_STATE(1575)] = 75990, - [SMALL_STATE(1576)] = 76048, - [SMALL_STATE(1577)] = 76106, - [SMALL_STATE(1578)] = 76164, - [SMALL_STATE(1579)] = 76222, - [SMALL_STATE(1580)] = 76280, - [SMALL_STATE(1581)] = 76338, - [SMALL_STATE(1582)] = 76398, - [SMALL_STATE(1583)] = 76456, - [SMALL_STATE(1584)] = 76516, - [SMALL_STATE(1585)] = 76574, - [SMALL_STATE(1586)] = 76632, - [SMALL_STATE(1587)] = 76690, - [SMALL_STATE(1588)] = 76748, - [SMALL_STATE(1589)] = 76806, - [SMALL_STATE(1590)] = 76864, - [SMALL_STATE(1591)] = 76924, - [SMALL_STATE(1592)] = 76982, - [SMALL_STATE(1593)] = 77040, - [SMALL_STATE(1594)] = 77098, - [SMALL_STATE(1595)] = 77156, - [SMALL_STATE(1596)] = 77214, - [SMALL_STATE(1597)] = 77272, - [SMALL_STATE(1598)] = 77330, - [SMALL_STATE(1599)] = 77388, - [SMALL_STATE(1600)] = 77446, - [SMALL_STATE(1601)] = 77504, - [SMALL_STATE(1602)] = 77562, - [SMALL_STATE(1603)] = 77620, - [SMALL_STATE(1604)] = 77678, - [SMALL_STATE(1605)] = 77736, - [SMALL_STATE(1606)] = 77794, - [SMALL_STATE(1607)] = 77854, - [SMALL_STATE(1608)] = 77912, - [SMALL_STATE(1609)] = 77970, - [SMALL_STATE(1610)] = 78028, - [SMALL_STATE(1611)] = 78086, - [SMALL_STATE(1612)] = 78144, - [SMALL_STATE(1613)] = 78204, - [SMALL_STATE(1614)] = 78262, - [SMALL_STATE(1615)] = 78322, - [SMALL_STATE(1616)] = 78380, - [SMALL_STATE(1617)] = 78440, - [SMALL_STATE(1618)] = 78498, - [SMALL_STATE(1619)] = 78556, - [SMALL_STATE(1620)] = 78614, - [SMALL_STATE(1621)] = 78672, - [SMALL_STATE(1622)] = 78730, - [SMALL_STATE(1623)] = 78788, - [SMALL_STATE(1624)] = 78846, - [SMALL_STATE(1625)] = 78904, - [SMALL_STATE(1626)] = 78962, - [SMALL_STATE(1627)] = 79020, - [SMALL_STATE(1628)] = 79078, - [SMALL_STATE(1629)] = 79136, - [SMALL_STATE(1630)] = 79196, - [SMALL_STATE(1631)] = 79254, - [SMALL_STATE(1632)] = 79312, - [SMALL_STATE(1633)] = 79370, - [SMALL_STATE(1634)] = 79428, - [SMALL_STATE(1635)] = 79486, - [SMALL_STATE(1636)] = 79544, - [SMALL_STATE(1637)] = 79604, - [SMALL_STATE(1638)] = 79662, - [SMALL_STATE(1639)] = 79722, - [SMALL_STATE(1640)] = 79780, - [SMALL_STATE(1641)] = 79838, - [SMALL_STATE(1642)] = 79896, - [SMALL_STATE(1643)] = 79954, - [SMALL_STATE(1644)] = 80012, - [SMALL_STATE(1645)] = 80070, - [SMALL_STATE(1646)] = 80128, - [SMALL_STATE(1647)] = 80171, - [SMALL_STATE(1648)] = 80210, - [SMALL_STATE(1649)] = 80247, - [SMALL_STATE(1650)] = 80298, - [SMALL_STATE(1651)] = 80343, - [SMALL_STATE(1652)] = 80394, - [SMALL_STATE(1653)] = 80439, - [SMALL_STATE(1654)] = 80475, - [SMALL_STATE(1655)] = 80519, - [SMALL_STATE(1656)] = 80555, - [SMALL_STATE(1657)] = 80605, - [SMALL_STATE(1658)] = 80643, - [SMALL_STATE(1659)] = 80693, - [SMALL_STATE(1660)] = 80737, - [SMALL_STATE(1661)] = 80781, - [SMALL_STATE(1662)] = 80819, - [SMALL_STATE(1663)] = 80863, - [SMALL_STATE(1664)] = 80900, - [SMALL_STATE(1665)] = 80937, - [SMALL_STATE(1666)] = 80986, - [SMALL_STATE(1667)] = 81023, - [SMALL_STATE(1668)] = 81058, - [SMALL_STATE(1669)] = 81095, - [SMALL_STATE(1670)] = 81144, - [SMALL_STATE(1671)] = 81181, - [SMALL_STATE(1672)] = 81224, - [SMALL_STATE(1673)] = 81267, - [SMALL_STATE(1674)] = 81304, - [SMALL_STATE(1675)] = 81341, - [SMALL_STATE(1676)] = 81378, - [SMALL_STATE(1677)] = 81427, - [SMALL_STATE(1678)] = 81476, - [SMALL_STATE(1679)] = 81513, - [SMALL_STATE(1680)] = 81556, - [SMALL_STATE(1681)] = 81593, - [SMALL_STATE(1682)] = 81642, - [SMALL_STATE(1683)] = 81683, - [SMALL_STATE(1684)] = 81720, - [SMALL_STATE(1685)] = 81757, - [SMALL_STATE(1686)] = 81794, - [SMALL_STATE(1687)] = 81843, - [SMALL_STATE(1688)] = 81880, - [SMALL_STATE(1689)] = 81915, - [SMALL_STATE(1690)] = 81951, - [SMALL_STATE(1691)] = 81983, - [SMALL_STATE(1692)] = 82015, - [SMALL_STATE(1693)] = 82047, - [SMALL_STATE(1694)] = 82079, - [SMALL_STATE(1695)] = 82113, - [SMALL_STATE(1696)] = 82145, - [SMALL_STATE(1697)] = 82177, - [SMALL_STATE(1698)] = 82209, - [SMALL_STATE(1699)] = 82261, - [SMALL_STATE(1700)] = 82295, - [SMALL_STATE(1701)] = 82347, - [SMALL_STATE(1702)] = 82379, - [SMALL_STATE(1703)] = 82425, - [SMALL_STATE(1704)] = 82461, - [SMALL_STATE(1705)] = 82493, - [SMALL_STATE(1706)] = 82529, - [SMALL_STATE(1707)] = 82561, - [SMALL_STATE(1708)] = 82593, - [SMALL_STATE(1709)] = 82645, - [SMALL_STATE(1710)] = 82677, - [SMALL_STATE(1711)] = 82713, - [SMALL_STATE(1712)] = 82749, - [SMALL_STATE(1713)] = 82783, - [SMALL_STATE(1714)] = 82815, - [SMALL_STATE(1715)] = 82851, - [SMALL_STATE(1716)] = 82883, - [SMALL_STATE(1717)] = 82917, - [SMALL_STATE(1718)] = 82953, - [SMALL_STATE(1719)] = 82985, - [SMALL_STATE(1720)] = 83031, - [SMALL_STATE(1721)] = 83063, - [SMALL_STATE(1722)] = 83109, - [SMALL_STATE(1723)] = 83145, - [SMALL_STATE(1724)] = 83177, - [SMALL_STATE(1725)] = 83213, - [SMALL_STATE(1726)] = 83249, - [SMALL_STATE(1727)] = 83281, - [SMALL_STATE(1728)] = 83317, - [SMALL_STATE(1729)] = 83349, - [SMALL_STATE(1730)] = 83381, - [SMALL_STATE(1731)] = 83427, - [SMALL_STATE(1732)] = 83473, - [SMALL_STATE(1733)] = 83505, - [SMALL_STATE(1734)] = 83541, - [SMALL_STATE(1735)] = 83573, - [SMALL_STATE(1736)] = 83605, - [SMALL_STATE(1737)] = 83641, - [SMALL_STATE(1738)] = 83693, - [SMALL_STATE(1739)] = 83729, - [SMALL_STATE(1740)] = 83765, - [SMALL_STATE(1741)] = 83801, - [SMALL_STATE(1742)] = 83837, - [SMALL_STATE(1743)] = 83873, - [SMALL_STATE(1744)] = 83909, - [SMALL_STATE(1745)] = 83941, - [SMALL_STATE(1746)] = 83975, - [SMALL_STATE(1747)] = 84007, - [SMALL_STATE(1748)] = 84039, - [SMALL_STATE(1749)] = 84085, - [SMALL_STATE(1750)] = 84117, - [SMALL_STATE(1751)] = 84148, - [SMALL_STATE(1752)] = 84179, - [SMALL_STATE(1753)] = 84210, - [SMALL_STATE(1754)] = 84241, - [SMALL_STATE(1755)] = 84276, - [SMALL_STATE(1756)] = 84307, - [SMALL_STATE(1757)] = 84338, - [SMALL_STATE(1758)] = 84369, - [SMALL_STATE(1759)] = 84400, - [SMALL_STATE(1760)] = 84431, - [SMALL_STATE(1761)] = 84462, - [SMALL_STATE(1762)] = 84493, - [SMALL_STATE(1763)] = 84524, - [SMALL_STATE(1764)] = 84555, - [SMALL_STATE(1765)] = 84586, - [SMALL_STATE(1766)] = 84617, - [SMALL_STATE(1767)] = 84648, - [SMALL_STATE(1768)] = 84679, - [SMALL_STATE(1769)] = 84710, - [SMALL_STATE(1770)] = 84741, - [SMALL_STATE(1771)] = 84772, - [SMALL_STATE(1772)] = 84803, - [SMALL_STATE(1773)] = 84834, - [SMALL_STATE(1774)] = 84865, - [SMALL_STATE(1775)] = 84896, - [SMALL_STATE(1776)] = 84927, - [SMALL_STATE(1777)] = 84958, - [SMALL_STATE(1778)] = 84989, - [SMALL_STATE(1779)] = 85020, - [SMALL_STATE(1780)] = 85051, - [SMALL_STATE(1781)] = 85082, - [SMALL_STATE(1782)] = 85117, - [SMALL_STATE(1783)] = 85148, - [SMALL_STATE(1784)] = 85179, - [SMALL_STATE(1785)] = 85210, - [SMALL_STATE(1786)] = 85241, - [SMALL_STATE(1787)] = 85272, - [SMALL_STATE(1788)] = 85303, - [SMALL_STATE(1789)] = 85334, - [SMALL_STATE(1790)] = 85365, - [SMALL_STATE(1791)] = 85396, - [SMALL_STATE(1792)] = 85427, - [SMALL_STATE(1793)] = 85458, - [SMALL_STATE(1794)] = 85489, - [SMALL_STATE(1795)] = 85520, - [SMALL_STATE(1796)] = 85551, - [SMALL_STATE(1797)] = 85582, - [SMALL_STATE(1798)] = 85613, - [SMALL_STATE(1799)] = 85644, - [SMALL_STATE(1800)] = 85675, - [SMALL_STATE(1801)] = 85706, - [SMALL_STATE(1802)] = 85737, - [SMALL_STATE(1803)] = 85768, - [SMALL_STATE(1804)] = 85803, - [SMALL_STATE(1805)] = 85834, - [SMALL_STATE(1806)] = 85865, - [SMALL_STATE(1807)] = 85896, - [SMALL_STATE(1808)] = 85927, - [SMALL_STATE(1809)] = 85958, - [SMALL_STATE(1810)] = 85989, - [SMALL_STATE(1811)] = 86020, - [SMALL_STATE(1812)] = 86051, - [SMALL_STATE(1813)] = 86086, - [SMALL_STATE(1814)] = 86117, - [SMALL_STATE(1815)] = 86148, - [SMALL_STATE(1816)] = 86203, - [SMALL_STATE(1817)] = 86234, - [SMALL_STATE(1818)] = 86265, - [SMALL_STATE(1819)] = 86296, - [SMALL_STATE(1820)] = 86327, - [SMALL_STATE(1821)] = 86358, - [SMALL_STATE(1822)] = 86389, - [SMALL_STATE(1823)] = 86420, - [SMALL_STATE(1824)] = 86451, - [SMALL_STATE(1825)] = 86482, - [SMALL_STATE(1826)] = 86513, - [SMALL_STATE(1827)] = 86544, - [SMALL_STATE(1828)] = 86575, - [SMALL_STATE(1829)] = 86606, - [SMALL_STATE(1830)] = 86637, - [SMALL_STATE(1831)] = 86668, - [SMALL_STATE(1832)] = 86699, - [SMALL_STATE(1833)] = 86734, - [SMALL_STATE(1834)] = 86765, - [SMALL_STATE(1835)] = 86820, - [SMALL_STATE(1836)] = 86851, - [SMALL_STATE(1837)] = 86906, - [SMALL_STATE(1838)] = 86961, - [SMALL_STATE(1839)] = 86996, - [SMALL_STATE(1840)] = 87031, - [SMALL_STATE(1841)] = 87062, - [SMALL_STATE(1842)] = 87093, - [SMALL_STATE(1843)] = 87124, - [SMALL_STATE(1844)] = 87155, - [SMALL_STATE(1845)] = 87186, - [SMALL_STATE(1846)] = 87221, - [SMALL_STATE(1847)] = 87252, - [SMALL_STATE(1848)] = 87283, - [SMALL_STATE(1849)] = 87314, - [SMALL_STATE(1850)] = 87345, - [SMALL_STATE(1851)] = 87376, - [SMALL_STATE(1852)] = 87411, - [SMALL_STATE(1853)] = 87446, - [SMALL_STATE(1854)] = 87481, - [SMALL_STATE(1855)] = 87516, - [SMALL_STATE(1856)] = 87547, - [SMALL_STATE(1857)] = 87602, - [SMALL_STATE(1858)] = 87633, - [SMALL_STATE(1859)] = 87688, - [SMALL_STATE(1860)] = 87719, - [SMALL_STATE(1861)] = 87750, - [SMALL_STATE(1862)] = 87781, - [SMALL_STATE(1863)] = 87812, - [SMALL_STATE(1864)] = 87843, - [SMALL_STATE(1865)] = 87874, - [SMALL_STATE(1866)] = 87905, - [SMALL_STATE(1867)] = 87936, - [SMALL_STATE(1868)] = 87971, - [SMALL_STATE(1869)] = 88026, - [SMALL_STATE(1870)] = 88057, - [SMALL_STATE(1871)] = 88088, - [SMALL_STATE(1872)] = 88123, - [SMALL_STATE(1873)] = 88154, - [SMALL_STATE(1874)] = 88189, - [SMALL_STATE(1875)] = 88220, - [SMALL_STATE(1876)] = 88251, - [SMALL_STATE(1877)] = 88282, - [SMALL_STATE(1878)] = 88313, - [SMALL_STATE(1879)] = 88344, - [SMALL_STATE(1880)] = 88375, - [SMALL_STATE(1881)] = 88406, - [SMALL_STATE(1882)] = 88437, - [SMALL_STATE(1883)] = 88468, - [SMALL_STATE(1884)] = 88523, - [SMALL_STATE(1885)] = 88554, - [SMALL_STATE(1886)] = 88585, - [SMALL_STATE(1887)] = 88616, - [SMALL_STATE(1888)] = 88647, - [SMALL_STATE(1889)] = 88678, - [SMALL_STATE(1890)] = 88709, - [SMALL_STATE(1891)] = 88740, - [SMALL_STATE(1892)] = 88775, - [SMALL_STATE(1893)] = 88806, - [SMALL_STATE(1894)] = 88837, - [SMALL_STATE(1895)] = 88868, - [SMALL_STATE(1896)] = 88899, - [SMALL_STATE(1897)] = 88930, - [SMALL_STATE(1898)] = 88961, - [SMALL_STATE(1899)] = 89016, - [SMALL_STATE(1900)] = 89045, - [SMALL_STATE(1901)] = 89100, - [SMALL_STATE(1902)] = 89135, - [SMALL_STATE(1903)] = 89190, - [SMALL_STATE(1904)] = 89245, - [SMALL_STATE(1905)] = 89275, - [SMALL_STATE(1906)] = 89329, - [SMALL_STATE(1907)] = 89363, - [SMALL_STATE(1908)] = 89397, - [SMALL_STATE(1909)] = 89433, - [SMALL_STATE(1910)] = 89467, - [SMALL_STATE(1911)] = 89499, - [SMALL_STATE(1912)] = 89529, - [SMALL_STATE(1913)] = 89583, - [SMALL_STATE(1914)] = 89637, - [SMALL_STATE(1915)] = 89667, - [SMALL_STATE(1916)] = 89697, - [SMALL_STATE(1917)] = 89729, - [SMALL_STATE(1918)] = 89759, - [SMALL_STATE(1919)] = 89789, - [SMALL_STATE(1920)] = 89825, - [SMALL_STATE(1921)] = 89857, - [SMALL_STATE(1922)] = 89887, - [SMALL_STATE(1923)] = 89919, - [SMALL_STATE(1924)] = 89949, - [SMALL_STATE(1925)] = 89977, - [SMALL_STATE(1926)] = 90007, - [SMALL_STATE(1927)] = 90037, - [SMALL_STATE(1928)] = 90073, - [SMALL_STATE(1929)] = 90127, - [SMALL_STATE(1930)] = 90157, - [SMALL_STATE(1931)] = 90193, - [SMALL_STATE(1932)] = 90225, - [SMALL_STATE(1933)] = 90253, - [SMALL_STATE(1934)] = 90283, - [SMALL_STATE(1935)] = 90315, - [SMALL_STATE(1936)] = 90345, - [SMALL_STATE(1937)] = 90375, - [SMALL_STATE(1938)] = 90403, - [SMALL_STATE(1939)] = 90431, - [SMALL_STATE(1940)] = 90463, - [SMALL_STATE(1941)] = 90493, - [SMALL_STATE(1942)] = 90523, - [SMALL_STATE(1943)] = 90555, - [SMALL_STATE(1944)] = 90585, - [SMALL_STATE(1945)] = 90621, - [SMALL_STATE(1946)] = 90651, - [SMALL_STATE(1947)] = 90687, - [SMALL_STATE(1948)] = 90717, - [SMALL_STATE(1949)] = 90745, - [SMALL_STATE(1950)] = 90779, - [SMALL_STATE(1951)] = 90809, - [SMALL_STATE(1952)] = 90841, - [SMALL_STATE(1953)] = 90871, - [SMALL_STATE(1954)] = 90901, - [SMALL_STATE(1955)] = 90955, - [SMALL_STATE(1956)] = 90985, - [SMALL_STATE(1957)] = 91015, - [SMALL_STATE(1958)] = 91047, - [SMALL_STATE(1959)] = 91077, - [SMALL_STATE(1960)] = 91107, - [SMALL_STATE(1961)] = 91137, - [SMALL_STATE(1962)] = 91171, - [SMALL_STATE(1963)] = 91201, - [SMALL_STATE(1964)] = 91255, - [SMALL_STATE(1965)] = 91289, - [SMALL_STATE(1966)] = 91319, - [SMALL_STATE(1967)] = 91349, - [SMALL_STATE(1968)] = 91381, - [SMALL_STATE(1969)] = 91411, - [SMALL_STATE(1970)] = 91441, - [SMALL_STATE(1971)] = 91471, - [SMALL_STATE(1972)] = 91501, - [SMALL_STATE(1973)] = 91531, - [SMALL_STATE(1974)] = 91561, - [SMALL_STATE(1975)] = 91591, - [SMALL_STATE(1976)] = 91621, - [SMALL_STATE(1977)] = 91675, - [SMALL_STATE(1978)] = 91705, - [SMALL_STATE(1979)] = 91735, - [SMALL_STATE(1980)] = 91765, - [SMALL_STATE(1981)] = 91801, - [SMALL_STATE(1982)] = 91831, - [SMALL_STATE(1983)] = 91863, - [SMALL_STATE(1984)] = 91893, - [SMALL_STATE(1985)] = 91925, - [SMALL_STATE(1986)] = 91955, - [SMALL_STATE(1987)] = 91985, - [SMALL_STATE(1988)] = 92017, - [SMALL_STATE(1989)] = 92047, - [SMALL_STATE(1990)] = 92077, - [SMALL_STATE(1991)] = 92107, - [SMALL_STATE(1992)] = 92137, - [SMALL_STATE(1993)] = 92169, - [SMALL_STATE(1994)] = 92199, - [SMALL_STATE(1995)] = 92253, - [SMALL_STATE(1996)] = 92307, - [SMALL_STATE(1997)] = 92361, - [SMALL_STATE(1998)] = 92395, - [SMALL_STATE(1999)] = 92431, - [SMALL_STATE(2000)] = 92467, - [SMALL_STATE(2001)] = 92497, - [SMALL_STATE(2002)] = 92527, - [SMALL_STATE(2003)] = 92557, - [SMALL_STATE(2004)] = 92611, - [SMALL_STATE(2005)] = 92665, - [SMALL_STATE(2006)] = 92719, - [SMALL_STATE(2007)] = 92749, - [SMALL_STATE(2008)] = 92785, - [SMALL_STATE(2009)] = 92815, - [SMALL_STATE(2010)] = 92847, - [SMALL_STATE(2011)] = 92879, - [SMALL_STATE(2012)] = 92907, - [SMALL_STATE(2013)] = 92937, - [SMALL_STATE(2014)] = 92969, - [SMALL_STATE(2015)] = 93023, - [SMALL_STATE(2016)] = 93077, - [SMALL_STATE(2017)] = 93109, - [SMALL_STATE(2018)] = 93139, - [SMALL_STATE(2019)] = 93169, - [SMALL_STATE(2020)] = 93223, - [SMALL_STATE(2021)] = 93253, - [SMALL_STATE(2022)] = 93307, - [SMALL_STATE(2023)] = 93337, - [SMALL_STATE(2024)] = 93367, - [SMALL_STATE(2025)] = 93421, - [SMALL_STATE(2026)] = 93451, - [SMALL_STATE(2027)] = 93481, - [SMALL_STATE(2028)] = 93511, - [SMALL_STATE(2029)] = 93565, - [SMALL_STATE(2030)] = 93595, - [SMALL_STATE(2031)] = 93627, - [SMALL_STATE(2032)] = 93657, - [SMALL_STATE(2033)] = 93687, - [SMALL_STATE(2034)] = 93717, - [SMALL_STATE(2035)] = 93771, - [SMALL_STATE(2036)] = 93801, - [SMALL_STATE(2037)] = 93831, - [SMALL_STATE(2038)] = 93861, - [SMALL_STATE(2039)] = 93891, - [SMALL_STATE(2040)] = 93921, - [SMALL_STATE(2041)] = 93951, - [SMALL_STATE(2042)] = 93981, - [SMALL_STATE(2043)] = 94011, - [SMALL_STATE(2044)] = 94041, - [SMALL_STATE(2045)] = 94071, - [SMALL_STATE(2046)] = 94101, - [SMALL_STATE(2047)] = 94133, - [SMALL_STATE(2048)] = 94163, - [SMALL_STATE(2049)] = 94193, - [SMALL_STATE(2050)] = 94223, - [SMALL_STATE(2051)] = 94253, - [SMALL_STATE(2052)] = 94283, - [SMALL_STATE(2053)] = 94313, - [SMALL_STATE(2054)] = 94343, - [SMALL_STATE(2055)] = 94373, - [SMALL_STATE(2056)] = 94405, - [SMALL_STATE(2057)] = 94435, - [SMALL_STATE(2058)] = 94465, - [SMALL_STATE(2059)] = 94495, - [SMALL_STATE(2060)] = 94525, - [SMALL_STATE(2061)] = 94557, - [SMALL_STATE(2062)] = 94595, - [SMALL_STATE(2063)] = 94627, - [SMALL_STATE(2064)] = 94659, - [SMALL_STATE(2065)] = 94691, - [SMALL_STATE(2066)] = 94725, - [SMALL_STATE(2067)] = 94755, - [SMALL_STATE(2068)] = 94787, - [SMALL_STATE(2069)] = 94817, - [SMALL_STATE(2070)] = 94849, - [SMALL_STATE(2071)] = 94879, - [SMALL_STATE(2072)] = 94933, - [SMALL_STATE(2073)] = 94963, - [SMALL_STATE(2074)] = 94993, - [SMALL_STATE(2075)] = 95023, - [SMALL_STATE(2076)] = 95055, - [SMALL_STATE(2077)] = 95087, - [SMALL_STATE(2078)] = 95117, - [SMALL_STATE(2079)] = 95149, - [SMALL_STATE(2080)] = 95179, - [SMALL_STATE(2081)] = 95209, - [SMALL_STATE(2082)] = 95239, - [SMALL_STATE(2083)] = 95268, - [SMALL_STATE(2084)] = 95319, - [SMALL_STATE(2085)] = 95348, - [SMALL_STATE(2086)] = 95377, - [SMALL_STATE(2087)] = 95406, - [SMALL_STATE(2088)] = 95435, - [SMALL_STATE(2089)] = 95464, - [SMALL_STATE(2090)] = 95497, - [SMALL_STATE(2091)] = 95526, - [SMALL_STATE(2092)] = 95559, - [SMALL_STATE(2093)] = 95610, - [SMALL_STATE(2094)] = 95639, - [SMALL_STATE(2095)] = 95668, - [SMALL_STATE(2096)] = 95697, - [SMALL_STATE(2097)] = 95726, - [SMALL_STATE(2098)] = 95755, - [SMALL_STATE(2099)] = 95784, - [SMALL_STATE(2100)] = 95813, - [SMALL_STATE(2101)] = 95842, - [SMALL_STATE(2102)] = 95871, - [SMALL_STATE(2103)] = 95900, - [SMALL_STATE(2104)] = 95929, - [SMALL_STATE(2105)] = 95980, - [SMALL_STATE(2106)] = 96009, - [SMALL_STATE(2107)] = 96060, - [SMALL_STATE(2108)] = 96089, - [SMALL_STATE(2109)] = 96122, - [SMALL_STATE(2110)] = 96151, - [SMALL_STATE(2111)] = 96180, - [SMALL_STATE(2112)] = 96231, - [SMALL_STATE(2113)] = 96260, - [SMALL_STATE(2114)] = 96311, - [SMALL_STATE(2115)] = 96362, - [SMALL_STATE(2116)] = 96391, - [SMALL_STATE(2117)] = 96420, - [SMALL_STATE(2118)] = 96449, - [SMALL_STATE(2119)] = 96478, - [SMALL_STATE(2120)] = 96507, - [SMALL_STATE(2121)] = 96536, - [SMALL_STATE(2122)] = 96587, - [SMALL_STATE(2123)] = 96616, - [SMALL_STATE(2124)] = 96645, - [SMALL_STATE(2125)] = 96678, - [SMALL_STATE(2126)] = 96707, - [SMALL_STATE(2127)] = 96740, - [SMALL_STATE(2128)] = 96773, - [SMALL_STATE(2129)] = 96824, - [SMALL_STATE(2130)] = 96853, - [SMALL_STATE(2131)] = 96882, - [SMALL_STATE(2132)] = 96911, - [SMALL_STATE(2133)] = 96940, - [SMALL_STATE(2134)] = 96969, - [SMALL_STATE(2135)] = 96998, - [SMALL_STATE(2136)] = 97027, - [SMALL_STATE(2137)] = 97078, - [SMALL_STATE(2138)] = 97129, - [SMALL_STATE(2139)] = 97158, - [SMALL_STATE(2140)] = 97189, - [SMALL_STATE(2141)] = 97218, - [SMALL_STATE(2142)] = 97247, - [SMALL_STATE(2143)] = 97276, - [SMALL_STATE(2144)] = 97305, - [SMALL_STATE(2145)] = 97334, - [SMALL_STATE(2146)] = 97367, - [SMALL_STATE(2147)] = 97400, - [SMALL_STATE(2148)] = 97451, - [SMALL_STATE(2149)] = 97480, - [SMALL_STATE(2150)] = 97509, - [SMALL_STATE(2151)] = 97538, - [SMALL_STATE(2152)] = 97571, - [SMALL_STATE(2153)] = 97600, - [SMALL_STATE(2154)] = 97629, - [SMALL_STATE(2155)] = 97658, - [SMALL_STATE(2156)] = 97687, - [SMALL_STATE(2157)] = 97716, - [SMALL_STATE(2158)] = 97747, - [SMALL_STATE(2159)] = 97778, - [SMALL_STATE(2160)] = 97807, - [SMALL_STATE(2161)] = 97836, - [SMALL_STATE(2162)] = 97865, - [SMALL_STATE(2163)] = 97894, - [SMALL_STATE(2164)] = 97923, - [SMALL_STATE(2165)] = 97952, - [SMALL_STATE(2166)] = 97983, - [SMALL_STATE(2167)] = 98034, - [SMALL_STATE(2168)] = 98063, - [SMALL_STATE(2169)] = 98096, - [SMALL_STATE(2170)] = 98125, - [SMALL_STATE(2171)] = 98176, - [SMALL_STATE(2172)] = 98205, - [SMALL_STATE(2173)] = 98234, - [SMALL_STATE(2174)] = 98285, - [SMALL_STATE(2175)] = 98314, - [SMALL_STATE(2176)] = 98343, - [SMALL_STATE(2177)] = 98372, - [SMALL_STATE(2178)] = 98401, - [SMALL_STATE(2179)] = 98430, - [SMALL_STATE(2180)] = 98459, - [SMALL_STATE(2181)] = 98488, - [SMALL_STATE(2182)] = 98517, - [SMALL_STATE(2183)] = 98568, - [SMALL_STATE(2184)] = 98619, - [SMALL_STATE(2185)] = 98670, - [SMALL_STATE(2186)] = 98721, - [SMALL_STATE(2187)] = 98750, - [SMALL_STATE(2188)] = 98779, - [SMALL_STATE(2189)] = 98808, - [SMALL_STATE(2190)] = 98859, - [SMALL_STATE(2191)] = 98888, - [SMALL_STATE(2192)] = 98917, - [SMALL_STATE(2193)] = 98946, - [SMALL_STATE(2194)] = 98975, - [SMALL_STATE(2195)] = 99004, - [SMALL_STATE(2196)] = 99033, - [SMALL_STATE(2197)] = 99062, - [SMALL_STATE(2198)] = 99091, - [SMALL_STATE(2199)] = 99120, - [SMALL_STATE(2200)] = 99149, - [SMALL_STATE(2201)] = 99178, - [SMALL_STATE(2202)] = 99207, - [SMALL_STATE(2203)] = 99257, - [SMALL_STATE(2204)] = 99307, - [SMALL_STATE(2205)] = 99335, - [SMALL_STATE(2206)] = 99363, - [SMALL_STATE(2207)] = 99391, - [SMALL_STATE(2208)] = 99417, - [SMALL_STATE(2209)] = 99445, - [SMALL_STATE(2210)] = 99495, - [SMALL_STATE(2211)] = 99523, - [SMALL_STATE(2212)] = 99551, - [SMALL_STATE(2213)] = 99601, - [SMALL_STATE(2214)] = 99627, - [SMALL_STATE(2215)] = 99655, - [SMALL_STATE(2216)] = 99705, - [SMALL_STATE(2217)] = 99755, - [SMALL_STATE(2218)] = 99781, - [SMALL_STATE(2219)] = 99807, - [SMALL_STATE(2220)] = 99857, - [SMALL_STATE(2221)] = 99907, - [SMALL_STATE(2222)] = 99957, - [SMALL_STATE(2223)] = 100005, - [SMALL_STATE(2224)] = 100055, - [SMALL_STATE(2225)] = 100083, - [SMALL_STATE(2226)] = 100111, - [SMALL_STATE(2227)] = 100139, - [SMALL_STATE(2228)] = 100189, - [SMALL_STATE(2229)] = 100239, - [SMALL_STATE(2230)] = 100269, - [SMALL_STATE(2231)] = 100319, - [SMALL_STATE(2232)] = 100369, - [SMALL_STATE(2233)] = 100397, - [SMALL_STATE(2234)] = 100425, - [SMALL_STATE(2235)] = 100475, - [SMALL_STATE(2236)] = 100503, - [SMALL_STATE(2237)] = 100531, - [SMALL_STATE(2238)] = 100559, - [SMALL_STATE(2239)] = 100587, - [SMALL_STATE(2240)] = 100615, - [SMALL_STATE(2241)] = 100643, - [SMALL_STATE(2242)] = 100693, - [SMALL_STATE(2243)] = 100721, - [SMALL_STATE(2244)] = 100757, - [SMALL_STATE(2245)] = 100785, - [SMALL_STATE(2246)] = 100835, - [SMALL_STATE(2247)] = 100883, - [SMALL_STATE(2248)] = 100911, - [SMALL_STATE(2249)] = 100939, - [SMALL_STATE(2250)] = 100989, - [SMALL_STATE(2251)] = 101039, - [SMALL_STATE(2252)] = 101087, - [SMALL_STATE(2253)] = 101137, - [SMALL_STATE(2254)] = 101187, - [SMALL_STATE(2255)] = 101215, - [SMALL_STATE(2256)] = 101243, - [SMALL_STATE(2257)] = 101293, - [SMALL_STATE(2258)] = 101343, - [SMALL_STATE(2259)] = 101393, - [SMALL_STATE(2260)] = 101421, - [SMALL_STATE(2261)] = 101449, - [SMALL_STATE(2262)] = 101499, - [SMALL_STATE(2263)] = 101527, - [SMALL_STATE(2264)] = 101555, - [SMALL_STATE(2265)] = 101605, - [SMALL_STATE(2266)] = 101655, - [SMALL_STATE(2267)] = 101705, - [SMALL_STATE(2268)] = 101733, - [SMALL_STATE(2269)] = 101761, - [SMALL_STATE(2270)] = 101811, - [SMALL_STATE(2271)] = 101861, - [SMALL_STATE(2272)] = 101911, - [SMALL_STATE(2273)] = 101939, - [SMALL_STATE(2274)] = 101989, - [SMALL_STATE(2275)] = 102039, - [SMALL_STATE(2276)] = 102067, - [SMALL_STATE(2277)] = 102117, - [SMALL_STATE(2278)] = 102145, - [SMALL_STATE(2279)] = 102195, - [SMALL_STATE(2280)] = 102245, - [SMALL_STATE(2281)] = 102295, - [SMALL_STATE(2282)] = 102323, - [SMALL_STATE(2283)] = 102373, - [SMALL_STATE(2284)] = 102423, - [SMALL_STATE(2285)] = 102473, - [SMALL_STATE(2286)] = 102523, - [SMALL_STATE(2287)] = 102573, - [SMALL_STATE(2288)] = 102623, - [SMALL_STATE(2289)] = 102651, - [SMALL_STATE(2290)] = 102701, - [SMALL_STATE(2291)] = 102751, - [SMALL_STATE(2292)] = 102801, - [SMALL_STATE(2293)] = 102829, - [SMALL_STATE(2294)] = 102857, - [SMALL_STATE(2295)] = 102907, - [SMALL_STATE(2296)] = 102957, - [SMALL_STATE(2297)] = 102985, - [SMALL_STATE(2298)] = 103013, - [SMALL_STATE(2299)] = 103041, - [SMALL_STATE(2300)] = 103091, - [SMALL_STATE(2301)] = 103119, - [SMALL_STATE(2302)] = 103169, - [SMALL_STATE(2303)] = 103219, - [SMALL_STATE(2304)] = 103247, - [SMALL_STATE(2305)] = 103275, - [SMALL_STATE(2306)] = 103303, - [SMALL_STATE(2307)] = 103353, - [SMALL_STATE(2308)] = 103403, - [SMALL_STATE(2309)] = 103453, - [SMALL_STATE(2310)] = 103481, - [SMALL_STATE(2311)] = 103531, - [SMALL_STATE(2312)] = 103581, - [SMALL_STATE(2313)] = 103631, - [SMALL_STATE(2314)] = 103681, - [SMALL_STATE(2315)] = 103731, - [SMALL_STATE(2316)] = 103759, - [SMALL_STATE(2317)] = 103809, - [SMALL_STATE(2318)] = 103837, - [SMALL_STATE(2319)] = 103887, - [SMALL_STATE(2320)] = 103937, - [SMALL_STATE(2321)] = 103987, - [SMALL_STATE(2322)] = 104015, - [SMALL_STATE(2323)] = 104043, - [SMALL_STATE(2324)] = 104071, - [SMALL_STATE(2325)] = 104121, - [SMALL_STATE(2326)] = 104151, - [SMALL_STATE(2327)] = 104179, - [SMALL_STATE(2328)] = 104207, - [SMALL_STATE(2329)] = 104257, - [SMALL_STATE(2330)] = 104307, - [SMALL_STATE(2331)] = 104335, - [SMALL_STATE(2332)] = 104363, - [SMALL_STATE(2333)] = 104390, - [SMALL_STATE(2334)] = 104425, - [SMALL_STATE(2335)] = 104460, - [SMALL_STATE(2336)] = 104495, - [SMALL_STATE(2337)] = 104530, - [SMALL_STATE(2338)] = 104555, - [SMALL_STATE(2339)] = 104590, - [SMALL_STATE(2340)] = 104625, - [SMALL_STATE(2341)] = 104672, - [SMALL_STATE(2342)] = 104699, - [SMALL_STATE(2343)] = 104734, - [SMALL_STATE(2344)] = 104769, - [SMALL_STATE(2345)] = 104816, - [SMALL_STATE(2346)] = 104851, - [SMALL_STATE(2347)] = 104886, - [SMALL_STATE(2348)] = 104933, - [SMALL_STATE(2349)] = 104968, - [SMALL_STATE(2350)] = 105003, - [SMALL_STATE(2351)] = 105050, - [SMALL_STATE(2352)] = 105097, - [SMALL_STATE(2353)] = 105144, - [SMALL_STATE(2354)] = 105191, - [SMALL_STATE(2355)] = 105226, - [SMALL_STATE(2356)] = 105261, - [SMALL_STATE(2357)] = 105296, - [SMALL_STATE(2358)] = 105343, - [SMALL_STATE(2359)] = 105378, - [SMALL_STATE(2360)] = 105413, - [SMALL_STATE(2361)] = 105448, - [SMALL_STATE(2362)] = 105483, - [SMALL_STATE(2363)] = 105518, - [SMALL_STATE(2364)] = 105565, - [SMALL_STATE(2365)] = 105612, - [SMALL_STATE(2366)] = 105659, - [SMALL_STATE(2367)] = 105686, - [SMALL_STATE(2368)] = 105721, - [SMALL_STATE(2369)] = 105748, - [SMALL_STATE(2370)] = 105775, - [SMALL_STATE(2371)] = 105802, - [SMALL_STATE(2372)] = 105837, - [SMALL_STATE(2373)] = 105872, - [SMALL_STATE(2374)] = 105907, - [SMALL_STATE(2375)] = 105942, - [SMALL_STATE(2376)] = 105989, - [SMALL_STATE(2377)] = 106036, - [SMALL_STATE(2378)] = 106083, - [SMALL_STATE(2379)] = 106118, - [SMALL_STATE(2380)] = 106153, - [SMALL_STATE(2381)] = 106200, - [SMALL_STATE(2382)] = 106247, - [SMALL_STATE(2383)] = 106274, - [SMALL_STATE(2384)] = 106309, - [SMALL_STATE(2385)] = 106344, - [SMALL_STATE(2386)] = 106371, - [SMALL_STATE(2387)] = 106418, - [SMALL_STATE(2388)] = 106445, - [SMALL_STATE(2389)] = 106480, - [SMALL_STATE(2390)] = 106515, - [SMALL_STATE(2391)] = 106542, - [SMALL_STATE(2392)] = 106569, - [SMALL_STATE(2393)] = 106616, - [SMALL_STATE(2394)] = 106651, - [SMALL_STATE(2395)] = 106698, - [SMALL_STATE(2396)] = 106733, - [SMALL_STATE(2397)] = 106760, - [SMALL_STATE(2398)] = 106807, - [SMALL_STATE(2399)] = 106849, - [SMALL_STATE(2400)] = 106885, - [SMALL_STATE(2401)] = 106927, - [SMALL_STATE(2402)] = 106966, - [SMALL_STATE(2403)] = 107005, - [SMALL_STATE(2404)] = 107044, - [SMALL_STATE(2405)] = 107083, - [SMALL_STATE(2406)] = 107122, - [SMALL_STATE(2407)] = 107161, - [SMALL_STATE(2408)] = 107200, - [SMALL_STATE(2409)] = 107239, - [SMALL_STATE(2410)] = 107278, - [SMALL_STATE(2411)] = 107317, - [SMALL_STATE(2412)] = 107356, - [SMALL_STATE(2413)] = 107395, - [SMALL_STATE(2414)] = 107434, - [SMALL_STATE(2415)] = 107473, - [SMALL_STATE(2416)] = 107512, - [SMALL_STATE(2417)] = 107551, - [SMALL_STATE(2418)] = 107590, - [SMALL_STATE(2419)] = 107629, - [SMALL_STATE(2420)] = 107668, - [SMALL_STATE(2421)] = 107707, - [SMALL_STATE(2422)] = 107746, - [SMALL_STATE(2423)] = 107785, - [SMALL_STATE(2424)] = 107824, - [SMALL_STATE(2425)] = 107863, - [SMALL_STATE(2426)] = 107902, - [SMALL_STATE(2427)] = 107929, - [SMALL_STATE(2428)] = 107968, - [SMALL_STATE(2429)] = 108007, - [SMALL_STATE(2430)] = 108046, - [SMALL_STATE(2431)] = 108085, - [SMALL_STATE(2432)] = 108124, - [SMALL_STATE(2433)] = 108163, - [SMALL_STATE(2434)] = 108202, - [SMALL_STATE(2435)] = 108229, - [SMALL_STATE(2436)] = 108268, - [SMALL_STATE(2437)] = 108307, - [SMALL_STATE(2438)] = 108346, - [SMALL_STATE(2439)] = 108385, - [SMALL_STATE(2440)] = 108424, - [SMALL_STATE(2441)] = 108463, - [SMALL_STATE(2442)] = 108490, - [SMALL_STATE(2443)] = 108529, - [SMALL_STATE(2444)] = 108568, - [SMALL_STATE(2445)] = 108607, - [SMALL_STATE(2446)] = 108646, - [SMALL_STATE(2447)] = 108685, - [SMALL_STATE(2448)] = 108724, - [SMALL_STATE(2449)] = 108751, - [SMALL_STATE(2450)] = 108790, - [SMALL_STATE(2451)] = 108829, - [SMALL_STATE(2452)] = 108868, - [SMALL_STATE(2453)] = 108907, - [SMALL_STATE(2454)] = 108946, - [SMALL_STATE(2455)] = 108985, - [SMALL_STATE(2456)] = 109024, - [SMALL_STATE(2457)] = 109063, - [SMALL_STATE(2458)] = 109102, - [SMALL_STATE(2459)] = 109141, - [SMALL_STATE(2460)] = 109180, - [SMALL_STATE(2461)] = 109219, - [SMALL_STATE(2462)] = 109258, - [SMALL_STATE(2463)] = 109297, - [SMALL_STATE(2464)] = 109336, - [SMALL_STATE(2465)] = 109375, - [SMALL_STATE(2466)] = 109414, - [SMALL_STATE(2467)] = 109438, - [SMALL_STATE(2468)] = 109462, - [SMALL_STATE(2469)] = 109486, - [SMALL_STATE(2470)] = 109510, - [SMALL_STATE(2471)] = 109534, - [SMALL_STATE(2472)] = 109558, - [SMALL_STATE(2473)] = 109582, - [SMALL_STATE(2474)] = 109606, - [SMALL_STATE(2475)] = 109630, - [SMALL_STATE(2476)] = 109656, - [SMALL_STATE(2477)] = 109680, - [SMALL_STATE(2478)] = 109704, - [SMALL_STATE(2479)] = 109728, - [SMALL_STATE(2480)] = 109752, - [SMALL_STATE(2481)] = 109776, - [SMALL_STATE(2482)] = 109800, - [SMALL_STATE(2483)] = 109824, - [SMALL_STATE(2484)] = 109848, - [SMALL_STATE(2485)] = 109872, - [SMALL_STATE(2486)] = 109896, - [SMALL_STATE(2487)] = 109920, - [SMALL_STATE(2488)] = 109944, - [SMALL_STATE(2489)] = 109968, - [SMALL_STATE(2490)] = 109992, - [SMALL_STATE(2491)] = 110018, - [SMALL_STATE(2492)] = 110042, - [SMALL_STATE(2493)] = 110066, - [SMALL_STATE(2494)] = 110090, - [SMALL_STATE(2495)] = 110123, - [SMALL_STATE(2496)] = 110144, - [SMALL_STATE(2497)] = 110177, - [SMALL_STATE(2498)] = 110203, - [SMALL_STATE(2499)] = 110229, - [SMALL_STATE(2500)] = 110255, - [SMALL_STATE(2501)] = 110287, - [SMALL_STATE(2502)] = 110313, - [SMALL_STATE(2503)] = 110344, - [SMALL_STATE(2504)] = 110365, - [SMALL_STATE(2505)] = 110396, - [SMALL_STATE(2506)] = 110425, - [SMALL_STATE(2507)] = 110456, - [SMALL_STATE(2508)] = 110487, - [SMALL_STATE(2509)] = 110516, - [SMALL_STATE(2510)] = 110547, - [SMALL_STATE(2511)] = 110578, - [SMALL_STATE(2512)] = 110607, - [SMALL_STATE(2513)] = 110638, - [SMALL_STATE(2514)] = 110667, - [SMALL_STATE(2515)] = 110698, - [SMALL_STATE(2516)] = 110727, - [SMALL_STATE(2517)] = 110758, - [SMALL_STATE(2518)] = 110783, - [SMALL_STATE(2519)] = 110812, - [SMALL_STATE(2520)] = 110843, - [SMALL_STATE(2521)] = 110874, - [SMALL_STATE(2522)] = 110895, - [SMALL_STATE(2523)] = 110926, - [SMALL_STATE(2524)] = 110955, - [SMALL_STATE(2525)] = 110986, - [SMALL_STATE(2526)] = 111015, - [SMALL_STATE(2527)] = 111044, - [SMALL_STATE(2528)] = 111065, - [SMALL_STATE(2529)] = 111096, - [SMALL_STATE(2530)] = 111125, - [SMALL_STATE(2531)] = 111156, - [SMALL_STATE(2532)] = 111185, - [SMALL_STATE(2533)] = 111214, - [SMALL_STATE(2534)] = 111235, - [SMALL_STATE(2535)] = 111266, - [SMALL_STATE(2536)] = 111295, - [SMALL_STATE(2537)] = 111326, - [SMALL_STATE(2538)] = 111355, - [SMALL_STATE(2539)] = 111384, - [SMALL_STATE(2540)] = 111405, - [SMALL_STATE(2541)] = 111436, - [SMALL_STATE(2542)] = 111467, - [SMALL_STATE(2543)] = 111496, - [SMALL_STATE(2544)] = 111517, - [SMALL_STATE(2545)] = 111548, - [SMALL_STATE(2546)] = 111569, - [SMALL_STATE(2547)] = 111598, - [SMALL_STATE(2548)] = 111623, - [SMALL_STATE(2549)] = 111654, - [SMALL_STATE(2550)] = 111675, - [SMALL_STATE(2551)] = 111696, - [SMALL_STATE(2552)] = 111725, - [SMALL_STATE(2553)] = 111754, - [SMALL_STATE(2554)] = 111785, - [SMALL_STATE(2555)] = 111806, - [SMALL_STATE(2556)] = 111835, - [SMALL_STATE(2557)] = 111864, - [SMALL_STATE(2558)] = 111895, - [SMALL_STATE(2559)] = 111924, - [SMALL_STATE(2560)] = 111945, - [SMALL_STATE(2561)] = 111976, - [SMALL_STATE(2562)] = 112007, - [SMALL_STATE(2563)] = 112038, - [SMALL_STATE(2564)] = 112067, - [SMALL_STATE(2565)] = 112098, - [SMALL_STATE(2566)] = 112129, - [SMALL_STATE(2567)] = 112158, - [SMALL_STATE(2568)] = 112179, - [SMALL_STATE(2569)] = 112200, - [SMALL_STATE(2570)] = 112221, - [SMALL_STATE(2571)] = 112252, - [SMALL_STATE(2572)] = 112273, - [SMALL_STATE(2573)] = 112294, - [SMALL_STATE(2574)] = 112315, - [SMALL_STATE(2575)] = 112336, - [SMALL_STATE(2576)] = 112357, - [SMALL_STATE(2577)] = 112378, - [SMALL_STATE(2578)] = 112399, - [SMALL_STATE(2579)] = 112420, - [SMALL_STATE(2580)] = 112441, - [SMALL_STATE(2581)] = 112462, - [SMALL_STATE(2582)] = 112491, - [SMALL_STATE(2583)] = 112512, - [SMALL_STATE(2584)] = 112541, - [SMALL_STATE(2585)] = 112572, - [SMALL_STATE(2586)] = 112603, - [SMALL_STATE(2587)] = 112624, - [SMALL_STATE(2588)] = 112653, - [SMALL_STATE(2589)] = 112682, - [SMALL_STATE(2590)] = 112711, - [SMALL_STATE(2591)] = 112735, - [SMALL_STATE(2592)] = 112759, - [SMALL_STATE(2593)] = 112783, - [SMALL_STATE(2594)] = 112807, - [SMALL_STATE(2595)] = 112831, - [SMALL_STATE(2596)] = 112851, - [SMALL_STATE(2597)] = 112875, - [SMALL_STATE(2598)] = 112895, - [SMALL_STATE(2599)] = 112915, - [SMALL_STATE(2600)] = 112939, - [SMALL_STATE(2601)] = 112963, - [SMALL_STATE(2602)] = 112987, - [SMALL_STATE(2603)] = 113011, - [SMALL_STATE(2604)] = 113031, - [SMALL_STATE(2605)] = 113055, - [SMALL_STATE(2606)] = 113079, - [SMALL_STATE(2607)] = 113103, - [SMALL_STATE(2608)] = 113127, - [SMALL_STATE(2609)] = 113151, - [SMALL_STATE(2610)] = 113171, - [SMALL_STATE(2611)] = 113195, - [SMALL_STATE(2612)] = 113219, - [SMALL_STATE(2613)] = 113243, - [SMALL_STATE(2614)] = 113267, - [SMALL_STATE(2615)] = 113291, - [SMALL_STATE(2616)] = 113315, - [SMALL_STATE(2617)] = 113339, - [SMALL_STATE(2618)] = 113363, - [SMALL_STATE(2619)] = 113383, - [SMALL_STATE(2620)] = 113407, - [SMALL_STATE(2621)] = 113431, - [SMALL_STATE(2622)] = 113455, - [SMALL_STATE(2623)] = 113479, - [SMALL_STATE(2624)] = 113503, - [SMALL_STATE(2625)] = 113527, - [SMALL_STATE(2626)] = 113551, - [SMALL_STATE(2627)] = 113575, - [SMALL_STATE(2628)] = 113599, - [SMALL_STATE(2629)] = 113623, - [SMALL_STATE(2630)] = 113647, - [SMALL_STATE(2631)] = 113671, - [SMALL_STATE(2632)] = 113691, - [SMALL_STATE(2633)] = 113711, - [SMALL_STATE(2634)] = 113731, - [SMALL_STATE(2635)] = 113755, - [SMALL_STATE(2636)] = 113775, - [SMALL_STATE(2637)] = 113799, - [SMALL_STATE(2638)] = 113823, - [SMALL_STATE(2639)] = 113847, - [SMALL_STATE(2640)] = 113871, - [SMALL_STATE(2641)] = 113891, - [SMALL_STATE(2642)] = 113915, - [SMALL_STATE(2643)] = 113939, - [SMALL_STATE(2644)] = 113963, - [SMALL_STATE(2645)] = 113987, - [SMALL_STATE(2646)] = 114011, - [SMALL_STATE(2647)] = 114035, - [SMALL_STATE(2648)] = 114059, - [SMALL_STATE(2649)] = 114083, - [SMALL_STATE(2650)] = 114107, - [SMALL_STATE(2651)] = 114131, - [SMALL_STATE(2652)] = 114155, - [SMALL_STATE(2653)] = 114179, - [SMALL_STATE(2654)] = 114203, - [SMALL_STATE(2655)] = 114227, - [SMALL_STATE(2656)] = 114251, - [SMALL_STATE(2657)] = 114275, - [SMALL_STATE(2658)] = 114299, - [SMALL_STATE(2659)] = 114323, - [SMALL_STATE(2660)] = 114342, - [SMALL_STATE(2661)] = 114361, - [SMALL_STATE(2662)] = 114380, - [SMALL_STATE(2663)] = 114407, - [SMALL_STATE(2664)] = 114426, - [SMALL_STATE(2665)] = 114445, - [SMALL_STATE(2666)] = 114464, - [SMALL_STATE(2667)] = 114483, - [SMALL_STATE(2668)] = 114510, - [SMALL_STATE(2669)] = 114537, - [SMALL_STATE(2670)] = 114558, - [SMALL_STATE(2671)] = 114577, - [SMALL_STATE(2672)] = 114596, - [SMALL_STATE(2673)] = 114623, - [SMALL_STATE(2674)] = 114642, - [SMALL_STATE(2675)] = 114669, - [SMALL_STATE(2676)] = 114688, - [SMALL_STATE(2677)] = 114715, - [SMALL_STATE(2678)] = 114742, - [SMALL_STATE(2679)] = 114769, - [SMALL_STATE(2680)] = 114796, - [SMALL_STATE(2681)] = 114815, - [SMALL_STATE(2682)] = 114842, - [SMALL_STATE(2683)] = 114869, - [SMALL_STATE(2684)] = 114888, - [SMALL_STATE(2685)] = 114915, - [SMALL_STATE(2686)] = 114942, - [SMALL_STATE(2687)] = 114961, - [SMALL_STATE(2688)] = 114988, - [SMALL_STATE(2689)] = 115015, - [SMALL_STATE(2690)] = 115034, - [SMALL_STATE(2691)] = 115061, - [SMALL_STATE(2692)] = 115088, - [SMALL_STATE(2693)] = 115107, - [SMALL_STATE(2694)] = 115126, - [SMALL_STATE(2695)] = 115153, - [SMALL_STATE(2696)] = 115172, - [SMALL_STATE(2697)] = 115191, - [SMALL_STATE(2698)] = 115218, - [SMALL_STATE(2699)] = 115245, - [SMALL_STATE(2700)] = 115264, - [SMALL_STATE(2701)] = 115291, - [SMALL_STATE(2702)] = 115318, - [SMALL_STATE(2703)] = 115337, - [SMALL_STATE(2704)] = 115356, - [SMALL_STATE(2705)] = 115383, - [SMALL_STATE(2706)] = 115410, - [SMALL_STATE(2707)] = 115437, - [SMALL_STATE(2708)] = 115464, - [SMALL_STATE(2709)] = 115491, - [SMALL_STATE(2710)] = 115518, - [SMALL_STATE(2711)] = 115545, - [SMALL_STATE(2712)] = 115564, - [SMALL_STATE(2713)] = 115583, - [SMALL_STATE(2714)] = 115602, - [SMALL_STATE(2715)] = 115621, - [SMALL_STATE(2716)] = 115648, - [SMALL_STATE(2717)] = 115675, - [SMALL_STATE(2718)] = 115705, - [SMALL_STATE(2719)] = 115735, - [SMALL_STATE(2720)] = 115765, - [SMALL_STATE(2721)] = 115795, - [SMALL_STATE(2722)] = 115825, - [SMALL_STATE(2723)] = 115855, - [SMALL_STATE(2724)] = 115885, - [SMALL_STATE(2725)] = 115915, - [SMALL_STATE(2726)] = 115945, - [SMALL_STATE(2727)] = 115975, - [SMALL_STATE(2728)] = 116005, - [SMALL_STATE(2729)] = 116035, - [SMALL_STATE(2730)] = 116065, - [SMALL_STATE(2731)] = 116095, - [SMALL_STATE(2732)] = 116125, - [SMALL_STATE(2733)] = 116155, - [SMALL_STATE(2734)] = 116183, - [SMALL_STATE(2735)] = 116213, - [SMALL_STATE(2736)] = 116243, - [SMALL_STATE(2737)] = 116273, - [SMALL_STATE(2738)] = 116303, - [SMALL_STATE(2739)] = 116333, - [SMALL_STATE(2740)] = 116363, - [SMALL_STATE(2741)] = 116393, - [SMALL_STATE(2742)] = 116423, - [SMALL_STATE(2743)] = 116453, - [SMALL_STATE(2744)] = 116481, - [SMALL_STATE(2745)] = 116511, - [SMALL_STATE(2746)] = 116541, - [SMALL_STATE(2747)] = 116571, - [SMALL_STATE(2748)] = 116601, - [SMALL_STATE(2749)] = 116629, - [SMALL_STATE(2750)] = 116659, - [SMALL_STATE(2751)] = 116689, - [SMALL_STATE(2752)] = 116719, - [SMALL_STATE(2753)] = 116749, - [SMALL_STATE(2754)] = 116779, - [SMALL_STATE(2755)] = 116809, - [SMALL_STATE(2756)] = 116837, - [SMALL_STATE(2757)] = 116867, - [SMALL_STATE(2758)] = 116897, - [SMALL_STATE(2759)] = 116927, - [SMALL_STATE(2760)] = 116957, - [SMALL_STATE(2761)] = 116987, - [SMALL_STATE(2762)] = 117017, - [SMALL_STATE(2763)] = 117047, - [SMALL_STATE(2764)] = 117077, - [SMALL_STATE(2765)] = 117107, - [SMALL_STATE(2766)] = 117135, - [SMALL_STATE(2767)] = 117155, - [SMALL_STATE(2768)] = 117185, - [SMALL_STATE(2769)] = 117215, - [SMALL_STATE(2770)] = 117245, - [SMALL_STATE(2771)] = 117275, - [SMALL_STATE(2772)] = 117305, - [SMALL_STATE(2773)] = 117335, - [SMALL_STATE(2774)] = 117365, - [SMALL_STATE(2775)] = 117395, - [SMALL_STATE(2776)] = 117425, - [SMALL_STATE(2777)] = 117453, - [SMALL_STATE(2778)] = 117483, - [SMALL_STATE(2779)] = 117513, - [SMALL_STATE(2780)] = 117543, - [SMALL_STATE(2781)] = 117573, - [SMALL_STATE(2782)] = 117603, - [SMALL_STATE(2783)] = 117633, - [SMALL_STATE(2784)] = 117661, - [SMALL_STATE(2785)] = 117677, - [SMALL_STATE(2786)] = 117701, - [SMALL_STATE(2787)] = 117717, - [SMALL_STATE(2788)] = 117741, - [SMALL_STATE(2789)] = 117765, - [SMALL_STATE(2790)] = 117781, - [SMALL_STATE(2791)] = 117797, - [SMALL_STATE(2792)] = 117821, - [SMALL_STATE(2793)] = 117845, - [SMALL_STATE(2794)] = 117865, - [SMALL_STATE(2795)] = 117889, - [SMALL_STATE(2796)] = 117905, - [SMALL_STATE(2797)] = 117929, - [SMALL_STATE(2798)] = 117953, - [SMALL_STATE(2799)] = 117977, - [SMALL_STATE(2800)] = 117992, - [SMALL_STATE(2801)] = 118007, - [SMALL_STATE(2802)] = 118022, - [SMALL_STATE(2803)] = 118037, - [SMALL_STATE(2804)] = 118052, - [SMALL_STATE(2805)] = 118067, - [SMALL_STATE(2806)] = 118088, - [SMALL_STATE(2807)] = 118109, - [SMALL_STATE(2808)] = 118124, - [SMALL_STATE(2809)] = 118143, - [SMALL_STATE(2810)] = 118160, - [SMALL_STATE(2811)] = 118175, - [SMALL_STATE(2812)] = 118190, - [SMALL_STATE(2813)] = 118205, - [SMALL_STATE(2814)] = 118226, - [SMALL_STATE(2815)] = 118241, - [SMALL_STATE(2816)] = 118260, - [SMALL_STATE(2817)] = 118275, - [SMALL_STATE(2818)] = 118290, - [SMALL_STATE(2819)] = 118305, - [SMALL_STATE(2820)] = 118320, - [SMALL_STATE(2821)] = 118341, - [SMALL_STATE(2822)] = 118362, - [SMALL_STATE(2823)] = 118377, - [SMALL_STATE(2824)] = 118392, - [SMALL_STATE(2825)] = 118413, - [SMALL_STATE(2826)] = 118428, - [SMALL_STATE(2827)] = 118443, - [SMALL_STATE(2828)] = 118458, - [SMALL_STATE(2829)] = 118473, - [SMALL_STATE(2830)] = 118488, - [SMALL_STATE(2831)] = 118503, - [SMALL_STATE(2832)] = 118520, - [SMALL_STATE(2833)] = 118539, - [SMALL_STATE(2834)] = 118554, - [SMALL_STATE(2835)] = 118569, - [SMALL_STATE(2836)] = 118583, - [SMALL_STATE(2837)] = 118597, - [SMALL_STATE(2838)] = 118611, - [SMALL_STATE(2839)] = 118625, - [SMALL_STATE(2840)] = 118639, - [SMALL_STATE(2841)] = 118653, - [SMALL_STATE(2842)] = 118667, - [SMALL_STATE(2843)] = 118681, - [SMALL_STATE(2844)] = 118695, - [SMALL_STATE(2845)] = 118709, - [SMALL_STATE(2846)] = 118723, - [SMALL_STATE(2847)] = 118737, - [SMALL_STATE(2848)] = 118751, - [SMALL_STATE(2849)] = 118765, - [SMALL_STATE(2850)] = 118779, - [SMALL_STATE(2851)] = 118793, - [SMALL_STATE(2852)] = 118807, - [SMALL_STATE(2853)] = 118821, - [SMALL_STATE(2854)] = 118835, - [SMALL_STATE(2855)] = 118847, - [SMALL_STATE(2856)] = 118859, - [SMALL_STATE(2857)] = 118873, - [SMALL_STATE(2858)] = 118887, - [SMALL_STATE(2859)] = 118901, - [SMALL_STATE(2860)] = 118915, - [SMALL_STATE(2861)] = 118929, - [SMALL_STATE(2862)] = 118949, - [SMALL_STATE(2863)] = 118963, - [SMALL_STATE(2864)] = 118977, - [SMALL_STATE(2865)] = 118991, - [SMALL_STATE(2866)] = 119005, - [SMALL_STATE(2867)] = 119019, - [SMALL_STATE(2868)] = 119039, - [SMALL_STATE(2869)] = 119053, - [SMALL_STATE(2870)] = 119067, - [SMALL_STATE(2871)] = 119081, - [SMALL_STATE(2872)] = 119095, - [SMALL_STATE(2873)] = 119109, - [SMALL_STATE(2874)] = 119129, - [SMALL_STATE(2875)] = 119143, - [SMALL_STATE(2876)] = 119163, - [SMALL_STATE(2877)] = 119183, - [SMALL_STATE(2878)] = 119197, - [SMALL_STATE(2879)] = 119211, - [SMALL_STATE(2880)] = 119225, - [SMALL_STATE(2881)] = 119245, - [SMALL_STATE(2882)] = 119259, - [SMALL_STATE(2883)] = 119273, - [SMALL_STATE(2884)] = 119287, - [SMALL_STATE(2885)] = 119301, - [SMALL_STATE(2886)] = 119315, - [SMALL_STATE(2887)] = 119329, - [SMALL_STATE(2888)] = 119343, - [SMALL_STATE(2889)] = 119359, - [SMALL_STATE(2890)] = 119373, - [SMALL_STATE(2891)] = 119387, - [SMALL_STATE(2892)] = 119401, - [SMALL_STATE(2893)] = 119415, - [SMALL_STATE(2894)] = 119429, - [SMALL_STATE(2895)] = 119445, - [SMALL_STATE(2896)] = 119462, - [SMALL_STATE(2897)] = 119477, - [SMALL_STATE(2898)] = 119492, - [SMALL_STATE(2899)] = 119507, - [SMALL_STATE(2900)] = 119522, - [SMALL_STATE(2901)] = 119537, - [SMALL_STATE(2902)] = 119552, - [SMALL_STATE(2903)] = 119567, - [SMALL_STATE(2904)] = 119584, - [SMALL_STATE(2905)] = 119601, - [SMALL_STATE(2906)] = 119618, - [SMALL_STATE(2907)] = 119635, - [SMALL_STATE(2908)] = 119652, - [SMALL_STATE(2909)] = 119669, - [SMALL_STATE(2910)] = 119686, - [SMALL_STATE(2911)] = 119703, - [SMALL_STATE(2912)] = 119716, - [SMALL_STATE(2913)] = 119733, - [SMALL_STATE(2914)] = 119752, - [SMALL_STATE(2915)] = 119769, - [SMALL_STATE(2916)] = 119786, - [SMALL_STATE(2917)] = 119801, - [SMALL_STATE(2918)] = 119818, - [SMALL_STATE(2919)] = 119835, - [SMALL_STATE(2920)] = 119848, - [SMALL_STATE(2921)] = 119865, - [SMALL_STATE(2922)] = 119884, - [SMALL_STATE(2923)] = 119899, - [SMALL_STATE(2924)] = 119918, - [SMALL_STATE(2925)] = 119935, - [SMALL_STATE(2926)] = 119950, - [SMALL_STATE(2927)] = 119965, - [SMALL_STATE(2928)] = 119978, - [SMALL_STATE(2929)] = 119993, - [SMALL_STATE(2930)] = 120012, - [SMALL_STATE(2931)] = 120029, - [SMALL_STATE(2932)] = 120046, - [SMALL_STATE(2933)] = 120063, - [SMALL_STATE(2934)] = 120080, - [SMALL_STATE(2935)] = 120097, - [SMALL_STATE(2936)] = 120114, - [SMALL_STATE(2937)] = 120129, - [SMALL_STATE(2938)] = 120146, - [SMALL_STATE(2939)] = 120163, - [SMALL_STATE(2940)] = 120178, - [SMALL_STATE(2941)] = 120190, - [SMALL_STATE(2942)] = 120204, - [SMALL_STATE(2943)] = 120220, - [SMALL_STATE(2944)] = 120234, - [SMALL_STATE(2945)] = 120248, - [SMALL_STATE(2946)] = 120262, - [SMALL_STATE(2947)] = 120276, - [SMALL_STATE(2948)] = 120290, - [SMALL_STATE(2949)] = 120302, - [SMALL_STATE(2950)] = 120316, - [SMALL_STATE(2951)] = 120328, - [SMALL_STATE(2952)] = 120342, - [SMALL_STATE(2953)] = 120356, - [SMALL_STATE(2954)] = 120370, - [SMALL_STATE(2955)] = 120382, - [SMALL_STATE(2956)] = 120394, - [SMALL_STATE(2957)] = 120406, - [SMALL_STATE(2958)] = 120420, - [SMALL_STATE(2959)] = 120436, - [SMALL_STATE(2960)] = 120452, - [SMALL_STATE(2961)] = 120468, - [SMALL_STATE(2962)] = 120480, - [SMALL_STATE(2963)] = 120492, - [SMALL_STATE(2964)] = 120508, - [SMALL_STATE(2965)] = 120522, - [SMALL_STATE(2966)] = 120534, - [SMALL_STATE(2967)] = 120548, - [SMALL_STATE(2968)] = 120562, - [SMALL_STATE(2969)] = 120576, - [SMALL_STATE(2970)] = 120590, - [SMALL_STATE(2971)] = 120602, - [SMALL_STATE(2972)] = 120614, - [SMALL_STATE(2973)] = 120626, - [SMALL_STATE(2974)] = 120638, - [SMALL_STATE(2975)] = 120650, - [SMALL_STATE(2976)] = 120662, - [SMALL_STATE(2977)] = 120674, - [SMALL_STATE(2978)] = 120688, - [SMALL_STATE(2979)] = 120704, - [SMALL_STATE(2980)] = 120718, - [SMALL_STATE(2981)] = 120732, - [SMALL_STATE(2982)] = 120746, - [SMALL_STATE(2983)] = 120758, - [SMALL_STATE(2984)] = 120772, - [SMALL_STATE(2985)] = 120786, - [SMALL_STATE(2986)] = 120800, - [SMALL_STATE(2987)] = 120814, - [SMALL_STATE(2988)] = 120828, - [SMALL_STATE(2989)] = 120842, - [SMALL_STATE(2990)] = 120856, - [SMALL_STATE(2991)] = 120870, - [SMALL_STATE(2992)] = 120884, - [SMALL_STATE(2993)] = 120898, - [SMALL_STATE(2994)] = 120912, - [SMALL_STATE(2995)] = 120925, - [SMALL_STATE(2996)] = 120938, - [SMALL_STATE(2997)] = 120951, - [SMALL_STATE(2998)] = 120964, - [SMALL_STATE(2999)] = 120977, - [SMALL_STATE(3000)] = 120990, - [SMALL_STATE(3001)] = 121003, - [SMALL_STATE(3002)] = 121016, - [SMALL_STATE(3003)] = 121029, - [SMALL_STATE(3004)] = 121042, - [SMALL_STATE(3005)] = 121053, - [SMALL_STATE(3006)] = 121066, - [SMALL_STATE(3007)] = 121079, - [SMALL_STATE(3008)] = 121092, - [SMALL_STATE(3009)] = 121105, - [SMALL_STATE(3010)] = 121118, - [SMALL_STATE(3011)] = 121131, - [SMALL_STATE(3012)] = 121144, - [SMALL_STATE(3013)] = 121157, - [SMALL_STATE(3014)] = 121170, - [SMALL_STATE(3015)] = 121183, - [SMALL_STATE(3016)] = 121196, - [SMALL_STATE(3017)] = 121209, - [SMALL_STATE(3018)] = 121222, - [SMALL_STATE(3019)] = 121235, - [SMALL_STATE(3020)] = 121248, - [SMALL_STATE(3021)] = 121261, - [SMALL_STATE(3022)] = 121274, - [SMALL_STATE(3023)] = 121287, - [SMALL_STATE(3024)] = 121300, - [SMALL_STATE(3025)] = 121313, - [SMALL_STATE(3026)] = 121326, - [SMALL_STATE(3027)] = 121339, - [SMALL_STATE(3028)] = 121352, - [SMALL_STATE(3029)] = 121365, - [SMALL_STATE(3030)] = 121378, - [SMALL_STATE(3031)] = 121391, - [SMALL_STATE(3032)] = 121404, - [SMALL_STATE(3033)] = 121417, - [SMALL_STATE(3034)] = 121430, - [SMALL_STATE(3035)] = 121443, - [SMALL_STATE(3036)] = 121456, - [SMALL_STATE(3037)] = 121469, - [SMALL_STATE(3038)] = 121482, - [SMALL_STATE(3039)] = 121495, - [SMALL_STATE(3040)] = 121508, - [SMALL_STATE(3041)] = 121521, - [SMALL_STATE(3042)] = 121534, - [SMALL_STATE(3043)] = 121547, - [SMALL_STATE(3044)] = 121560, - [SMALL_STATE(3045)] = 121573, - [SMALL_STATE(3046)] = 121586, - [SMALL_STATE(3047)] = 121599, - [SMALL_STATE(3048)] = 121612, - [SMALL_STATE(3049)] = 121625, - [SMALL_STATE(3050)] = 121638, - [SMALL_STATE(3051)] = 121651, - [SMALL_STATE(3052)] = 121662, - [SMALL_STATE(3053)] = 121675, - [SMALL_STATE(3054)] = 121688, - [SMALL_STATE(3055)] = 121701, - [SMALL_STATE(3056)] = 121714, - [SMALL_STATE(3057)] = 121725, - [SMALL_STATE(3058)] = 121736, - [SMALL_STATE(3059)] = 121749, - [SMALL_STATE(3060)] = 121760, - [SMALL_STATE(3061)] = 121773, - [SMALL_STATE(3062)] = 121786, - [SMALL_STATE(3063)] = 121797, - [SMALL_STATE(3064)] = 121810, - [SMALL_STATE(3065)] = 121821, - [SMALL_STATE(3066)] = 121834, - [SMALL_STATE(3067)] = 121847, - [SMALL_STATE(3068)] = 121860, - [SMALL_STATE(3069)] = 121871, - [SMALL_STATE(3070)] = 121884, - [SMALL_STATE(3071)] = 121897, - [SMALL_STATE(3072)] = 121910, - [SMALL_STATE(3073)] = 121923, - [SMALL_STATE(3074)] = 121936, - [SMALL_STATE(3075)] = 121947, - [SMALL_STATE(3076)] = 121960, - [SMALL_STATE(3077)] = 121973, - [SMALL_STATE(3078)] = 121986, - [SMALL_STATE(3079)] = 121999, - [SMALL_STATE(3080)] = 122012, - [SMALL_STATE(3081)] = 122025, - [SMALL_STATE(3082)] = 122036, - [SMALL_STATE(3083)] = 122049, - [SMALL_STATE(3084)] = 122062, - [SMALL_STATE(3085)] = 122075, - [SMALL_STATE(3086)] = 122088, - [SMALL_STATE(3087)] = 122101, - [SMALL_STATE(3088)] = 122112, - [SMALL_STATE(3089)] = 122125, - [SMALL_STATE(3090)] = 122138, - [SMALL_STATE(3091)] = 122151, - [SMALL_STATE(3092)] = 122164, - [SMALL_STATE(3093)] = 122177, - [SMALL_STATE(3094)] = 122190, - [SMALL_STATE(3095)] = 122203, - [SMALL_STATE(3096)] = 122216, - [SMALL_STATE(3097)] = 122229, - [SMALL_STATE(3098)] = 122242, - [SMALL_STATE(3099)] = 122253, - [SMALL_STATE(3100)] = 122266, - [SMALL_STATE(3101)] = 122277, - [SMALL_STATE(3102)] = 122290, - [SMALL_STATE(3103)] = 122303, - [SMALL_STATE(3104)] = 122316, - [SMALL_STATE(3105)] = 122329, - [SMALL_STATE(3106)] = 122340, - [SMALL_STATE(3107)] = 122353, - [SMALL_STATE(3108)] = 122366, - [SMALL_STATE(3109)] = 122379, - [SMALL_STATE(3110)] = 122392, - [SMALL_STATE(3111)] = 122405, - [SMALL_STATE(3112)] = 122416, - [SMALL_STATE(3113)] = 122429, - [SMALL_STATE(3114)] = 122442, - [SMALL_STATE(3115)] = 122455, - [SMALL_STATE(3116)] = 122468, - [SMALL_STATE(3117)] = 122481, - [SMALL_STATE(3118)] = 122494, - [SMALL_STATE(3119)] = 122505, - [SMALL_STATE(3120)] = 122518, - [SMALL_STATE(3121)] = 122531, - [SMALL_STATE(3122)] = 122544, - [SMALL_STATE(3123)] = 122557, - [SMALL_STATE(3124)] = 122570, - [SMALL_STATE(3125)] = 122583, - [SMALL_STATE(3126)] = 122596, - [SMALL_STATE(3127)] = 122609, - [SMALL_STATE(3128)] = 122622, - [SMALL_STATE(3129)] = 122635, - [SMALL_STATE(3130)] = 122648, - [SMALL_STATE(3131)] = 122661, - [SMALL_STATE(3132)] = 122674, - [SMALL_STATE(3133)] = 122687, - [SMALL_STATE(3134)] = 122700, - [SMALL_STATE(3135)] = 122713, - [SMALL_STATE(3136)] = 122726, - [SMALL_STATE(3137)] = 122739, - [SMALL_STATE(3138)] = 122752, - [SMALL_STATE(3139)] = 122765, - [SMALL_STATE(3140)] = 122778, - [SMALL_STATE(3141)] = 122791, - [SMALL_STATE(3142)] = 122804, - [SMALL_STATE(3143)] = 122817, - [SMALL_STATE(3144)] = 122830, - [SMALL_STATE(3145)] = 122843, - [SMALL_STATE(3146)] = 122856, - [SMALL_STATE(3147)] = 122869, - [SMALL_STATE(3148)] = 122882, - [SMALL_STATE(3149)] = 122895, - [SMALL_STATE(3150)] = 122908, - [SMALL_STATE(3151)] = 122921, - [SMALL_STATE(3152)] = 122934, - [SMALL_STATE(3153)] = 122944, - [SMALL_STATE(3154)] = 122952, - [SMALL_STATE(3155)] = 122960, - [SMALL_STATE(3156)] = 122970, - [SMALL_STATE(3157)] = 122978, - [SMALL_STATE(3158)] = 122986, - [SMALL_STATE(3159)] = 122994, - [SMALL_STATE(3160)] = 123004, - [SMALL_STATE(3161)] = 123014, - [SMALL_STATE(3162)] = 123024, - [SMALL_STATE(3163)] = 123034, - [SMALL_STATE(3164)] = 123044, - [SMALL_STATE(3165)] = 123054, - [SMALL_STATE(3166)] = 123064, - [SMALL_STATE(3167)] = 123074, - [SMALL_STATE(3168)] = 123084, - [SMALL_STATE(3169)] = 123094, - [SMALL_STATE(3170)] = 123104, - [SMALL_STATE(3171)] = 123114, - [SMALL_STATE(3172)] = 123124, - [SMALL_STATE(3173)] = 123134, - [SMALL_STATE(3174)] = 123142, - [SMALL_STATE(3175)] = 123152, - [SMALL_STATE(3176)] = 123162, - [SMALL_STATE(3177)] = 123172, - [SMALL_STATE(3178)] = 123182, - [SMALL_STATE(3179)] = 123192, - [SMALL_STATE(3180)] = 123202, - [SMALL_STATE(3181)] = 123212, - [SMALL_STATE(3182)] = 123220, - [SMALL_STATE(3183)] = 123230, - [SMALL_STATE(3184)] = 123240, - [SMALL_STATE(3185)] = 123250, - [SMALL_STATE(3186)] = 123260, - [SMALL_STATE(3187)] = 123270, - [SMALL_STATE(3188)] = 123280, - [SMALL_STATE(3189)] = 123290, - [SMALL_STATE(3190)] = 123300, - [SMALL_STATE(3191)] = 123310, - [SMALL_STATE(3192)] = 123320, - [SMALL_STATE(3193)] = 123330, - [SMALL_STATE(3194)] = 123340, - [SMALL_STATE(3195)] = 123350, - [SMALL_STATE(3196)] = 123360, - [SMALL_STATE(3197)] = 123370, - [SMALL_STATE(3198)] = 123380, - [SMALL_STATE(3199)] = 123390, - [SMALL_STATE(3200)] = 123400, - [SMALL_STATE(3201)] = 123410, - [SMALL_STATE(3202)] = 123420, - [SMALL_STATE(3203)] = 123430, - [SMALL_STATE(3204)] = 123438, - [SMALL_STATE(3205)] = 123446, - [SMALL_STATE(3206)] = 123456, - [SMALL_STATE(3207)] = 123464, - [SMALL_STATE(3208)] = 123474, - [SMALL_STATE(3209)] = 123482, - [SMALL_STATE(3210)] = 123490, - [SMALL_STATE(3211)] = 123498, - [SMALL_STATE(3212)] = 123508, - [SMALL_STATE(3213)] = 123518, - [SMALL_STATE(3214)] = 123526, - [SMALL_STATE(3215)] = 123536, - [SMALL_STATE(3216)] = 123544, - [SMALL_STATE(3217)] = 123554, - [SMALL_STATE(3218)] = 123562, - [SMALL_STATE(3219)] = 123572, - [SMALL_STATE(3220)] = 123582, - [SMALL_STATE(3221)] = 123592, - [SMALL_STATE(3222)] = 123600, - [SMALL_STATE(3223)] = 123608, - [SMALL_STATE(3224)] = 123616, - [SMALL_STATE(3225)] = 123626, - [SMALL_STATE(3226)] = 123636, - [SMALL_STATE(3227)] = 123646, - [SMALL_STATE(3228)] = 123654, - [SMALL_STATE(3229)] = 123664, - [SMALL_STATE(3230)] = 123674, - [SMALL_STATE(3231)] = 123684, - [SMALL_STATE(3232)] = 123692, - [SMALL_STATE(3233)] = 123702, - [SMALL_STATE(3234)] = 123710, - [SMALL_STATE(3235)] = 123718, - [SMALL_STATE(3236)] = 123728, - [SMALL_STATE(3237)] = 123738, - [SMALL_STATE(3238)] = 123746, - [SMALL_STATE(3239)] = 123754, - [SMALL_STATE(3240)] = 123762, - [SMALL_STATE(3241)] = 123772, - [SMALL_STATE(3242)] = 123780, - [SMALL_STATE(3243)] = 123790, - [SMALL_STATE(3244)] = 123800, - [SMALL_STATE(3245)] = 123808, - [SMALL_STATE(3246)] = 123816, - [SMALL_STATE(3247)] = 123824, - [SMALL_STATE(3248)] = 123834, - [SMALL_STATE(3249)] = 123844, - [SMALL_STATE(3250)] = 123852, - [SMALL_STATE(3251)] = 123860, - [SMALL_STATE(3252)] = 123870, - [SMALL_STATE(3253)] = 123880, - [SMALL_STATE(3254)] = 123888, - [SMALL_STATE(3255)] = 123898, - [SMALL_STATE(3256)] = 123908, - [SMALL_STATE(3257)] = 123918, - [SMALL_STATE(3258)] = 123928, - [SMALL_STATE(3259)] = 123938, - [SMALL_STATE(3260)] = 123946, - [SMALL_STATE(3261)] = 123954, - [SMALL_STATE(3262)] = 123962, - [SMALL_STATE(3263)] = 123970, - [SMALL_STATE(3264)] = 123978, - [SMALL_STATE(3265)] = 123986, - [SMALL_STATE(3266)] = 123994, - [SMALL_STATE(3267)] = 124004, - [SMALL_STATE(3268)] = 124014, - [SMALL_STATE(3269)] = 124024, - [SMALL_STATE(3270)] = 124032, - [SMALL_STATE(3271)] = 124039, - [SMALL_STATE(3272)] = 124046, - [SMALL_STATE(3273)] = 124053, - [SMALL_STATE(3274)] = 124060, - [SMALL_STATE(3275)] = 124067, - [SMALL_STATE(3276)] = 124074, - [SMALL_STATE(3277)] = 124081, - [SMALL_STATE(3278)] = 124088, - [SMALL_STATE(3279)] = 124095, - [SMALL_STATE(3280)] = 124102, - [SMALL_STATE(3281)] = 124109, - [SMALL_STATE(3282)] = 124116, - [SMALL_STATE(3283)] = 124123, - [SMALL_STATE(3284)] = 124130, - [SMALL_STATE(3285)] = 124137, - [SMALL_STATE(3286)] = 124144, - [SMALL_STATE(3287)] = 124151, - [SMALL_STATE(3288)] = 124158, - [SMALL_STATE(3289)] = 124165, - [SMALL_STATE(3290)] = 124172, - [SMALL_STATE(3291)] = 124179, - [SMALL_STATE(3292)] = 124186, - [SMALL_STATE(3293)] = 124193, - [SMALL_STATE(3294)] = 124200, - [SMALL_STATE(3295)] = 124207, - [SMALL_STATE(3296)] = 124214, - [SMALL_STATE(3297)] = 124221, - [SMALL_STATE(3298)] = 124228, - [SMALL_STATE(3299)] = 124235, - [SMALL_STATE(3300)] = 124242, - [SMALL_STATE(3301)] = 124249, - [SMALL_STATE(3302)] = 124256, - [SMALL_STATE(3303)] = 124263, - [SMALL_STATE(3304)] = 124270, - [SMALL_STATE(3305)] = 124277, - [SMALL_STATE(3306)] = 124284, - [SMALL_STATE(3307)] = 124291, - [SMALL_STATE(3308)] = 124298, - [SMALL_STATE(3309)] = 124305, - [SMALL_STATE(3310)] = 124312, - [SMALL_STATE(3311)] = 124319, - [SMALL_STATE(3312)] = 124326, - [SMALL_STATE(3313)] = 124333, - [SMALL_STATE(3314)] = 124340, - [SMALL_STATE(3315)] = 124347, - [SMALL_STATE(3316)] = 124354, - [SMALL_STATE(3317)] = 124361, - [SMALL_STATE(3318)] = 124368, - [SMALL_STATE(3319)] = 124375, - [SMALL_STATE(3320)] = 124382, - [SMALL_STATE(3321)] = 124389, - [SMALL_STATE(3322)] = 124396, - [SMALL_STATE(3323)] = 124403, - [SMALL_STATE(3324)] = 124410, - [SMALL_STATE(3325)] = 124417, - [SMALL_STATE(3326)] = 124424, - [SMALL_STATE(3327)] = 124431, - [SMALL_STATE(3328)] = 124438, - [SMALL_STATE(3329)] = 124445, - [SMALL_STATE(3330)] = 124452, - [SMALL_STATE(3331)] = 124459, - [SMALL_STATE(3332)] = 124466, - [SMALL_STATE(3333)] = 124473, - [SMALL_STATE(3334)] = 124480, - [SMALL_STATE(3335)] = 124487, - [SMALL_STATE(3336)] = 124494, - [SMALL_STATE(3337)] = 124501, - [SMALL_STATE(3338)] = 124508, - [SMALL_STATE(3339)] = 124515, - [SMALL_STATE(3340)] = 124522, - [SMALL_STATE(3341)] = 124529, - [SMALL_STATE(3342)] = 124536, - [SMALL_STATE(3343)] = 124543, - [SMALL_STATE(3344)] = 124550, - [SMALL_STATE(3345)] = 124557, - [SMALL_STATE(3346)] = 124564, - [SMALL_STATE(3347)] = 124571, - [SMALL_STATE(3348)] = 124578, - [SMALL_STATE(3349)] = 124585, - [SMALL_STATE(3350)] = 124592, - [SMALL_STATE(3351)] = 124599, - [SMALL_STATE(3352)] = 124606, - [SMALL_STATE(3353)] = 124613, - [SMALL_STATE(3354)] = 124620, - [SMALL_STATE(3355)] = 124627, - [SMALL_STATE(3356)] = 124634, - [SMALL_STATE(3357)] = 124641, - [SMALL_STATE(3358)] = 124648, - [SMALL_STATE(3359)] = 124655, - [SMALL_STATE(3360)] = 124662, - [SMALL_STATE(3361)] = 124669, - [SMALL_STATE(3362)] = 124676, - [SMALL_STATE(3363)] = 124683, - [SMALL_STATE(3364)] = 124690, - [SMALL_STATE(3365)] = 124697, - [SMALL_STATE(3366)] = 124704, - [SMALL_STATE(3367)] = 124711, - [SMALL_STATE(3368)] = 124718, - [SMALL_STATE(3369)] = 124725, - [SMALL_STATE(3370)] = 124732, - [SMALL_STATE(3371)] = 124739, - [SMALL_STATE(3372)] = 124746, - [SMALL_STATE(3373)] = 124753, - [SMALL_STATE(3374)] = 124760, - [SMALL_STATE(3375)] = 124767, - [SMALL_STATE(3376)] = 124774, - [SMALL_STATE(3377)] = 124781, - [SMALL_STATE(3378)] = 124788, - [SMALL_STATE(3379)] = 124795, - [SMALL_STATE(3380)] = 124802, - [SMALL_STATE(3381)] = 124809, - [SMALL_STATE(3382)] = 124816, - [SMALL_STATE(3383)] = 124823, - [SMALL_STATE(3384)] = 124830, - [SMALL_STATE(3385)] = 124837, - [SMALL_STATE(3386)] = 124844, - [SMALL_STATE(3387)] = 124851, - [SMALL_STATE(3388)] = 124858, - [SMALL_STATE(3389)] = 124865, - [SMALL_STATE(3390)] = 124872, - [SMALL_STATE(3391)] = 124879, - [SMALL_STATE(3392)] = 124886, - [SMALL_STATE(3393)] = 124893, - [SMALL_STATE(3394)] = 124900, - [SMALL_STATE(3395)] = 124907, - [SMALL_STATE(3396)] = 124914, - [SMALL_STATE(3397)] = 124921, - [SMALL_STATE(3398)] = 124928, - [SMALL_STATE(3399)] = 124935, - [SMALL_STATE(3400)] = 124942, - [SMALL_STATE(3401)] = 124949, - [SMALL_STATE(3402)] = 124956, - [SMALL_STATE(3403)] = 124963, - [SMALL_STATE(3404)] = 124970, - [SMALL_STATE(3405)] = 124977, - [SMALL_STATE(3406)] = 124984, - [SMALL_STATE(3407)] = 124991, - [SMALL_STATE(3408)] = 124998, - [SMALL_STATE(3409)] = 125005, - [SMALL_STATE(3410)] = 125012, - [SMALL_STATE(3411)] = 125019, - [SMALL_STATE(3412)] = 125026, - [SMALL_STATE(3413)] = 125033, - [SMALL_STATE(3414)] = 125040, - [SMALL_STATE(3415)] = 125047, - [SMALL_STATE(3416)] = 125054, - [SMALL_STATE(3417)] = 125061, - [SMALL_STATE(3418)] = 125068, - [SMALL_STATE(3419)] = 125075, - [SMALL_STATE(3420)] = 125082, - [SMALL_STATE(3421)] = 125089, - [SMALL_STATE(3422)] = 125096, - [SMALL_STATE(3423)] = 125103, - [SMALL_STATE(3424)] = 125110, - [SMALL_STATE(3425)] = 125117, - [SMALL_STATE(3426)] = 125124, - [SMALL_STATE(3427)] = 125131, - [SMALL_STATE(3428)] = 125138, - [SMALL_STATE(3429)] = 125145, - [SMALL_STATE(3430)] = 125152, - [SMALL_STATE(3431)] = 125159, - [SMALL_STATE(3432)] = 125166, - [SMALL_STATE(3433)] = 125173, - [SMALL_STATE(3434)] = 125180, - [SMALL_STATE(3435)] = 125187, - [SMALL_STATE(3436)] = 125194, - [SMALL_STATE(3437)] = 125201, - [SMALL_STATE(3438)] = 125208, - [SMALL_STATE(3439)] = 125215, - [SMALL_STATE(3440)] = 125222, - [SMALL_STATE(3441)] = 125229, - [SMALL_STATE(3442)] = 125236, - [SMALL_STATE(3443)] = 125243, - [SMALL_STATE(3444)] = 125250, - [SMALL_STATE(3445)] = 125257, - [SMALL_STATE(3446)] = 125264, - [SMALL_STATE(3447)] = 125271, - [SMALL_STATE(3448)] = 125278, - [SMALL_STATE(3449)] = 125285, - [SMALL_STATE(3450)] = 125292, - [SMALL_STATE(3451)] = 125299, - [SMALL_STATE(3452)] = 125306, - [SMALL_STATE(3453)] = 125313, - [SMALL_STATE(3454)] = 125320, - [SMALL_STATE(3455)] = 125327, - [SMALL_STATE(3456)] = 125334, - [SMALL_STATE(3457)] = 125341, - [SMALL_STATE(3458)] = 125348, - [SMALL_STATE(3459)] = 125355, - [SMALL_STATE(3460)] = 125362, - [SMALL_STATE(3461)] = 125369, - [SMALL_STATE(3462)] = 125376, - [SMALL_STATE(3463)] = 125383, - [SMALL_STATE(3464)] = 125390, - [SMALL_STATE(3465)] = 125397, - [SMALL_STATE(3466)] = 125404, - [SMALL_STATE(3467)] = 125411, - [SMALL_STATE(3468)] = 125418, - [SMALL_STATE(3469)] = 125425, - [SMALL_STATE(3470)] = 125432, - [SMALL_STATE(3471)] = 125439, - [SMALL_STATE(3472)] = 125446, - [SMALL_STATE(3473)] = 125453, - [SMALL_STATE(3474)] = 125460, - [SMALL_STATE(3475)] = 125467, - [SMALL_STATE(3476)] = 125474, - [SMALL_STATE(3477)] = 125481, + [SMALL_STATE(162)] = 312, + [SMALL_STATE(163)] = 375, + [SMALL_STATE(164)] = 457, + [SMALL_STATE(165)] = 539, + [SMALL_STATE(166)] = 599, + [SMALL_STATE(167)] = 663, + [SMALL_STATE(168)] = 725, + [SMALL_STATE(169)] = 807, + [SMALL_STATE(170)] = 869, + [SMALL_STATE(171)] = 950, + [SMALL_STATE(172)] = 1029, + [SMALL_STATE(173)] = 1110, + [SMALL_STATE(174)] = 1189, + [SMALL_STATE(175)] = 1268, + [SMALL_STATE(176)] = 1347, + [SMALL_STATE(177)] = 1428, + [SMALL_STATE(178)] = 1491, + [SMALL_STATE(179)] = 1570, + [SMALL_STATE(180)] = 1633, + [SMALL_STATE(181)] = 1696, + [SMALL_STATE(182)] = 1777, + [SMALL_STATE(183)] = 1858, + [SMALL_STATE(184)] = 1939, + [SMALL_STATE(185)] = 2017, + [SMALL_STATE(186)] = 2079, + [SMALL_STATE(187)] = 2157, + [SMALL_STATE(188)] = 2215, + [SMALL_STATE(189)] = 2269, + [SMALL_STATE(190)] = 2331, + [SMALL_STATE(191)] = 2409, + [SMALL_STATE(192)] = 2485, + [SMALL_STATE(193)] = 2563, + [SMALL_STATE(194)] = 2641, + [SMALL_STATE(195)] = 2701, + [SMALL_STATE(196)] = 2755, + [SMALL_STATE(197)] = 2815, + [SMALL_STATE(198)] = 2875, + [SMALL_STATE(199)] = 2929, + [SMALL_STATE(200)] = 2983, + [SMALL_STATE(201)] = 3059, + [SMALL_STATE(202)] = 3121, + [SMALL_STATE(203)] = 3175, + [SMALL_STATE(204)] = 3253, + [SMALL_STATE(205)] = 3307, + [SMALL_STATE(206)] = 3385, + [SMALL_STATE(207)] = 3439, + [SMALL_STATE(208)] = 3515, + [SMALL_STATE(209)] = 3569, + [SMALL_STATE(210)] = 3629, + [SMALL_STATE(211)] = 3687, + [SMALL_STATE(212)] = 3749, + [SMALL_STATE(213)] = 3811, + [SMALL_STATE(214)] = 3869, + [SMALL_STATE(215)] = 3946, + [SMALL_STATE(216)] = 4005, + [SMALL_STATE(217)] = 4082, + [SMALL_STATE(218)] = 4143, + [SMALL_STATE(219)] = 4202, + [SMALL_STATE(220)] = 4279, + [SMALL_STATE(221)] = 4354, + [SMALL_STATE(222)] = 4411, + [SMALL_STATE(223)] = 4472, + [SMALL_STATE(224)] = 4533, + [SMALL_STATE(225)] = 4610, + [SMALL_STATE(226)] = 4661, + [SMALL_STATE(227)] = 4738, + [SMALL_STATE(228)] = 4815, + [SMALL_STATE(229)] = 4890, + [SMALL_STATE(230)] = 4967, + [SMALL_STATE(231)] = 5042, + [SMALL_STATE(232)] = 5119, + [SMALL_STATE(233)] = 5196, + [SMALL_STATE(234)] = 5273, + [SMALL_STATE(235)] = 5334, + [SMALL_STATE(236)] = 5385, + [SMALL_STATE(237)] = 5446, + [SMALL_STATE(238)] = 5506, + [SMALL_STATE(239)] = 5580, + [SMALL_STATE(240)] = 5654, + [SMALL_STATE(241)] = 5728, + [SMALL_STATE(242)] = 5802, + [SMALL_STATE(243)] = 5876, + [SMALL_STATE(244)] = 5950, + [SMALL_STATE(245)] = 6024, + [SMALL_STATE(246)] = 6098, + [SMALL_STATE(247)] = 6172, + [SMALL_STATE(248)] = 6246, + [SMALL_STATE(249)] = 6306, + [SMALL_STATE(250)] = 6357, + [SMALL_STATE(251)] = 6428, + [SMALL_STATE(252)] = 6479, + [SMALL_STATE(253)] = 6528, + [SMALL_STATE(254)] = 6577, + [SMALL_STATE(255)] = 6668, + [SMALL_STATE(256)] = 6719, + [SMALL_STATE(257)] = 6768, + [SMALL_STATE(258)] = 6839, + [SMALL_STATE(259)] = 6888, + [SMALL_STATE(260)] = 6979, + [SMALL_STATE(261)] = 7028, + [SMALL_STATE(262)] = 7077, + [SMALL_STATE(263)] = 7168, + [SMALL_STATE(264)] = 7259, + [SMALL_STATE(265)] = 7350, + [SMALL_STATE(266)] = 7401, + [SMALL_STATE(267)] = 7451, + [SMALL_STATE(268)] = 7501, + [SMALL_STATE(269)] = 7551, + [SMALL_STATE(270)] = 7601, + [SMALL_STATE(271)] = 7649, + [SMALL_STATE(272)] = 7697, + [SMALL_STATE(273)] = 7750, + [SMALL_STATE(274)] = 7803, + [SMALL_STATE(275)] = 7856, + [SMALL_STATE(276)] = 7919, + [SMALL_STATE(277)] = 7982, + [SMALL_STATE(278)] = 8032, + [SMALL_STATE(279)] = 8082, + [SMALL_STATE(280)] = 8132, + [SMALL_STATE(281)] = 8182, + [SMALL_STATE(282)] = 8232, + [SMALL_STATE(283)] = 8284, + [SMALL_STATE(284)] = 8336, + [SMALL_STATE(285)] = 8386, + [SMALL_STATE(286)] = 8448, + [SMALL_STATE(287)] = 8498, + [SMALL_STATE(288)] = 8548, + [SMALL_STATE(289)] = 8598, + [SMALL_STATE(290)] = 8650, + [SMALL_STATE(291)] = 8700, + [SMALL_STATE(292)] = 8762, + [SMALL_STATE(293)] = 8812, + [SMALL_STATE(294)] = 8857, + [SMALL_STATE(295)] = 8902, + [SMALL_STATE(296)] = 8951, + [SMALL_STATE(297)] = 9000, + [SMALL_STATE(298)] = 9049, + [SMALL_STATE(299)] = 9098, + [SMALL_STATE(300)] = 9143, + [SMALL_STATE(301)] = 9188, + [SMALL_STATE(302)] = 9233, + [SMALL_STATE(303)] = 9278, + [SMALL_STATE(304)] = 9323, + [SMALL_STATE(305)] = 9368, + [SMALL_STATE(306)] = 9413, + [SMALL_STATE(307)] = 9458, + [SMALL_STATE(308)] = 9503, + [SMALL_STATE(309)] = 9548, + [SMALL_STATE(310)] = 9593, + [SMALL_STATE(311)] = 9638, + [SMALL_STATE(312)] = 9683, + [SMALL_STATE(313)] = 9732, + [SMALL_STATE(314)] = 9793, + [SMALL_STATE(315)] = 9838, + [SMALL_STATE(316)] = 9883, + [SMALL_STATE(317)] = 9928, + [SMALL_STATE(318)] = 9979, + [SMALL_STATE(319)] = 10024, + [SMALL_STATE(320)] = 10073, + [SMALL_STATE(321)] = 10122, + [SMALL_STATE(322)] = 10171, + [SMALL_STATE(323)] = 10216, + [SMALL_STATE(324)] = 10261, + [SMALL_STATE(325)] = 10312, + [SMALL_STATE(326)] = 10361, + [SMALL_STATE(327)] = 10412, + [SMALL_STATE(328)] = 10463, + [SMALL_STATE(329)] = 10512, + [SMALL_STATE(330)] = 10557, + [SMALL_STATE(331)] = 10606, + [SMALL_STATE(332)] = 10651, + [SMALL_STATE(333)] = 10696, + [SMALL_STATE(334)] = 10741, + [SMALL_STATE(335)] = 10786, + [SMALL_STATE(336)] = 10831, + [SMALL_STATE(337)] = 10892, + [SMALL_STATE(338)] = 10941, + [SMALL_STATE(339)] = 10986, + [SMALL_STATE(340)] = 11031, + [SMALL_STATE(341)] = 11076, + [SMALL_STATE(342)] = 11121, + [SMALL_STATE(343)] = 11166, + [SMALL_STATE(344)] = 11211, + [SMALL_STATE(345)] = 11256, + [SMALL_STATE(346)] = 11305, + [SMALL_STATE(347)] = 11366, + [SMALL_STATE(348)] = 11415, + [SMALL_STATE(349)] = 11460, + [SMALL_STATE(350)] = 11509, + [SMALL_STATE(351)] = 11554, + [SMALL_STATE(352)] = 11599, + [SMALL_STATE(353)] = 11644, + [SMALL_STATE(354)] = 11693, + [SMALL_STATE(355)] = 11742, + [SMALL_STATE(356)] = 11791, + [SMALL_STATE(357)] = 11840, + [SMALL_STATE(358)] = 11885, + [SMALL_STATE(359)] = 11930, + [SMALL_STATE(360)] = 11979, + [SMALL_STATE(361)] = 12028, + [SMALL_STATE(362)] = 12077, + [SMALL_STATE(363)] = 12126, + [SMALL_STATE(364)] = 12171, + [SMALL_STATE(365)] = 12220, + [SMALL_STATE(366)] = 12265, + [SMALL_STATE(367)] = 12318, + [SMALL_STATE(368)] = 12363, + [SMALL_STATE(369)] = 12412, + [SMALL_STATE(370)] = 12457, + [SMALL_STATE(371)] = 12502, + [SMALL_STATE(372)] = 12553, + [SMALL_STATE(373)] = 12598, + [SMALL_STATE(374)] = 12643, + [SMALL_STATE(375)] = 12704, + [SMALL_STATE(376)] = 12749, + [SMALL_STATE(377)] = 12794, + [SMALL_STATE(378)] = 12839, + [SMALL_STATE(379)] = 12884, + [SMALL_STATE(380)] = 12933, + [SMALL_STATE(381)] = 12978, + [SMALL_STATE(382)] = 13022, + [SMALL_STATE(383)] = 13066, + [SMALL_STATE(384)] = 13110, + [SMALL_STATE(385)] = 13154, + [SMALL_STATE(386)] = 13198, + [SMALL_STATE(387)] = 13242, + [SMALL_STATE(388)] = 13286, + [SMALL_STATE(389)] = 13330, + [SMALL_STATE(390)] = 13374, + [SMALL_STATE(391)] = 13418, + [SMALL_STATE(392)] = 13462, + [SMALL_STATE(393)] = 13506, + [SMALL_STATE(394)] = 13550, + [SMALL_STATE(395)] = 13594, + [SMALL_STATE(396)] = 13638, + [SMALL_STATE(397)] = 13682, + [SMALL_STATE(398)] = 13726, + [SMALL_STATE(399)] = 13770, + [SMALL_STATE(400)] = 13818, + [SMALL_STATE(401)] = 13866, + [SMALL_STATE(402)] = 13914, + [SMALL_STATE(403)] = 13962, + [SMALL_STATE(404)] = 14010, + [SMALL_STATE(405)] = 14054, + [SMALL_STATE(406)] = 14098, + [SMALL_STATE(407)] = 14142, + [SMALL_STATE(408)] = 14186, + [SMALL_STATE(409)] = 14230, + [SMALL_STATE(410)] = 14278, + [SMALL_STATE(411)] = 14326, + [SMALL_STATE(412)] = 14374, + [SMALL_STATE(413)] = 14422, + [SMALL_STATE(414)] = 14470, + [SMALL_STATE(415)] = 14514, + [SMALL_STATE(416)] = 14562, + [SMALL_STATE(417)] = 14606, + [SMALL_STATE(418)] = 14650, + [SMALL_STATE(419)] = 14694, + [SMALL_STATE(420)] = 14738, + [SMALL_STATE(421)] = 14786, + [SMALL_STATE(422)] = 14830, + [SMALL_STATE(423)] = 14878, + [SMALL_STATE(424)] = 14922, + [SMALL_STATE(425)] = 14966, + [SMALL_STATE(426)] = 15010, + [SMALL_STATE(427)] = 15054, + [SMALL_STATE(428)] = 15098, + [SMALL_STATE(429)] = 15142, + [SMALL_STATE(430)] = 15190, + [SMALL_STATE(431)] = 15234, + [SMALL_STATE(432)] = 15292, + [SMALL_STATE(433)] = 15336, + [SMALL_STATE(434)] = 15384, + [SMALL_STATE(435)] = 15428, + [SMALL_STATE(436)] = 15476, + [SMALL_STATE(437)] = 15520, + [SMALL_STATE(438)] = 15564, + [SMALL_STATE(439)] = 15608, + [SMALL_STATE(440)] = 15652, + [SMALL_STATE(441)] = 15696, + [SMALL_STATE(442)] = 15740, + [SMALL_STATE(443)] = 15788, + [SMALL_STATE(444)] = 15832, + [SMALL_STATE(445)] = 15876, + [SMALL_STATE(446)] = 15920, + [SMALL_STATE(447)] = 15964, + [SMALL_STATE(448)] = 16008, + [SMALL_STATE(449)] = 16052, + [SMALL_STATE(450)] = 16096, + [SMALL_STATE(451)] = 16140, + [SMALL_STATE(452)] = 16188, + [SMALL_STATE(453)] = 16246, + [SMALL_STATE(454)] = 16290, + [SMALL_STATE(455)] = 16338, + [SMALL_STATE(456)] = 16382, + [SMALL_STATE(457)] = 16430, + [SMALL_STATE(458)] = 16488, + [SMALL_STATE(459)] = 16532, + [SMALL_STATE(460)] = 16576, + [SMALL_STATE(461)] = 16620, + [SMALL_STATE(462)] = 16668, + [SMALL_STATE(463)] = 16712, + [SMALL_STATE(464)] = 16756, + [SMALL_STATE(465)] = 16800, + [SMALL_STATE(466)] = 16848, + [SMALL_STATE(467)] = 16896, + [SMALL_STATE(468)] = 16940, + [SMALL_STATE(469)] = 16984, + [SMALL_STATE(470)] = 17032, + [SMALL_STATE(471)] = 17080, + [SMALL_STATE(472)] = 17124, + [SMALL_STATE(473)] = 17168, + [SMALL_STATE(474)] = 17212, + [SMALL_STATE(475)] = 17256, + [SMALL_STATE(476)] = 17300, + [SMALL_STATE(477)] = 17348, + [SMALL_STATE(478)] = 17396, + [SMALL_STATE(479)] = 17440, + [SMALL_STATE(480)] = 17484, + [SMALL_STATE(481)] = 17528, + [SMALL_STATE(482)] = 17572, + [SMALL_STATE(483)] = 17616, + [SMALL_STATE(484)] = 17660, + [SMALL_STATE(485)] = 17704, + [SMALL_STATE(486)] = 17748, + [SMALL_STATE(487)] = 17792, + [SMALL_STATE(488)] = 17836, + [SMALL_STATE(489)] = 17880, + [SMALL_STATE(490)] = 17924, + [SMALL_STATE(491)] = 17968, + [SMALL_STATE(492)] = 18012, + [SMALL_STATE(493)] = 18060, + [SMALL_STATE(494)] = 18104, + [SMALL_STATE(495)] = 18148, + [SMALL_STATE(496)] = 18192, + [SMALL_STATE(497)] = 18242, + [SMALL_STATE(498)] = 18292, + [SMALL_STATE(499)] = 18340, + [SMALL_STATE(500)] = 18394, + [SMALL_STATE(501)] = 18452, + [SMALL_STATE(502)] = 18508, + [SMALL_STATE(503)] = 18552, + [SMALL_STATE(504)] = 18596, + [SMALL_STATE(505)] = 18640, + [SMALL_STATE(506)] = 18688, + [SMALL_STATE(507)] = 18732, + [SMALL_STATE(508)] = 18780, + [SMALL_STATE(509)] = 18828, + [SMALL_STATE(510)] = 18872, + [SMALL_STATE(511)] = 18932, + [SMALL_STATE(512)] = 18976, + [SMALL_STATE(513)] = 19020, + [SMALL_STATE(514)] = 19064, + [SMALL_STATE(515)] = 19108, + [SMALL_STATE(516)] = 19156, + [SMALL_STATE(517)] = 19204, + [SMALL_STATE(518)] = 19248, + [SMALL_STATE(519)] = 19292, + [SMALL_STATE(520)] = 19336, + [SMALL_STATE(521)] = 19380, + [SMALL_STATE(522)] = 19428, + [SMALL_STATE(523)] = 19472, + [SMALL_STATE(524)] = 19516, + [SMALL_STATE(525)] = 19560, + [SMALL_STATE(526)] = 19604, + [SMALL_STATE(527)] = 19648, + [SMALL_STATE(528)] = 19692, + [SMALL_STATE(529)] = 19736, + [SMALL_STATE(530)] = 19780, + [SMALL_STATE(531)] = 19824, + [SMALL_STATE(532)] = 19872, + [SMALL_STATE(533)] = 19916, + [SMALL_STATE(534)] = 19974, + [SMALL_STATE(535)] = 20018, + [SMALL_STATE(536)] = 20078, + [SMALL_STATE(537)] = 20122, + [SMALL_STATE(538)] = 20170, + [SMALL_STATE(539)] = 20218, + [SMALL_STATE(540)] = 20262, + [SMALL_STATE(541)] = 20310, + [SMALL_STATE(542)] = 20358, + [SMALL_STATE(543)] = 20402, + [SMALL_STATE(544)] = 20446, + [SMALL_STATE(545)] = 20494, + [SMALL_STATE(546)] = 20537, + [SMALL_STATE(547)] = 20580, + [SMALL_STATE(548)] = 20627, + [SMALL_STATE(549)] = 20670, + [SMALL_STATE(550)] = 20713, + [SMALL_STATE(551)] = 20756, + [SMALL_STATE(552)] = 20803, + [SMALL_STATE(553)] = 20846, + [SMALL_STATE(554)] = 20889, + [SMALL_STATE(555)] = 20932, + [SMALL_STATE(556)] = 20975, + [SMALL_STATE(557)] = 21018, + [SMALL_STATE(558)] = 21061, + [SMALL_STATE(559)] = 21104, + [SMALL_STATE(560)] = 21147, + [SMALL_STATE(561)] = 21190, + [SMALL_STATE(562)] = 21233, + [SMALL_STATE(563)] = 21276, + [SMALL_STATE(564)] = 21319, + [SMALL_STATE(565)] = 21362, + [SMALL_STATE(566)] = 21405, + [SMALL_STATE(567)] = 21448, + [SMALL_STATE(568)] = 21491, + [SMALL_STATE(569)] = 21534, + [SMALL_STATE(570)] = 21577, + [SMALL_STATE(571)] = 21620, + [SMALL_STATE(572)] = 21667, + [SMALL_STATE(573)] = 21710, + [SMALL_STATE(574)] = 21753, + [SMALL_STATE(575)] = 21796, + [SMALL_STATE(576)] = 21839, + [SMALL_STATE(577)] = 21886, + [SMALL_STATE(578)] = 21933, + [SMALL_STATE(579)] = 21980, + [SMALL_STATE(580)] = 22023, + [SMALL_STATE(581)] = 22070, + [SMALL_STATE(582)] = 22113, + [SMALL_STATE(583)] = 22160, + [SMALL_STATE(584)] = 22203, + [SMALL_STATE(585)] = 22250, + [SMALL_STATE(586)] = 22297, + [SMALL_STATE(587)] = 22344, + [SMALL_STATE(588)] = 22391, + [SMALL_STATE(589)] = 22438, + [SMALL_STATE(590)] = 22485, + [SMALL_STATE(591)] = 22538, + [SMALL_STATE(592)] = 22585, + [SMALL_STATE(593)] = 22632, + [SMALL_STATE(594)] = 22675, + [SMALL_STATE(595)] = 22718, + [SMALL_STATE(596)] = 22761, + [SMALL_STATE(597)] = 22804, + [SMALL_STATE(598)] = 22847, + [SMALL_STATE(599)] = 22890, + [SMALL_STATE(600)] = 22933, + [SMALL_STATE(601)] = 22976, + [SMALL_STATE(602)] = 23019, + [SMALL_STATE(603)] = 23062, + [SMALL_STATE(604)] = 23105, + [SMALL_STATE(605)] = 23148, + [SMALL_STATE(606)] = 23191, + [SMALL_STATE(607)] = 23234, + [SMALL_STATE(608)] = 23277, + [SMALL_STATE(609)] = 23320, + [SMALL_STATE(610)] = 23363, + [SMALL_STATE(611)] = 23406, + [SMALL_STATE(612)] = 23449, + [SMALL_STATE(613)] = 23492, + [SMALL_STATE(614)] = 23535, + [SMALL_STATE(615)] = 23578, + [SMALL_STATE(616)] = 23621, + [SMALL_STATE(617)] = 23664, + [SMALL_STATE(618)] = 23707, + [SMALL_STATE(619)] = 23750, + [SMALL_STATE(620)] = 23793, + [SMALL_STATE(621)] = 23836, + [SMALL_STATE(622)] = 23879, + [SMALL_STATE(623)] = 23922, + [SMALL_STATE(624)] = 23965, + [SMALL_STATE(625)] = 24008, + [SMALL_STATE(626)] = 24055, + [SMALL_STATE(627)] = 24098, + [SMALL_STATE(628)] = 24141, + [SMALL_STATE(629)] = 24184, + [SMALL_STATE(630)] = 24227, + [SMALL_STATE(631)] = 24270, + [SMALL_STATE(632)] = 24313, + [SMALL_STATE(633)] = 24356, + [SMALL_STATE(634)] = 24399, + [SMALL_STATE(635)] = 24442, + [SMALL_STATE(636)] = 24485, + [SMALL_STATE(637)] = 24528, + [SMALL_STATE(638)] = 24571, + [SMALL_STATE(639)] = 24614, + [SMALL_STATE(640)] = 24661, + [SMALL_STATE(641)] = 24704, + [SMALL_STATE(642)] = 24747, + [SMALL_STATE(643)] = 24790, + [SMALL_STATE(644)] = 24837, + [SMALL_STATE(645)] = 24880, + [SMALL_STATE(646)] = 24927, + [SMALL_STATE(647)] = 24970, + [SMALL_STATE(648)] = 25013, + [SMALL_STATE(649)] = 25056, + [SMALL_STATE(650)] = 25099, + [SMALL_STATE(651)] = 25142, + [SMALL_STATE(652)] = 25189, + [SMALL_STATE(653)] = 25232, + [SMALL_STATE(654)] = 25275, + [SMALL_STATE(655)] = 25318, + [SMALL_STATE(656)] = 25361, + [SMALL_STATE(657)] = 25404, + [SMALL_STATE(658)] = 25447, + [SMALL_STATE(659)] = 25490, + [SMALL_STATE(660)] = 25537, + [SMALL_STATE(661)] = 25580, + [SMALL_STATE(662)] = 25627, + [SMALL_STATE(663)] = 25670, + [SMALL_STATE(664)] = 25717, + [SMALL_STATE(665)] = 25764, + [SMALL_STATE(666)] = 25807, + [SMALL_STATE(667)] = 25850, + [SMALL_STATE(668)] = 25897, + [SMALL_STATE(669)] = 25940, + [SMALL_STATE(670)] = 25987, + [SMALL_STATE(671)] = 26030, + [SMALL_STATE(672)] = 26077, + [SMALL_STATE(673)] = 26120, + [SMALL_STATE(674)] = 26163, + [SMALL_STATE(675)] = 26206, + [SMALL_STATE(676)] = 26249, + [SMALL_STATE(677)] = 26292, + [SMALL_STATE(678)] = 26335, + [SMALL_STATE(679)] = 26378, + [SMALL_STATE(680)] = 26421, + [SMALL_STATE(681)] = 26464, + [SMALL_STATE(682)] = 26507, + [SMALL_STATE(683)] = 26550, + [SMALL_STATE(684)] = 26597, + [SMALL_STATE(685)] = 26640, + [SMALL_STATE(686)] = 26683, + [SMALL_STATE(687)] = 26726, + [SMALL_STATE(688)] = 26769, + [SMALL_STATE(689)] = 26822, + [SMALL_STATE(690)] = 26865, + [SMALL_STATE(691)] = 26908, + [SMALL_STATE(692)] = 26951, + [SMALL_STATE(693)] = 26994, + [SMALL_STATE(694)] = 27037, + [SMALL_STATE(695)] = 27080, + [SMALL_STATE(696)] = 27123, + [SMALL_STATE(697)] = 27166, + [SMALL_STATE(698)] = 27209, + [SMALL_STATE(699)] = 27252, + [SMALL_STATE(700)] = 27295, + [SMALL_STATE(701)] = 27338, + [SMALL_STATE(702)] = 27381, + [SMALL_STATE(703)] = 27424, + [SMALL_STATE(704)] = 27467, + [SMALL_STATE(705)] = 27510, + [SMALL_STATE(706)] = 27553, + [SMALL_STATE(707)] = 27596, + [SMALL_STATE(708)] = 27639, + [SMALL_STATE(709)] = 27682, + [SMALL_STATE(710)] = 27725, + [SMALL_STATE(711)] = 27768, + [SMALL_STATE(712)] = 27811, + [SMALL_STATE(713)] = 27854, + [SMALL_STATE(714)] = 27897, + [SMALL_STATE(715)] = 27940, + [SMALL_STATE(716)] = 27987, + [SMALL_STATE(717)] = 28030, + [SMALL_STATE(718)] = 28073, + [SMALL_STATE(719)] = 28116, + [SMALL_STATE(720)] = 28159, + [SMALL_STATE(721)] = 28202, + [SMALL_STATE(722)] = 28245, + [SMALL_STATE(723)] = 28288, + [SMALL_STATE(724)] = 28331, + [SMALL_STATE(725)] = 28374, + [SMALL_STATE(726)] = 28417, + [SMALL_STATE(727)] = 28460, + [SMALL_STATE(728)] = 28503, + [SMALL_STATE(729)] = 28546, + [SMALL_STATE(730)] = 28589, + [SMALL_STATE(731)] = 28632, + [SMALL_STATE(732)] = 28675, + [SMALL_STATE(733)] = 28718, + [SMALL_STATE(734)] = 28761, + [SMALL_STATE(735)] = 28808, + [SMALL_STATE(736)] = 28855, + [SMALL_STATE(737)] = 28898, + [SMALL_STATE(738)] = 28941, + [SMALL_STATE(739)] = 28984, + [SMALL_STATE(740)] = 29027, + [SMALL_STATE(741)] = 29070, + [SMALL_STATE(742)] = 29117, + [SMALL_STATE(743)] = 29160, + [SMALL_STATE(744)] = 29203, + [SMALL_STATE(745)] = 29246, + [SMALL_STATE(746)] = 29293, + [SMALL_STATE(747)] = 29336, + [SMALL_STATE(748)] = 29379, + [SMALL_STATE(749)] = 29422, + [SMALL_STATE(750)] = 29465, + [SMALL_STATE(751)] = 29507, + [SMALL_STATE(752)] = 29549, + [SMALL_STATE(753)] = 29591, + [SMALL_STATE(754)] = 29633, + [SMALL_STATE(755)] = 29679, + [SMALL_STATE(756)] = 29721, + [SMALL_STATE(757)] = 29763, + [SMALL_STATE(758)] = 29805, + [SMALL_STATE(759)] = 29847, + [SMALL_STATE(760)] = 29889, + [SMALL_STATE(761)] = 29931, + [SMALL_STATE(762)] = 29973, + [SMALL_STATE(763)] = 30015, + [SMALL_STATE(764)] = 30089, + [SMALL_STATE(765)] = 30131, + [SMALL_STATE(766)] = 30173, + [SMALL_STATE(767)] = 30215, + [SMALL_STATE(768)] = 30257, + [SMALL_STATE(769)] = 30299, + [SMALL_STATE(770)] = 30341, + [SMALL_STATE(771)] = 30383, + [SMALL_STATE(772)] = 30457, + [SMALL_STATE(773)] = 30499, + [SMALL_STATE(774)] = 30541, + [SMALL_STATE(775)] = 30583, + [SMALL_STATE(776)] = 30625, + [SMALL_STATE(777)] = 30667, + [SMALL_STATE(778)] = 30709, + [SMALL_STATE(779)] = 30751, + [SMALL_STATE(780)] = 30793, + [SMALL_STATE(781)] = 30835, + [SMALL_STATE(782)] = 30877, + [SMALL_STATE(783)] = 30919, + [SMALL_STATE(784)] = 30961, + [SMALL_STATE(785)] = 31003, + [SMALL_STATE(786)] = 31045, + [SMALL_STATE(787)] = 31087, + [SMALL_STATE(788)] = 31129, + [SMALL_STATE(789)] = 31171, + [SMALL_STATE(790)] = 31213, + [SMALL_STATE(791)] = 31255, + [SMALL_STATE(792)] = 31297, + [SMALL_STATE(793)] = 31339, + [SMALL_STATE(794)] = 31381, + [SMALL_STATE(795)] = 31427, + [SMALL_STATE(796)] = 31469, + [SMALL_STATE(797)] = 31511, + [SMALL_STATE(798)] = 31553, + [SMALL_STATE(799)] = 31595, + [SMALL_STATE(800)] = 31641, + [SMALL_STATE(801)] = 31683, + [SMALL_STATE(802)] = 31725, + [SMALL_STATE(803)] = 31771, + [SMALL_STATE(804)] = 31813, + [SMALL_STATE(805)] = 31855, + [SMALL_STATE(806)] = 31897, + [SMALL_STATE(807)] = 31939, + [SMALL_STATE(808)] = 31981, + [SMALL_STATE(809)] = 32023, + [SMALL_STATE(810)] = 32065, + [SMALL_STATE(811)] = 32107, + [SMALL_STATE(812)] = 32149, + [SMALL_STATE(813)] = 32191, + [SMALL_STATE(814)] = 32233, + [SMALL_STATE(815)] = 32275, + [SMALL_STATE(816)] = 32317, + [SMALL_STATE(817)] = 32391, + [SMALL_STATE(818)] = 32433, + [SMALL_STATE(819)] = 32475, + [SMALL_STATE(820)] = 32549, + [SMALL_STATE(821)] = 32595, + [SMALL_STATE(822)] = 32637, + [SMALL_STATE(823)] = 32679, + [SMALL_STATE(824)] = 32721, + [SMALL_STATE(825)] = 32763, + [SMALL_STATE(826)] = 32805, + [SMALL_STATE(827)] = 32847, + [SMALL_STATE(828)] = 32889, + [SMALL_STATE(829)] = 32941, + [SMALL_STATE(830)] = 32983, + [SMALL_STATE(831)] = 33025, + [SMALL_STATE(832)] = 33099, + [SMALL_STATE(833)] = 33141, + [SMALL_STATE(834)] = 33183, + [SMALL_STATE(835)] = 33225, + [SMALL_STATE(836)] = 33267, + [SMALL_STATE(837)] = 33309, + [SMALL_STATE(838)] = 33351, + [SMALL_STATE(839)] = 33393, + [SMALL_STATE(840)] = 33435, + [SMALL_STATE(841)] = 33477, + [SMALL_STATE(842)] = 33519, + [SMALL_STATE(843)] = 33561, + [SMALL_STATE(844)] = 33603, + [SMALL_STATE(845)] = 33645, + [SMALL_STATE(846)] = 33687, + [SMALL_STATE(847)] = 33729, + [SMALL_STATE(848)] = 33771, + [SMALL_STATE(849)] = 33817, + [SMALL_STATE(850)] = 33859, + [SMALL_STATE(851)] = 33901, + [SMALL_STATE(852)] = 33943, + [SMALL_STATE(853)] = 33985, + [SMALL_STATE(854)] = 34027, + [SMALL_STATE(855)] = 34069, + [SMALL_STATE(856)] = 34111, + [SMALL_STATE(857)] = 34153, + [SMALL_STATE(858)] = 34195, + [SMALL_STATE(859)] = 34237, + [SMALL_STATE(860)] = 34279, + [SMALL_STATE(861)] = 34321, + [SMALL_STATE(862)] = 34363, + [SMALL_STATE(863)] = 34405, + [SMALL_STATE(864)] = 34447, + [SMALL_STATE(865)] = 34493, + [SMALL_STATE(866)] = 34535, + [SMALL_STATE(867)] = 34577, + [SMALL_STATE(868)] = 34619, + [SMALL_STATE(869)] = 34661, + [SMALL_STATE(870)] = 34703, + [SMALL_STATE(871)] = 34749, + [SMALL_STATE(872)] = 34791, + [SMALL_STATE(873)] = 34833, + [SMALL_STATE(874)] = 34875, + [SMALL_STATE(875)] = 34917, + [SMALL_STATE(876)] = 34959, + [SMALL_STATE(877)] = 35001, + [SMALL_STATE(878)] = 35043, + [SMALL_STATE(879)] = 35085, + [SMALL_STATE(880)] = 35127, + [SMALL_STATE(881)] = 35169, + [SMALL_STATE(882)] = 35211, + [SMALL_STATE(883)] = 35253, + [SMALL_STATE(884)] = 35295, + [SMALL_STATE(885)] = 35337, + [SMALL_STATE(886)] = 35379, + [SMALL_STATE(887)] = 35421, + [SMALL_STATE(888)] = 35463, + [SMALL_STATE(889)] = 35505, + [SMALL_STATE(890)] = 35554, + [SMALL_STATE(891)] = 35595, + [SMALL_STATE(892)] = 35636, + [SMALL_STATE(893)] = 35677, + [SMALL_STATE(894)] = 35718, + [SMALL_STATE(895)] = 35759, + [SMALL_STATE(896)] = 35800, + [SMALL_STATE(897)] = 35841, + [SMALL_STATE(898)] = 35882, + [SMALL_STATE(899)] = 35923, + [SMALL_STATE(900)] = 35964, + [SMALL_STATE(901)] = 36030, + [SMALL_STATE(902)] = 36096, + [SMALL_STATE(903)] = 36162, + [SMALL_STATE(904)] = 36228, + [SMALL_STATE(905)] = 36280, + [SMALL_STATE(906)] = 36346, + [SMALL_STATE(907)] = 36412, + [SMALL_STATE(908)] = 36478, + [SMALL_STATE(909)] = 36528, + [SMALL_STATE(910)] = 36594, + [SMALL_STATE(911)] = 36660, + [SMALL_STATE(912)] = 36710, + [SMALL_STATE(913)] = 36760, + [SMALL_STATE(914)] = 36823, + [SMALL_STATE(915)] = 36884, + [SMALL_STATE(916)] = 36945, + [SMALL_STATE(917)] = 37006, + [SMALL_STATE(918)] = 37067, + [SMALL_STATE(919)] = 37128, + [SMALL_STATE(920)] = 37189, + [SMALL_STATE(921)] = 37250, + [SMALL_STATE(922)] = 37311, + [SMALL_STATE(923)] = 37372, + [SMALL_STATE(924)] = 37433, + [SMALL_STATE(925)] = 37494, + [SMALL_STATE(926)] = 37555, + [SMALL_STATE(927)] = 37616, + [SMALL_STATE(928)] = 37677, + [SMALL_STATE(929)] = 37738, + [SMALL_STATE(930)] = 37799, + [SMALL_STATE(931)] = 37860, + [SMALL_STATE(932)] = 37921, + [SMALL_STATE(933)] = 37982, + [SMALL_STATE(934)] = 38043, + [SMALL_STATE(935)] = 38106, + [SMALL_STATE(936)] = 38167, + [SMALL_STATE(937)] = 38228, + [SMALL_STATE(938)] = 38289, + [SMALL_STATE(939)] = 38350, + [SMALL_STATE(940)] = 38411, + [SMALL_STATE(941)] = 38472, + [SMALL_STATE(942)] = 38533, + [SMALL_STATE(943)] = 38594, + [SMALL_STATE(944)] = 38655, + [SMALL_STATE(945)] = 38716, + [SMALL_STATE(946)] = 38777, + [SMALL_STATE(947)] = 38838, + [SMALL_STATE(948)] = 38899, + [SMALL_STATE(949)] = 38960, + [SMALL_STATE(950)] = 39021, + [SMALL_STATE(951)] = 39082, + [SMALL_STATE(952)] = 39143, + [SMALL_STATE(953)] = 39204, + [SMALL_STATE(954)] = 39265, + [SMALL_STATE(955)] = 39326, + [SMALL_STATE(956)] = 39387, + [SMALL_STATE(957)] = 39448, + [SMALL_STATE(958)] = 39509, + [SMALL_STATE(959)] = 39570, + [SMALL_STATE(960)] = 39631, + [SMALL_STATE(961)] = 39692, + [SMALL_STATE(962)] = 39753, + [SMALL_STATE(963)] = 39814, + [SMALL_STATE(964)] = 39875, + [SMALL_STATE(965)] = 39936, + [SMALL_STATE(966)] = 39997, + [SMALL_STATE(967)] = 40058, + [SMALL_STATE(968)] = 40119, + [SMALL_STATE(969)] = 40180, + [SMALL_STATE(970)] = 40241, + [SMALL_STATE(971)] = 40302, + [SMALL_STATE(972)] = 40363, + [SMALL_STATE(973)] = 40424, + [SMALL_STATE(974)] = 40485, + [SMALL_STATE(975)] = 40546, + [SMALL_STATE(976)] = 40607, + [SMALL_STATE(977)] = 40668, + [SMALL_STATE(978)] = 40729, + [SMALL_STATE(979)] = 40790, + [SMALL_STATE(980)] = 40851, + [SMALL_STATE(981)] = 40912, + [SMALL_STATE(982)] = 40973, + [SMALL_STATE(983)] = 41034, + [SMALL_STATE(984)] = 41095, + [SMALL_STATE(985)] = 41156, + [SMALL_STATE(986)] = 41217, + [SMALL_STATE(987)] = 41278, + [SMALL_STATE(988)] = 41339, + [SMALL_STATE(989)] = 41400, + [SMALL_STATE(990)] = 41461, + [SMALL_STATE(991)] = 41522, + [SMALL_STATE(992)] = 41585, + [SMALL_STATE(993)] = 41646, + [SMALL_STATE(994)] = 41709, + [SMALL_STATE(995)] = 41772, + [SMALL_STATE(996)] = 41833, + [SMALL_STATE(997)] = 41894, + [SMALL_STATE(998)] = 41957, + [SMALL_STATE(999)] = 42018, + [SMALL_STATE(1000)] = 42079, + [SMALL_STATE(1001)] = 42140, + [SMALL_STATE(1002)] = 42201, + [SMALL_STATE(1003)] = 42262, + [SMALL_STATE(1004)] = 42323, + [SMALL_STATE(1005)] = 42384, + [SMALL_STATE(1006)] = 42445, + [SMALL_STATE(1007)] = 42506, + [SMALL_STATE(1008)] = 42567, + [SMALL_STATE(1009)] = 42628, + [SMALL_STATE(1010)] = 42689, + [SMALL_STATE(1011)] = 42750, + [SMALL_STATE(1012)] = 42811, + [SMALL_STATE(1013)] = 42872, + [SMALL_STATE(1014)] = 42933, + [SMALL_STATE(1015)] = 42994, + [SMALL_STATE(1016)] = 43055, + [SMALL_STATE(1017)] = 43118, + [SMALL_STATE(1018)] = 43181, + [SMALL_STATE(1019)] = 43244, + [SMALL_STATE(1020)] = 43305, + [SMALL_STATE(1021)] = 43366, + [SMALL_STATE(1022)] = 43429, + [SMALL_STATE(1023)] = 43490, + [SMALL_STATE(1024)] = 43551, + [SMALL_STATE(1025)] = 43614, + [SMALL_STATE(1026)] = 43675, + [SMALL_STATE(1027)] = 43736, + [SMALL_STATE(1028)] = 43797, + [SMALL_STATE(1029)] = 43858, + [SMALL_STATE(1030)] = 43919, + [SMALL_STATE(1031)] = 43980, + [SMALL_STATE(1032)] = 44041, + [SMALL_STATE(1033)] = 44102, + [SMALL_STATE(1034)] = 44163, + [SMALL_STATE(1035)] = 44224, + [SMALL_STATE(1036)] = 44285, + [SMALL_STATE(1037)] = 44346, + [SMALL_STATE(1038)] = 44407, + [SMALL_STATE(1039)] = 44468, + [SMALL_STATE(1040)] = 44529, + [SMALL_STATE(1041)] = 44590, + [SMALL_STATE(1042)] = 44653, + [SMALL_STATE(1043)] = 44714, + [SMALL_STATE(1044)] = 44775, + [SMALL_STATE(1045)] = 44836, + [SMALL_STATE(1046)] = 44897, + [SMALL_STATE(1047)] = 44958, + [SMALL_STATE(1048)] = 45019, + [SMALL_STATE(1049)] = 45080, + [SMALL_STATE(1050)] = 45141, + [SMALL_STATE(1051)] = 45202, + [SMALL_STATE(1052)] = 45263, + [SMALL_STATE(1053)] = 45324, + [SMALL_STATE(1054)] = 45385, + [SMALL_STATE(1055)] = 45446, + [SMALL_STATE(1056)] = 45507, + [SMALL_STATE(1057)] = 45568, + [SMALL_STATE(1058)] = 45629, + [SMALL_STATE(1059)] = 45690, + [SMALL_STATE(1060)] = 45751, + [SMALL_STATE(1061)] = 45812, + [SMALL_STATE(1062)] = 45873, + [SMALL_STATE(1063)] = 45934, + [SMALL_STATE(1064)] = 45995, + [SMALL_STATE(1065)] = 46056, + [SMALL_STATE(1066)] = 46117, + [SMALL_STATE(1067)] = 46178, + [SMALL_STATE(1068)] = 46239, + [SMALL_STATE(1069)] = 46300, + [SMALL_STATE(1070)] = 46361, + [SMALL_STATE(1071)] = 46422, + [SMALL_STATE(1072)] = 46483, + [SMALL_STATE(1073)] = 46544, + [SMALL_STATE(1074)] = 46605, + [SMALL_STATE(1075)] = 46666, + [SMALL_STATE(1076)] = 46727, + [SMALL_STATE(1077)] = 46788, + [SMALL_STATE(1078)] = 46849, + [SMALL_STATE(1079)] = 46910, + [SMALL_STATE(1080)] = 46971, + [SMALL_STATE(1081)] = 47032, + [SMALL_STATE(1082)] = 47093, + [SMALL_STATE(1083)] = 47154, + [SMALL_STATE(1084)] = 47215, + [SMALL_STATE(1085)] = 47276, + [SMALL_STATE(1086)] = 47337, + [SMALL_STATE(1087)] = 47398, + [SMALL_STATE(1088)] = 47459, + [SMALL_STATE(1089)] = 47520, + [SMALL_STATE(1090)] = 47581, + [SMALL_STATE(1091)] = 47642, + [SMALL_STATE(1092)] = 47703, + [SMALL_STATE(1093)] = 47764, + [SMALL_STATE(1094)] = 47825, + [SMALL_STATE(1095)] = 47886, + [SMALL_STATE(1096)] = 47947, + [SMALL_STATE(1097)] = 48008, + [SMALL_STATE(1098)] = 48071, + [SMALL_STATE(1099)] = 48132, + [SMALL_STATE(1100)] = 48193, + [SMALL_STATE(1101)] = 48254, + [SMALL_STATE(1102)] = 48317, + [SMALL_STATE(1103)] = 48380, + [SMALL_STATE(1104)] = 48441, + [SMALL_STATE(1105)] = 48502, + [SMALL_STATE(1106)] = 48563, + [SMALL_STATE(1107)] = 48624, + [SMALL_STATE(1108)] = 48685, + [SMALL_STATE(1109)] = 48746, + [SMALL_STATE(1110)] = 48807, + [SMALL_STATE(1111)] = 48868, + [SMALL_STATE(1112)] = 48929, + [SMALL_STATE(1113)] = 48990, + [SMALL_STATE(1114)] = 49051, + [SMALL_STATE(1115)] = 49112, + [SMALL_STATE(1116)] = 49173, + [SMALL_STATE(1117)] = 49234, + [SMALL_STATE(1118)] = 49295, + [SMALL_STATE(1119)] = 49356, + [SMALL_STATE(1120)] = 49417, + [SMALL_STATE(1121)] = 49478, + [SMALL_STATE(1122)] = 49539, + [SMALL_STATE(1123)] = 49600, + [SMALL_STATE(1124)] = 49661, + [SMALL_STATE(1125)] = 49722, + [SMALL_STATE(1126)] = 49783, + [SMALL_STATE(1127)] = 49846, + [SMALL_STATE(1128)] = 49907, + [SMALL_STATE(1129)] = 49968, + [SMALL_STATE(1130)] = 50029, + [SMALL_STATE(1131)] = 50090, + [SMALL_STATE(1132)] = 50151, + [SMALL_STATE(1133)] = 50212, + [SMALL_STATE(1134)] = 50273, + [SMALL_STATE(1135)] = 50334, + [SMALL_STATE(1136)] = 50395, + [SMALL_STATE(1137)] = 50456, + [SMALL_STATE(1138)] = 50517, + [SMALL_STATE(1139)] = 50578, + [SMALL_STATE(1140)] = 50639, + [SMALL_STATE(1141)] = 50700, + [SMALL_STATE(1142)] = 50761, + [SMALL_STATE(1143)] = 50822, + [SMALL_STATE(1144)] = 50883, + [SMALL_STATE(1145)] = 50944, + [SMALL_STATE(1146)] = 51005, + [SMALL_STATE(1147)] = 51066, + [SMALL_STATE(1148)] = 51127, + [SMALL_STATE(1149)] = 51188, + [SMALL_STATE(1150)] = 51249, + [SMALL_STATE(1151)] = 51310, + [SMALL_STATE(1152)] = 51371, + [SMALL_STATE(1153)] = 51432, + [SMALL_STATE(1154)] = 51493, + [SMALL_STATE(1155)] = 51554, + [SMALL_STATE(1156)] = 51615, + [SMALL_STATE(1157)] = 51676, + [SMALL_STATE(1158)] = 51737, + [SMALL_STATE(1159)] = 51798, + [SMALL_STATE(1160)] = 51859, + [SMALL_STATE(1161)] = 51920, + [SMALL_STATE(1162)] = 51981, + [SMALL_STATE(1163)] = 52042, + [SMALL_STATE(1164)] = 52103, + [SMALL_STATE(1165)] = 52164, + [SMALL_STATE(1166)] = 52225, + [SMALL_STATE(1167)] = 52286, + [SMALL_STATE(1168)] = 52347, + [SMALL_STATE(1169)] = 52408, + [SMALL_STATE(1170)] = 52469, + [SMALL_STATE(1171)] = 52530, + [SMALL_STATE(1172)] = 52591, + [SMALL_STATE(1173)] = 52652, + [SMALL_STATE(1174)] = 52715, + [SMALL_STATE(1175)] = 52776, + [SMALL_STATE(1176)] = 52837, + [SMALL_STATE(1177)] = 52898, + [SMALL_STATE(1178)] = 52959, + [SMALL_STATE(1179)] = 53017, + [SMALL_STATE(1180)] = 53075, + [SMALL_STATE(1181)] = 53133, + [SMALL_STATE(1182)] = 53191, + [SMALL_STATE(1183)] = 53249, + [SMALL_STATE(1184)] = 53307, + [SMALL_STATE(1185)] = 53365, + [SMALL_STATE(1186)] = 53423, + [SMALL_STATE(1187)] = 53481, + [SMALL_STATE(1188)] = 53539, + [SMALL_STATE(1189)] = 53597, + [SMALL_STATE(1190)] = 53655, + [SMALL_STATE(1191)] = 53713, + [SMALL_STATE(1192)] = 53771, + [SMALL_STATE(1193)] = 53829, + [SMALL_STATE(1194)] = 53887, + [SMALL_STATE(1195)] = 53945, + [SMALL_STATE(1196)] = 54003, + [SMALL_STATE(1197)] = 54063, + [SMALL_STATE(1198)] = 54121, + [SMALL_STATE(1199)] = 54179, + [SMALL_STATE(1200)] = 54237, + [SMALL_STATE(1201)] = 54295, + [SMALL_STATE(1202)] = 54353, + [SMALL_STATE(1203)] = 54411, + [SMALL_STATE(1204)] = 54469, + [SMALL_STATE(1205)] = 54527, + [SMALL_STATE(1206)] = 54585, + [SMALL_STATE(1207)] = 54643, + [SMALL_STATE(1208)] = 54701, + [SMALL_STATE(1209)] = 54759, + [SMALL_STATE(1210)] = 54817, + [SMALL_STATE(1211)] = 54875, + [SMALL_STATE(1212)] = 54933, + [SMALL_STATE(1213)] = 54991, + [SMALL_STATE(1214)] = 55049, + [SMALL_STATE(1215)] = 55107, + [SMALL_STATE(1216)] = 55165, + [SMALL_STATE(1217)] = 55223, + [SMALL_STATE(1218)] = 55281, + [SMALL_STATE(1219)] = 55339, + [SMALL_STATE(1220)] = 55397, + [SMALL_STATE(1221)] = 55455, + [SMALL_STATE(1222)] = 55513, + [SMALL_STATE(1223)] = 55571, + [SMALL_STATE(1224)] = 55629, + [SMALL_STATE(1225)] = 55687, + [SMALL_STATE(1226)] = 55745, + [SMALL_STATE(1227)] = 55803, + [SMALL_STATE(1228)] = 55861, + [SMALL_STATE(1229)] = 55919, + [SMALL_STATE(1230)] = 55977, + [SMALL_STATE(1231)] = 56035, + [SMALL_STATE(1232)] = 56093, + [SMALL_STATE(1233)] = 56151, + [SMALL_STATE(1234)] = 56209, + [SMALL_STATE(1235)] = 56267, + [SMALL_STATE(1236)] = 56325, + [SMALL_STATE(1237)] = 56383, + [SMALL_STATE(1238)] = 56441, + [SMALL_STATE(1239)] = 56499, + [SMALL_STATE(1240)] = 56557, + [SMALL_STATE(1241)] = 56615, + [SMALL_STATE(1242)] = 56673, + [SMALL_STATE(1243)] = 56731, + [SMALL_STATE(1244)] = 56789, + [SMALL_STATE(1245)] = 56847, + [SMALL_STATE(1246)] = 56905, + [SMALL_STATE(1247)] = 56963, + [SMALL_STATE(1248)] = 57021, + [SMALL_STATE(1249)] = 57079, + [SMALL_STATE(1250)] = 57137, + [SMALL_STATE(1251)] = 57195, + [SMALL_STATE(1252)] = 57253, + [SMALL_STATE(1253)] = 57311, + [SMALL_STATE(1254)] = 57369, + [SMALL_STATE(1255)] = 57427, + [SMALL_STATE(1256)] = 57485, + [SMALL_STATE(1257)] = 57543, + [SMALL_STATE(1258)] = 57601, + [SMALL_STATE(1259)] = 57659, + [SMALL_STATE(1260)] = 57717, + [SMALL_STATE(1261)] = 57775, + [SMALL_STATE(1262)] = 57833, + [SMALL_STATE(1263)] = 57891, + [SMALL_STATE(1264)] = 57949, + [SMALL_STATE(1265)] = 58007, + [SMALL_STATE(1266)] = 58065, + [SMALL_STATE(1267)] = 58123, + [SMALL_STATE(1268)] = 58181, + [SMALL_STATE(1269)] = 58239, + [SMALL_STATE(1270)] = 58297, + [SMALL_STATE(1271)] = 58355, + [SMALL_STATE(1272)] = 58413, + [SMALL_STATE(1273)] = 58471, + [SMALL_STATE(1274)] = 58529, + [SMALL_STATE(1275)] = 58587, + [SMALL_STATE(1276)] = 58645, + [SMALL_STATE(1277)] = 58703, + [SMALL_STATE(1278)] = 58761, + [SMALL_STATE(1279)] = 58819, + [SMALL_STATE(1280)] = 58877, + [SMALL_STATE(1281)] = 58937, + [SMALL_STATE(1282)] = 58995, + [SMALL_STATE(1283)] = 59053, + [SMALL_STATE(1284)] = 59111, + [SMALL_STATE(1285)] = 59169, + [SMALL_STATE(1286)] = 59227, + [SMALL_STATE(1287)] = 59285, + [SMALL_STATE(1288)] = 59343, + [SMALL_STATE(1289)] = 59401, + [SMALL_STATE(1290)] = 59459, + [SMALL_STATE(1291)] = 59517, + [SMALL_STATE(1292)] = 59575, + [SMALL_STATE(1293)] = 59633, + [SMALL_STATE(1294)] = 59691, + [SMALL_STATE(1295)] = 59749, + [SMALL_STATE(1296)] = 59807, + [SMALL_STATE(1297)] = 59865, + [SMALL_STATE(1298)] = 59923, + [SMALL_STATE(1299)] = 59981, + [SMALL_STATE(1300)] = 60039, + [SMALL_STATE(1301)] = 60097, + [SMALL_STATE(1302)] = 60155, + [SMALL_STATE(1303)] = 60213, + [SMALL_STATE(1304)] = 60273, + [SMALL_STATE(1305)] = 60333, + [SMALL_STATE(1306)] = 60391, + [SMALL_STATE(1307)] = 60449, + [SMALL_STATE(1308)] = 60507, + [SMALL_STATE(1309)] = 60565, + [SMALL_STATE(1310)] = 60623, + [SMALL_STATE(1311)] = 60681, + [SMALL_STATE(1312)] = 60739, + [SMALL_STATE(1313)] = 60797, + [SMALL_STATE(1314)] = 60855, + [SMALL_STATE(1315)] = 60913, + [SMALL_STATE(1316)] = 60971, + [SMALL_STATE(1317)] = 61029, + [SMALL_STATE(1318)] = 61087, + [SMALL_STATE(1319)] = 61145, + [SMALL_STATE(1320)] = 61203, + [SMALL_STATE(1321)] = 61261, + [SMALL_STATE(1322)] = 61319, + [SMALL_STATE(1323)] = 61377, + [SMALL_STATE(1324)] = 61435, + [SMALL_STATE(1325)] = 61493, + [SMALL_STATE(1326)] = 61551, + [SMALL_STATE(1327)] = 61609, + [SMALL_STATE(1328)] = 61667, + [SMALL_STATE(1329)] = 61725, + [SMALL_STATE(1330)] = 61783, + [SMALL_STATE(1331)] = 61841, + [SMALL_STATE(1332)] = 61899, + [SMALL_STATE(1333)] = 61957, + [SMALL_STATE(1334)] = 62015, + [SMALL_STATE(1335)] = 62073, + [SMALL_STATE(1336)] = 62131, + [SMALL_STATE(1337)] = 62189, + [SMALL_STATE(1338)] = 62247, + [SMALL_STATE(1339)] = 62305, + [SMALL_STATE(1340)] = 62363, + [SMALL_STATE(1341)] = 62421, + [SMALL_STATE(1342)] = 62479, + [SMALL_STATE(1343)] = 62537, + [SMALL_STATE(1344)] = 62595, + [SMALL_STATE(1345)] = 62653, + [SMALL_STATE(1346)] = 62711, + [SMALL_STATE(1347)] = 62769, + [SMALL_STATE(1348)] = 62827, + [SMALL_STATE(1349)] = 62885, + [SMALL_STATE(1350)] = 62943, + [SMALL_STATE(1351)] = 63001, + [SMALL_STATE(1352)] = 63059, + [SMALL_STATE(1353)] = 63117, + [SMALL_STATE(1354)] = 63175, + [SMALL_STATE(1355)] = 63233, + [SMALL_STATE(1356)] = 63291, + [SMALL_STATE(1357)] = 63349, + [SMALL_STATE(1358)] = 63407, + [SMALL_STATE(1359)] = 63465, + [SMALL_STATE(1360)] = 63523, + [SMALL_STATE(1361)] = 63581, + [SMALL_STATE(1362)] = 63639, + [SMALL_STATE(1363)] = 63697, + [SMALL_STATE(1364)] = 63757, + [SMALL_STATE(1365)] = 63815, + [SMALL_STATE(1366)] = 63875, + [SMALL_STATE(1367)] = 63933, + [SMALL_STATE(1368)] = 63991, + [SMALL_STATE(1369)] = 64049, + [SMALL_STATE(1370)] = 64107, + [SMALL_STATE(1371)] = 64165, + [SMALL_STATE(1372)] = 64223, + [SMALL_STATE(1373)] = 64283, + [SMALL_STATE(1374)] = 64343, + [SMALL_STATE(1375)] = 64403, + [SMALL_STATE(1376)] = 64461, + [SMALL_STATE(1377)] = 64519, + [SMALL_STATE(1378)] = 64577, + [SMALL_STATE(1379)] = 64635, + [SMALL_STATE(1380)] = 64693, + [SMALL_STATE(1381)] = 64751, + [SMALL_STATE(1382)] = 64809, + [SMALL_STATE(1383)] = 64867, + [SMALL_STATE(1384)] = 64925, + [SMALL_STATE(1385)] = 64983, + [SMALL_STATE(1386)] = 65041, + [SMALL_STATE(1387)] = 65099, + [SMALL_STATE(1388)] = 65157, + [SMALL_STATE(1389)] = 65215, + [SMALL_STATE(1390)] = 65273, + [SMALL_STATE(1391)] = 65331, + [SMALL_STATE(1392)] = 65389, + [SMALL_STATE(1393)] = 65447, + [SMALL_STATE(1394)] = 65505, + [SMALL_STATE(1395)] = 65563, + [SMALL_STATE(1396)] = 65621, + [SMALL_STATE(1397)] = 65679, + [SMALL_STATE(1398)] = 65737, + [SMALL_STATE(1399)] = 65795, + [SMALL_STATE(1400)] = 65853, + [SMALL_STATE(1401)] = 65911, + [SMALL_STATE(1402)] = 65969, + [SMALL_STATE(1403)] = 66027, + [SMALL_STATE(1404)] = 66085, + [SMALL_STATE(1405)] = 66143, + [SMALL_STATE(1406)] = 66201, + [SMALL_STATE(1407)] = 66259, + [SMALL_STATE(1408)] = 66317, + [SMALL_STATE(1409)] = 66375, + [SMALL_STATE(1410)] = 66433, + [SMALL_STATE(1411)] = 66493, + [SMALL_STATE(1412)] = 66551, + [SMALL_STATE(1413)] = 66609, + [SMALL_STATE(1414)] = 66667, + [SMALL_STATE(1415)] = 66725, + [SMALL_STATE(1416)] = 66783, + [SMALL_STATE(1417)] = 66841, + [SMALL_STATE(1418)] = 66899, + [SMALL_STATE(1419)] = 66957, + [SMALL_STATE(1420)] = 67015, + [SMALL_STATE(1421)] = 67073, + [SMALL_STATE(1422)] = 67131, + [SMALL_STATE(1423)] = 67189, + [SMALL_STATE(1424)] = 67247, + [SMALL_STATE(1425)] = 67305, + [SMALL_STATE(1426)] = 67363, + [SMALL_STATE(1427)] = 67421, + [SMALL_STATE(1428)] = 67479, + [SMALL_STATE(1429)] = 67537, + [SMALL_STATE(1430)] = 67595, + [SMALL_STATE(1431)] = 67653, + [SMALL_STATE(1432)] = 67711, + [SMALL_STATE(1433)] = 67769, + [SMALL_STATE(1434)] = 67827, + [SMALL_STATE(1435)] = 67885, + [SMALL_STATE(1436)] = 67943, + [SMALL_STATE(1437)] = 68001, + [SMALL_STATE(1438)] = 68059, + [SMALL_STATE(1439)] = 68117, + [SMALL_STATE(1440)] = 68175, + [SMALL_STATE(1441)] = 68233, + [SMALL_STATE(1442)] = 68291, + [SMALL_STATE(1443)] = 68349, + [SMALL_STATE(1444)] = 68407, + [SMALL_STATE(1445)] = 68465, + [SMALL_STATE(1446)] = 68523, + [SMALL_STATE(1447)] = 68581, + [SMALL_STATE(1448)] = 68639, + [SMALL_STATE(1449)] = 68697, + [SMALL_STATE(1450)] = 68755, + [SMALL_STATE(1451)] = 68813, + [SMALL_STATE(1452)] = 68871, + [SMALL_STATE(1453)] = 68929, + [SMALL_STATE(1454)] = 68987, + [SMALL_STATE(1455)] = 69045, + [SMALL_STATE(1456)] = 69103, + [SMALL_STATE(1457)] = 69163, + [SMALL_STATE(1458)] = 69221, + [SMALL_STATE(1459)] = 69279, + [SMALL_STATE(1460)] = 69337, + [SMALL_STATE(1461)] = 69395, + [SMALL_STATE(1462)] = 69453, + [SMALL_STATE(1463)] = 69511, + [SMALL_STATE(1464)] = 69571, + [SMALL_STATE(1465)] = 69629, + [SMALL_STATE(1466)] = 69687, + [SMALL_STATE(1467)] = 69745, + [SMALL_STATE(1468)] = 69803, + [SMALL_STATE(1469)] = 69861, + [SMALL_STATE(1470)] = 69919, + [SMALL_STATE(1471)] = 69977, + [SMALL_STATE(1472)] = 70035, + [SMALL_STATE(1473)] = 70095, + [SMALL_STATE(1474)] = 70153, + [SMALL_STATE(1475)] = 70211, + [SMALL_STATE(1476)] = 70269, + [SMALL_STATE(1477)] = 70327, + [SMALL_STATE(1478)] = 70385, + [SMALL_STATE(1479)] = 70443, + [SMALL_STATE(1480)] = 70501, + [SMALL_STATE(1481)] = 70559, + [SMALL_STATE(1482)] = 70617, + [SMALL_STATE(1483)] = 70675, + [SMALL_STATE(1484)] = 70733, + [SMALL_STATE(1485)] = 70791, + [SMALL_STATE(1486)] = 70849, + [SMALL_STATE(1487)] = 70907, + [SMALL_STATE(1488)] = 70965, + [SMALL_STATE(1489)] = 71023, + [SMALL_STATE(1490)] = 71081, + [SMALL_STATE(1491)] = 71139, + [SMALL_STATE(1492)] = 71197, + [SMALL_STATE(1493)] = 71255, + [SMALL_STATE(1494)] = 71313, + [SMALL_STATE(1495)] = 71371, + [SMALL_STATE(1496)] = 71429, + [SMALL_STATE(1497)] = 71487, + [SMALL_STATE(1498)] = 71545, + [SMALL_STATE(1499)] = 71603, + [SMALL_STATE(1500)] = 71661, + [SMALL_STATE(1501)] = 71719, + [SMALL_STATE(1502)] = 71777, + [SMALL_STATE(1503)] = 71835, + [SMALL_STATE(1504)] = 71893, + [SMALL_STATE(1505)] = 71951, + [SMALL_STATE(1506)] = 72009, + [SMALL_STATE(1507)] = 72067, + [SMALL_STATE(1508)] = 72125, + [SMALL_STATE(1509)] = 72183, + [SMALL_STATE(1510)] = 72241, + [SMALL_STATE(1511)] = 72299, + [SMALL_STATE(1512)] = 72357, + [SMALL_STATE(1513)] = 72415, + [SMALL_STATE(1514)] = 72473, + [SMALL_STATE(1515)] = 72531, + [SMALL_STATE(1516)] = 72589, + [SMALL_STATE(1517)] = 72647, + [SMALL_STATE(1518)] = 72705, + [SMALL_STATE(1519)] = 72763, + [SMALL_STATE(1520)] = 72821, + [SMALL_STATE(1521)] = 72879, + [SMALL_STATE(1522)] = 72937, + [SMALL_STATE(1523)] = 72995, + [SMALL_STATE(1524)] = 73053, + [SMALL_STATE(1525)] = 73111, + [SMALL_STATE(1526)] = 73171, + [SMALL_STATE(1527)] = 73229, + [SMALL_STATE(1528)] = 73287, + [SMALL_STATE(1529)] = 73345, + [SMALL_STATE(1530)] = 73405, + [SMALL_STATE(1531)] = 73463, + [SMALL_STATE(1532)] = 73523, + [SMALL_STATE(1533)] = 73581, + [SMALL_STATE(1534)] = 73639, + [SMALL_STATE(1535)] = 73699, + [SMALL_STATE(1536)] = 73759, + [SMALL_STATE(1537)] = 73817, + [SMALL_STATE(1538)] = 73875, + [SMALL_STATE(1539)] = 73935, + [SMALL_STATE(1540)] = 73995, + [SMALL_STATE(1541)] = 74053, + [SMALL_STATE(1542)] = 74111, + [SMALL_STATE(1543)] = 74169, + [SMALL_STATE(1544)] = 74227, + [SMALL_STATE(1545)] = 74285, + [SMALL_STATE(1546)] = 74345, + [SMALL_STATE(1547)] = 74403, + [SMALL_STATE(1548)] = 74461, + [SMALL_STATE(1549)] = 74521, + [SMALL_STATE(1550)] = 74579, + [SMALL_STATE(1551)] = 74637, + [SMALL_STATE(1552)] = 74695, + [SMALL_STATE(1553)] = 74753, + [SMALL_STATE(1554)] = 74811, + [SMALL_STATE(1555)] = 74869, + [SMALL_STATE(1556)] = 74927, + [SMALL_STATE(1557)] = 74985, + [SMALL_STATE(1558)] = 75043, + [SMALL_STATE(1559)] = 75101, + [SMALL_STATE(1560)] = 75159, + [SMALL_STATE(1561)] = 75217, + [SMALL_STATE(1562)] = 75275, + [SMALL_STATE(1563)] = 75333, + [SMALL_STATE(1564)] = 75391, + [SMALL_STATE(1565)] = 75449, + [SMALL_STATE(1566)] = 75507, + [SMALL_STATE(1567)] = 75565, + [SMALL_STATE(1568)] = 75623, + [SMALL_STATE(1569)] = 75681, + [SMALL_STATE(1570)] = 75739, + [SMALL_STATE(1571)] = 75797, + [SMALL_STATE(1572)] = 75857, + [SMALL_STATE(1573)] = 75915, + [SMALL_STATE(1574)] = 75973, + [SMALL_STATE(1575)] = 76031, + [SMALL_STATE(1576)] = 76089, + [SMALL_STATE(1577)] = 76147, + [SMALL_STATE(1578)] = 76207, + [SMALL_STATE(1579)] = 76265, + [SMALL_STATE(1580)] = 76323, + [SMALL_STATE(1581)] = 76381, + [SMALL_STATE(1582)] = 76439, + [SMALL_STATE(1583)] = 76497, + [SMALL_STATE(1584)] = 76555, + [SMALL_STATE(1585)] = 76615, + [SMALL_STATE(1586)] = 76673, + [SMALL_STATE(1587)] = 76731, + [SMALL_STATE(1588)] = 76789, + [SMALL_STATE(1589)] = 76847, + [SMALL_STATE(1590)] = 76905, + [SMALL_STATE(1591)] = 76963, + [SMALL_STATE(1592)] = 77021, + [SMALL_STATE(1593)] = 77079, + [SMALL_STATE(1594)] = 77137, + [SMALL_STATE(1595)] = 77195, + [SMALL_STATE(1596)] = 77253, + [SMALL_STATE(1597)] = 77311, + [SMALL_STATE(1598)] = 77369, + [SMALL_STATE(1599)] = 77427, + [SMALL_STATE(1600)] = 77485, + [SMALL_STATE(1601)] = 77543, + [SMALL_STATE(1602)] = 77601, + [SMALL_STATE(1603)] = 77659, + [SMALL_STATE(1604)] = 77717, + [SMALL_STATE(1605)] = 77775, + [SMALL_STATE(1606)] = 77833, + [SMALL_STATE(1607)] = 77893, + [SMALL_STATE(1608)] = 77951, + [SMALL_STATE(1609)] = 78011, + [SMALL_STATE(1610)] = 78071, + [SMALL_STATE(1611)] = 78129, + [SMALL_STATE(1612)] = 78189, + [SMALL_STATE(1613)] = 78247, + [SMALL_STATE(1614)] = 78305, + [SMALL_STATE(1615)] = 78365, + [SMALL_STATE(1616)] = 78423, + [SMALL_STATE(1617)] = 78481, + [SMALL_STATE(1618)] = 78539, + [SMALL_STATE(1619)] = 78597, + [SMALL_STATE(1620)] = 78655, + [SMALL_STATE(1621)] = 78713, + [SMALL_STATE(1622)] = 78771, + [SMALL_STATE(1623)] = 78829, + [SMALL_STATE(1624)] = 78887, + [SMALL_STATE(1625)] = 78947, + [SMALL_STATE(1626)] = 79005, + [SMALL_STATE(1627)] = 79063, + [SMALL_STATE(1628)] = 79121, + [SMALL_STATE(1629)] = 79179, + [SMALL_STATE(1630)] = 79237, + [SMALL_STATE(1631)] = 79295, + [SMALL_STATE(1632)] = 79353, + [SMALL_STATE(1633)] = 79413, + [SMALL_STATE(1634)] = 79471, + [SMALL_STATE(1635)] = 79531, + [SMALL_STATE(1636)] = 79589, + [SMALL_STATE(1637)] = 79647, + [SMALL_STATE(1638)] = 79705, + [SMALL_STATE(1639)] = 79763, + [SMALL_STATE(1640)] = 79821, + [SMALL_STATE(1641)] = 79879, + [SMALL_STATE(1642)] = 79937, + [SMALL_STATE(1643)] = 79995, + [SMALL_STATE(1644)] = 80053, + [SMALL_STATE(1645)] = 80111, + [SMALL_STATE(1646)] = 80169, + [SMALL_STATE(1647)] = 80212, + [SMALL_STATE(1648)] = 80257, + [SMALL_STATE(1649)] = 80294, + [SMALL_STATE(1650)] = 80333, + [SMALL_STATE(1651)] = 80378, + [SMALL_STATE(1652)] = 80429, + [SMALL_STATE(1653)] = 80480, + [SMALL_STATE(1654)] = 80530, + [SMALL_STATE(1655)] = 80574, + [SMALL_STATE(1656)] = 80624, + [SMALL_STATE(1657)] = 80662, + [SMALL_STATE(1658)] = 80706, + [SMALL_STATE(1659)] = 80750, + [SMALL_STATE(1660)] = 80788, + [SMALL_STATE(1661)] = 80832, + [SMALL_STATE(1662)] = 80868, + [SMALL_STATE(1663)] = 80904, + [SMALL_STATE(1664)] = 80941, + [SMALL_STATE(1665)] = 80978, + [SMALL_STATE(1666)] = 81015, + [SMALL_STATE(1667)] = 81058, + [SMALL_STATE(1668)] = 81095, + [SMALL_STATE(1669)] = 81144, + [SMALL_STATE(1670)] = 81187, + [SMALL_STATE(1671)] = 81230, + [SMALL_STATE(1672)] = 81279, + [SMALL_STATE(1673)] = 81314, + [SMALL_STATE(1674)] = 81351, + [SMALL_STATE(1675)] = 81386, + [SMALL_STATE(1676)] = 81427, + [SMALL_STATE(1677)] = 81464, + [SMALL_STATE(1678)] = 81501, + [SMALL_STATE(1679)] = 81538, + [SMALL_STATE(1680)] = 81575, + [SMALL_STATE(1681)] = 81624, + [SMALL_STATE(1682)] = 81661, + [SMALL_STATE(1683)] = 81698, + [SMALL_STATE(1684)] = 81735, + [SMALL_STATE(1685)] = 81772, + [SMALL_STATE(1686)] = 81821, + [SMALL_STATE(1687)] = 81870, + [SMALL_STATE(1688)] = 81919, + [SMALL_STATE(1689)] = 81956, + [SMALL_STATE(1690)] = 82002, + [SMALL_STATE(1691)] = 82038, + [SMALL_STATE(1692)] = 82070, + [SMALL_STATE(1693)] = 82122, + [SMALL_STATE(1694)] = 82158, + [SMALL_STATE(1695)] = 82190, + [SMALL_STATE(1696)] = 82242, + [SMALL_STATE(1697)] = 82278, + [SMALL_STATE(1698)] = 82314, + [SMALL_STATE(1699)] = 82360, + [SMALL_STATE(1700)] = 82392, + [SMALL_STATE(1701)] = 82424, + [SMALL_STATE(1702)] = 82460, + [SMALL_STATE(1703)] = 82492, + [SMALL_STATE(1704)] = 82524, + [SMALL_STATE(1705)] = 82570, + [SMALL_STATE(1706)] = 82616, + [SMALL_STATE(1707)] = 82648, + [SMALL_STATE(1708)] = 82700, + [SMALL_STATE(1709)] = 82732, + [SMALL_STATE(1710)] = 82764, + [SMALL_STATE(1711)] = 82796, + [SMALL_STATE(1712)] = 82832, + [SMALL_STATE(1713)] = 82864, + [SMALL_STATE(1714)] = 82896, + [SMALL_STATE(1715)] = 82932, + [SMALL_STATE(1716)] = 82968, + [SMALL_STATE(1717)] = 83000, + [SMALL_STATE(1718)] = 83036, + [SMALL_STATE(1719)] = 83068, + [SMALL_STATE(1720)] = 83100, + [SMALL_STATE(1721)] = 83136, + [SMALL_STATE(1722)] = 83168, + [SMALL_STATE(1723)] = 83204, + [SMALL_STATE(1724)] = 83240, + [SMALL_STATE(1725)] = 83274, + [SMALL_STATE(1726)] = 83310, + [SMALL_STATE(1727)] = 83346, + [SMALL_STATE(1728)] = 83382, + [SMALL_STATE(1729)] = 83414, + [SMALL_STATE(1730)] = 83446, + [SMALL_STATE(1731)] = 83492, + [SMALL_STATE(1732)] = 83528, + [SMALL_STATE(1733)] = 83560, + [SMALL_STATE(1734)] = 83592, + [SMALL_STATE(1735)] = 83624, + [SMALL_STATE(1736)] = 83660, + [SMALL_STATE(1737)] = 83696, + [SMALL_STATE(1738)] = 83732, + [SMALL_STATE(1739)] = 83766, + [SMALL_STATE(1740)] = 83800, + [SMALL_STATE(1741)] = 83834, + [SMALL_STATE(1742)] = 83866, + [SMALL_STATE(1743)] = 83898, + [SMALL_STATE(1744)] = 83930, + [SMALL_STATE(1745)] = 83962, + [SMALL_STATE(1746)] = 83994, + [SMALL_STATE(1747)] = 84026, + [SMALL_STATE(1748)] = 84072, + [SMALL_STATE(1749)] = 84106, + [SMALL_STATE(1750)] = 84158, + [SMALL_STATE(1751)] = 84189, + [SMALL_STATE(1752)] = 84220, + [SMALL_STATE(1753)] = 84251, + [SMALL_STATE(1754)] = 84280, + [SMALL_STATE(1755)] = 84315, + [SMALL_STATE(1756)] = 84346, + [SMALL_STATE(1757)] = 84381, + [SMALL_STATE(1758)] = 84412, + [SMALL_STATE(1759)] = 84447, + [SMALL_STATE(1760)] = 84478, + [SMALL_STATE(1761)] = 84509, + [SMALL_STATE(1762)] = 84544, + [SMALL_STATE(1763)] = 84575, + [SMALL_STATE(1764)] = 84606, + [SMALL_STATE(1765)] = 84637, + [SMALL_STATE(1766)] = 84668, + [SMALL_STATE(1767)] = 84699, + [SMALL_STATE(1768)] = 84730, + [SMALL_STATE(1769)] = 84761, + [SMALL_STATE(1770)] = 84792, + [SMALL_STATE(1771)] = 84823, + [SMALL_STATE(1772)] = 84854, + [SMALL_STATE(1773)] = 84885, + [SMALL_STATE(1774)] = 84916, + [SMALL_STATE(1775)] = 84947, + [SMALL_STATE(1776)] = 84978, + [SMALL_STATE(1777)] = 85009, + [SMALL_STATE(1778)] = 85040, + [SMALL_STATE(1779)] = 85071, + [SMALL_STATE(1780)] = 85102, + [SMALL_STATE(1781)] = 85133, + [SMALL_STATE(1782)] = 85164, + [SMALL_STATE(1783)] = 85195, + [SMALL_STATE(1784)] = 85226, + [SMALL_STATE(1785)] = 85257, + [SMALL_STATE(1786)] = 85288, + [SMALL_STATE(1787)] = 85319, + [SMALL_STATE(1788)] = 85350, + [SMALL_STATE(1789)] = 85381, + [SMALL_STATE(1790)] = 85412, + [SMALL_STATE(1791)] = 85443, + [SMALL_STATE(1792)] = 85474, + [SMALL_STATE(1793)] = 85505, + [SMALL_STATE(1794)] = 85536, + [SMALL_STATE(1795)] = 85567, + [SMALL_STATE(1796)] = 85598, + [SMALL_STATE(1797)] = 85629, + [SMALL_STATE(1798)] = 85660, + [SMALL_STATE(1799)] = 85691, + [SMALL_STATE(1800)] = 85722, + [SMALL_STATE(1801)] = 85757, + [SMALL_STATE(1802)] = 85788, + [SMALL_STATE(1803)] = 85819, + [SMALL_STATE(1804)] = 85850, + [SMALL_STATE(1805)] = 85881, + [SMALL_STATE(1806)] = 85912, + [SMALL_STATE(1807)] = 85943, + [SMALL_STATE(1808)] = 85978, + [SMALL_STATE(1809)] = 86009, + [SMALL_STATE(1810)] = 86044, + [SMALL_STATE(1811)] = 86075, + [SMALL_STATE(1812)] = 86106, + [SMALL_STATE(1813)] = 86141, + [SMALL_STATE(1814)] = 86172, + [SMALL_STATE(1815)] = 86203, + [SMALL_STATE(1816)] = 86234, + [SMALL_STATE(1817)] = 86265, + [SMALL_STATE(1818)] = 86296, + [SMALL_STATE(1819)] = 86327, + [SMALL_STATE(1820)] = 86358, + [SMALL_STATE(1821)] = 86389, + [SMALL_STATE(1822)] = 86420, + [SMALL_STATE(1823)] = 86455, + [SMALL_STATE(1824)] = 86490, + [SMALL_STATE(1825)] = 86521, + [SMALL_STATE(1826)] = 86552, + [SMALL_STATE(1827)] = 86583, + [SMALL_STATE(1828)] = 86614, + [SMALL_STATE(1829)] = 86645, + [SMALL_STATE(1830)] = 86676, + [SMALL_STATE(1831)] = 86707, + [SMALL_STATE(1832)] = 86738, + [SMALL_STATE(1833)] = 86769, + [SMALL_STATE(1834)] = 86800, + [SMALL_STATE(1835)] = 86831, + [SMALL_STATE(1836)] = 86862, + [SMALL_STATE(1837)] = 86893, + [SMALL_STATE(1838)] = 86924, + [SMALL_STATE(1839)] = 86955, + [SMALL_STATE(1840)] = 86986, + [SMALL_STATE(1841)] = 87017, + [SMALL_STATE(1842)] = 87048, + [SMALL_STATE(1843)] = 87079, + [SMALL_STATE(1844)] = 87134, + [SMALL_STATE(1845)] = 87189, + [SMALL_STATE(1846)] = 87220, + [SMALL_STATE(1847)] = 87251, + [SMALL_STATE(1848)] = 87286, + [SMALL_STATE(1849)] = 87317, + [SMALL_STATE(1850)] = 87372, + [SMALL_STATE(1851)] = 87403, + [SMALL_STATE(1852)] = 87434, + [SMALL_STATE(1853)] = 87469, + [SMALL_STATE(1854)] = 87500, + [SMALL_STATE(1855)] = 87531, + [SMALL_STATE(1856)] = 87562, + [SMALL_STATE(1857)] = 87593, + [SMALL_STATE(1858)] = 87624, + [SMALL_STATE(1859)] = 87655, + [SMALL_STATE(1860)] = 87710, + [SMALL_STATE(1861)] = 87741, + [SMALL_STATE(1862)] = 87772, + [SMALL_STATE(1863)] = 87807, + [SMALL_STATE(1864)] = 87838, + [SMALL_STATE(1865)] = 87893, + [SMALL_STATE(1866)] = 87924, + [SMALL_STATE(1867)] = 87979, + [SMALL_STATE(1868)] = 88010, + [SMALL_STATE(1869)] = 88065, + [SMALL_STATE(1870)] = 88096, + [SMALL_STATE(1871)] = 88127, + [SMALL_STATE(1872)] = 88158, + [SMALL_STATE(1873)] = 88213, + [SMALL_STATE(1874)] = 88244, + [SMALL_STATE(1875)] = 88275, + [SMALL_STATE(1876)] = 88306, + [SMALL_STATE(1877)] = 88361, + [SMALL_STATE(1878)] = 88392, + [SMALL_STATE(1879)] = 88427, + [SMALL_STATE(1880)] = 88482, + [SMALL_STATE(1881)] = 88513, + [SMALL_STATE(1882)] = 88544, + [SMALL_STATE(1883)] = 88575, + [SMALL_STATE(1884)] = 88606, + [SMALL_STATE(1885)] = 88637, + [SMALL_STATE(1886)] = 88668, + [SMALL_STATE(1887)] = 88699, + [SMALL_STATE(1888)] = 88730, + [SMALL_STATE(1889)] = 88761, + [SMALL_STATE(1890)] = 88792, + [SMALL_STATE(1891)] = 88823, + [SMALL_STATE(1892)] = 88854, + [SMALL_STATE(1893)] = 88885, + [SMALL_STATE(1894)] = 88916, + [SMALL_STATE(1895)] = 88951, + [SMALL_STATE(1896)] = 88982, + [SMALL_STATE(1897)] = 89013, + [SMALL_STATE(1898)] = 89044, + [SMALL_STATE(1899)] = 89099, + [SMALL_STATE(1900)] = 89154, + [SMALL_STATE(1901)] = 89185, + [SMALL_STATE(1902)] = 89216, + [SMALL_STATE(1903)] = 89251, + [SMALL_STATE(1904)] = 89286, + [SMALL_STATE(1905)] = 89322, + [SMALL_STATE(1906)] = 89352, + [SMALL_STATE(1907)] = 89386, + [SMALL_STATE(1908)] = 89440, + [SMALL_STATE(1909)] = 89476, + [SMALL_STATE(1910)] = 89510, + [SMALL_STATE(1911)] = 89564, + [SMALL_STATE(1912)] = 89598, + [SMALL_STATE(1913)] = 89630, + [SMALL_STATE(1914)] = 89660, + [SMALL_STATE(1915)] = 89690, + [SMALL_STATE(1916)] = 89744, + [SMALL_STATE(1917)] = 89780, + [SMALL_STATE(1918)] = 89812, + [SMALL_STATE(1919)] = 89848, + [SMALL_STATE(1920)] = 89880, + [SMALL_STATE(1921)] = 89910, + [SMALL_STATE(1922)] = 89940, + [SMALL_STATE(1923)] = 89970, + [SMALL_STATE(1924)] = 90002, + [SMALL_STATE(1925)] = 90034, + [SMALL_STATE(1926)] = 90064, + [SMALL_STATE(1927)] = 90094, + [SMALL_STATE(1928)] = 90124, + [SMALL_STATE(1929)] = 90154, + [SMALL_STATE(1930)] = 90184, + [SMALL_STATE(1931)] = 90216, + [SMALL_STATE(1932)] = 90270, + [SMALL_STATE(1933)] = 90302, + [SMALL_STATE(1934)] = 90332, + [SMALL_STATE(1935)] = 90364, + [SMALL_STATE(1936)] = 90394, + [SMALL_STATE(1937)] = 90428, + [SMALL_STATE(1938)] = 90458, + [SMALL_STATE(1939)] = 90488, + [SMALL_STATE(1940)] = 90518, + [SMALL_STATE(1941)] = 90548, + [SMALL_STATE(1942)] = 90584, + [SMALL_STATE(1943)] = 90616, + [SMALL_STATE(1944)] = 90648, + [SMALL_STATE(1945)] = 90682, + [SMALL_STATE(1946)] = 90712, + [SMALL_STATE(1947)] = 90744, + [SMALL_STATE(1948)] = 90774, + [SMALL_STATE(1949)] = 90804, + [SMALL_STATE(1950)] = 90834, + [SMALL_STATE(1951)] = 90864, + [SMALL_STATE(1952)] = 90894, + [SMALL_STATE(1953)] = 90926, + [SMALL_STATE(1954)] = 90956, + [SMALL_STATE(1955)] = 90986, + [SMALL_STATE(1956)] = 91040, + [SMALL_STATE(1957)] = 91070, + [SMALL_STATE(1958)] = 91124, + [SMALL_STATE(1959)] = 91160, + [SMALL_STATE(1960)] = 91196, + [SMALL_STATE(1961)] = 91224, + [SMALL_STATE(1962)] = 91254, + [SMALL_STATE(1963)] = 91284, + [SMALL_STATE(1964)] = 91314, + [SMALL_STATE(1965)] = 91348, + [SMALL_STATE(1966)] = 91376, + [SMALL_STATE(1967)] = 91430, + [SMALL_STATE(1968)] = 91484, + [SMALL_STATE(1969)] = 91538, + [SMALL_STATE(1970)] = 91568, + [SMALL_STATE(1971)] = 91598, + [SMALL_STATE(1972)] = 91630, + [SMALL_STATE(1973)] = 91684, + [SMALL_STATE(1974)] = 91714, + [SMALL_STATE(1975)] = 91746, + [SMALL_STATE(1976)] = 91782, + [SMALL_STATE(1977)] = 91812, + [SMALL_STATE(1978)] = 91846, + [SMALL_STATE(1979)] = 91876, + [SMALL_STATE(1980)] = 91906, + [SMALL_STATE(1981)] = 91936, + [SMALL_STATE(1982)] = 91966, + [SMALL_STATE(1983)] = 91996, + [SMALL_STATE(1984)] = 92050, + [SMALL_STATE(1985)] = 92080, + [SMALL_STATE(1986)] = 92112, + [SMALL_STATE(1987)] = 92144, + [SMALL_STATE(1988)] = 92198, + [SMALL_STATE(1989)] = 92228, + [SMALL_STATE(1990)] = 92258, + [SMALL_STATE(1991)] = 92294, + [SMALL_STATE(1992)] = 92324, + [SMALL_STATE(1993)] = 92378, + [SMALL_STATE(1994)] = 92408, + [SMALL_STATE(1995)] = 92438, + [SMALL_STATE(1996)] = 92492, + [SMALL_STATE(1997)] = 92546, + [SMALL_STATE(1998)] = 92600, + [SMALL_STATE(1999)] = 92654, + [SMALL_STATE(2000)] = 92708, + [SMALL_STATE(2001)] = 92738, + [SMALL_STATE(2002)] = 92770, + [SMALL_STATE(2003)] = 92800, + [SMALL_STATE(2004)] = 92832, + [SMALL_STATE(2005)] = 92866, + [SMALL_STATE(2006)] = 92896, + [SMALL_STATE(2007)] = 92926, + [SMALL_STATE(2008)] = 92956, + [SMALL_STATE(2009)] = 92984, + [SMALL_STATE(2010)] = 93016, + [SMALL_STATE(2011)] = 93046, + [SMALL_STATE(2012)] = 93076, + [SMALL_STATE(2013)] = 93106, + [SMALL_STATE(2014)] = 93138, + [SMALL_STATE(2015)] = 93168, + [SMALL_STATE(2016)] = 93198, + [SMALL_STATE(2017)] = 93230, + [SMALL_STATE(2018)] = 93258, + [SMALL_STATE(2019)] = 93288, + [SMALL_STATE(2020)] = 93318, + [SMALL_STATE(2021)] = 93372, + [SMALL_STATE(2022)] = 93402, + [SMALL_STATE(2023)] = 93434, + [SMALL_STATE(2024)] = 93488, + [SMALL_STATE(2025)] = 93524, + [SMALL_STATE(2026)] = 93552, + [SMALL_STATE(2027)] = 93582, + [SMALL_STATE(2028)] = 93612, + [SMALL_STATE(2029)] = 93642, + [SMALL_STATE(2030)] = 93672, + [SMALL_STATE(2031)] = 93700, + [SMALL_STATE(2032)] = 93732, + [SMALL_STATE(2033)] = 93764, + [SMALL_STATE(2034)] = 93796, + [SMALL_STATE(2035)] = 93826, + [SMALL_STATE(2036)] = 93864, + [SMALL_STATE(2037)] = 93894, + [SMALL_STATE(2038)] = 93924, + [SMALL_STATE(2039)] = 93956, + [SMALL_STATE(2040)] = 93986, + [SMALL_STATE(2041)] = 94016, + [SMALL_STATE(2042)] = 94046, + [SMALL_STATE(2043)] = 94076, + [SMALL_STATE(2044)] = 94106, + [SMALL_STATE(2045)] = 94138, + [SMALL_STATE(2046)] = 94168, + [SMALL_STATE(2047)] = 94198, + [SMALL_STATE(2048)] = 94228, + [SMALL_STATE(2049)] = 94258, + [SMALL_STATE(2050)] = 94288, + [SMALL_STATE(2051)] = 94318, + [SMALL_STATE(2052)] = 94348, + [SMALL_STATE(2053)] = 94378, + [SMALL_STATE(2054)] = 94408, + [SMALL_STATE(2055)] = 94438, + [SMALL_STATE(2056)] = 94468, + [SMALL_STATE(2057)] = 94498, + [SMALL_STATE(2058)] = 94528, + [SMALL_STATE(2059)] = 94558, + [SMALL_STATE(2060)] = 94588, + [SMALL_STATE(2061)] = 94618, + [SMALL_STATE(2062)] = 94648, + [SMALL_STATE(2063)] = 94678, + [SMALL_STATE(2064)] = 94708, + [SMALL_STATE(2065)] = 94738, + [SMALL_STATE(2066)] = 94768, + [SMALL_STATE(2067)] = 94798, + [SMALL_STATE(2068)] = 94828, + [SMALL_STATE(2069)] = 94858, + [SMALL_STATE(2070)] = 94890, + [SMALL_STATE(2071)] = 94920, + [SMALL_STATE(2072)] = 94950, + [SMALL_STATE(2073)] = 95004, + [SMALL_STATE(2074)] = 95036, + [SMALL_STATE(2075)] = 95068, + [SMALL_STATE(2076)] = 95098, + [SMALL_STATE(2077)] = 95128, + [SMALL_STATE(2078)] = 95158, + [SMALL_STATE(2079)] = 95188, + [SMALL_STATE(2080)] = 95218, + [SMALL_STATE(2081)] = 95248, + [SMALL_STATE(2082)] = 95280, + [SMALL_STATE(2083)] = 95309, + [SMALL_STATE(2084)] = 95338, + [SMALL_STATE(2085)] = 95389, + [SMALL_STATE(2086)] = 95440, + [SMALL_STATE(2087)] = 95469, + [SMALL_STATE(2088)] = 95498, + [SMALL_STATE(2089)] = 95531, + [SMALL_STATE(2090)] = 95582, + [SMALL_STATE(2091)] = 95633, + [SMALL_STATE(2092)] = 95662, + [SMALL_STATE(2093)] = 95713, + [SMALL_STATE(2094)] = 95764, + [SMALL_STATE(2095)] = 95793, + [SMALL_STATE(2096)] = 95822, + [SMALL_STATE(2097)] = 95873, + [SMALL_STATE(2098)] = 95902, + [SMALL_STATE(2099)] = 95931, + [SMALL_STATE(2100)] = 95964, + [SMALL_STATE(2101)] = 95993, + [SMALL_STATE(2102)] = 96022, + [SMALL_STATE(2103)] = 96051, + [SMALL_STATE(2104)] = 96080, + [SMALL_STATE(2105)] = 96109, + [SMALL_STATE(2106)] = 96138, + [SMALL_STATE(2107)] = 96189, + [SMALL_STATE(2108)] = 96240, + [SMALL_STATE(2109)] = 96269, + [SMALL_STATE(2110)] = 96298, + [SMALL_STATE(2111)] = 96327, + [SMALL_STATE(2112)] = 96360, + [SMALL_STATE(2113)] = 96389, + [SMALL_STATE(2114)] = 96418, + [SMALL_STATE(2115)] = 96447, + [SMALL_STATE(2116)] = 96498, + [SMALL_STATE(2117)] = 96527, + [SMALL_STATE(2118)] = 96578, + [SMALL_STATE(2119)] = 96607, + [SMALL_STATE(2120)] = 96636, + [SMALL_STATE(2121)] = 96665, + [SMALL_STATE(2122)] = 96716, + [SMALL_STATE(2123)] = 96745, + [SMALL_STATE(2124)] = 96774, + [SMALL_STATE(2125)] = 96803, + [SMALL_STATE(2126)] = 96836, + [SMALL_STATE(2127)] = 96865, + [SMALL_STATE(2128)] = 96898, + [SMALL_STATE(2129)] = 96927, + [SMALL_STATE(2130)] = 96978, + [SMALL_STATE(2131)] = 97007, + [SMALL_STATE(2132)] = 97036, + [SMALL_STATE(2133)] = 97065, + [SMALL_STATE(2134)] = 97094, + [SMALL_STATE(2135)] = 97123, + [SMALL_STATE(2136)] = 97152, + [SMALL_STATE(2137)] = 97181, + [SMALL_STATE(2138)] = 97210, + [SMALL_STATE(2139)] = 97261, + [SMALL_STATE(2140)] = 97290, + [SMALL_STATE(2141)] = 97319, + [SMALL_STATE(2142)] = 97352, + [SMALL_STATE(2143)] = 97381, + [SMALL_STATE(2144)] = 97410, + [SMALL_STATE(2145)] = 97461, + [SMALL_STATE(2146)] = 97490, + [SMALL_STATE(2147)] = 97519, + [SMALL_STATE(2148)] = 97548, + [SMALL_STATE(2149)] = 97577, + [SMALL_STATE(2150)] = 97606, + [SMALL_STATE(2151)] = 97637, + [SMALL_STATE(2152)] = 97666, + [SMALL_STATE(2153)] = 97697, + [SMALL_STATE(2154)] = 97726, + [SMALL_STATE(2155)] = 97755, + [SMALL_STATE(2156)] = 97786, + [SMALL_STATE(2157)] = 97815, + [SMALL_STATE(2158)] = 97844, + [SMALL_STATE(2159)] = 97877, + [SMALL_STATE(2160)] = 97906, + [SMALL_STATE(2161)] = 97937, + [SMALL_STATE(2162)] = 97966, + [SMALL_STATE(2163)] = 98017, + [SMALL_STATE(2164)] = 98046, + [SMALL_STATE(2165)] = 98075, + [SMALL_STATE(2166)] = 98104, + [SMALL_STATE(2167)] = 98155, + [SMALL_STATE(2168)] = 98184, + [SMALL_STATE(2169)] = 98213, + [SMALL_STATE(2170)] = 98242, + [SMALL_STATE(2171)] = 98271, + [SMALL_STATE(2172)] = 98300, + [SMALL_STATE(2173)] = 98329, + [SMALL_STATE(2174)] = 98358, + [SMALL_STATE(2175)] = 98409, + [SMALL_STATE(2176)] = 98438, + [SMALL_STATE(2177)] = 98467, + [SMALL_STATE(2178)] = 98496, + [SMALL_STATE(2179)] = 98525, + [SMALL_STATE(2180)] = 98554, + [SMALL_STATE(2181)] = 98583, + [SMALL_STATE(2182)] = 98612, + [SMALL_STATE(2183)] = 98641, + [SMALL_STATE(2184)] = 98692, + [SMALL_STATE(2185)] = 98743, + [SMALL_STATE(2186)] = 98776, + [SMALL_STATE(2187)] = 98805, + [SMALL_STATE(2188)] = 98834, + [SMALL_STATE(2189)] = 98867, + [SMALL_STATE(2190)] = 98900, + [SMALL_STATE(2191)] = 98929, + [SMALL_STATE(2192)] = 98958, + [SMALL_STATE(2193)] = 98987, + [SMALL_STATE(2194)] = 99016, + [SMALL_STATE(2195)] = 99045, + [SMALL_STATE(2196)] = 99074, + [SMALL_STATE(2197)] = 99103, + [SMALL_STATE(2198)] = 99132, + [SMALL_STATE(2199)] = 99161, + [SMALL_STATE(2200)] = 99190, + [SMALL_STATE(2201)] = 99219, + [SMALL_STATE(2202)] = 99248, + [SMALL_STATE(2203)] = 99278, + [SMALL_STATE(2204)] = 99306, + [SMALL_STATE(2205)] = 99332, + [SMALL_STATE(2206)] = 99360, + [SMALL_STATE(2207)] = 99388, + [SMALL_STATE(2208)] = 99438, + [SMALL_STATE(2209)] = 99488, + [SMALL_STATE(2210)] = 99516, + [SMALL_STATE(2211)] = 99544, + [SMALL_STATE(2212)] = 99572, + [SMALL_STATE(2213)] = 99600, + [SMALL_STATE(2214)] = 99626, + [SMALL_STATE(2215)] = 99676, + [SMALL_STATE(2216)] = 99704, + [SMALL_STATE(2217)] = 99754, + [SMALL_STATE(2218)] = 99780, + [SMALL_STATE(2219)] = 99806, + [SMALL_STATE(2220)] = 99856, + [SMALL_STATE(2221)] = 99884, + [SMALL_STATE(2222)] = 99934, + [SMALL_STATE(2223)] = 99982, + [SMALL_STATE(2224)] = 100032, + [SMALL_STATE(2225)] = 100060, + [SMALL_STATE(2226)] = 100088, + [SMALL_STATE(2227)] = 100138, + [SMALL_STATE(2228)] = 100188, + [SMALL_STATE(2229)] = 100216, + [SMALL_STATE(2230)] = 100266, + [SMALL_STATE(2231)] = 100296, + [SMALL_STATE(2232)] = 100346, + [SMALL_STATE(2233)] = 100396, + [SMALL_STATE(2234)] = 100446, + [SMALL_STATE(2235)] = 100474, + [SMALL_STATE(2236)] = 100510, + [SMALL_STATE(2237)] = 100538, + [SMALL_STATE(2238)] = 100566, + [SMALL_STATE(2239)] = 100594, + [SMALL_STATE(2240)] = 100622, + [SMALL_STATE(2241)] = 100650, + [SMALL_STATE(2242)] = 100700, + [SMALL_STATE(2243)] = 100728, + [SMALL_STATE(2244)] = 100756, + [SMALL_STATE(2245)] = 100784, + [SMALL_STATE(2246)] = 100834, + [SMALL_STATE(2247)] = 100882, + [SMALL_STATE(2248)] = 100932, + [SMALL_STATE(2249)] = 100980, + [SMALL_STATE(2250)] = 101030, + [SMALL_STATE(2251)] = 101080, + [SMALL_STATE(2252)] = 101130, + [SMALL_STATE(2253)] = 101180, + [SMALL_STATE(2254)] = 101208, + [SMALL_STATE(2255)] = 101236, + [SMALL_STATE(2256)] = 101286, + [SMALL_STATE(2257)] = 101336, + [SMALL_STATE(2258)] = 101386, + [SMALL_STATE(2259)] = 101436, + [SMALL_STATE(2260)] = 101464, + [SMALL_STATE(2261)] = 101492, + [SMALL_STATE(2262)] = 101520, + [SMALL_STATE(2263)] = 101548, + [SMALL_STATE(2264)] = 101576, + [SMALL_STATE(2265)] = 101626, + [SMALL_STATE(2266)] = 101654, + [SMALL_STATE(2267)] = 101704, + [SMALL_STATE(2268)] = 101732, + [SMALL_STATE(2269)] = 101760, + [SMALL_STATE(2270)] = 101788, + [SMALL_STATE(2271)] = 101838, + [SMALL_STATE(2272)] = 101888, + [SMALL_STATE(2273)] = 101938, + [SMALL_STATE(2274)] = 101988, + [SMALL_STATE(2275)] = 102038, + [SMALL_STATE(2276)] = 102088, + [SMALL_STATE(2277)] = 102116, + [SMALL_STATE(2278)] = 102166, + [SMALL_STATE(2279)] = 102216, + [SMALL_STATE(2280)] = 102266, + [SMALL_STATE(2281)] = 102316, + [SMALL_STATE(2282)] = 102366, + [SMALL_STATE(2283)] = 102416, + [SMALL_STATE(2284)] = 102466, + [SMALL_STATE(2285)] = 102516, + [SMALL_STATE(2286)] = 102566, + [SMALL_STATE(2287)] = 102616, + [SMALL_STATE(2288)] = 102644, + [SMALL_STATE(2289)] = 102694, + [SMALL_STATE(2290)] = 102744, + [SMALL_STATE(2291)] = 102772, + [SMALL_STATE(2292)] = 102822, + [SMALL_STATE(2293)] = 102872, + [SMALL_STATE(2294)] = 102900, + [SMALL_STATE(2295)] = 102928, + [SMALL_STATE(2296)] = 102956, + [SMALL_STATE(2297)] = 102984, + [SMALL_STATE(2298)] = 103012, + [SMALL_STATE(2299)] = 103040, + [SMALL_STATE(2300)] = 103090, + [SMALL_STATE(2301)] = 103118, + [SMALL_STATE(2302)] = 103168, + [SMALL_STATE(2303)] = 103218, + [SMALL_STATE(2304)] = 103268, + [SMALL_STATE(2305)] = 103318, + [SMALL_STATE(2306)] = 103368, + [SMALL_STATE(2307)] = 103396, + [SMALL_STATE(2308)] = 103446, + [SMALL_STATE(2309)] = 103496, + [SMALL_STATE(2310)] = 103524, + [SMALL_STATE(2311)] = 103574, + [SMALL_STATE(2312)] = 103624, + [SMALL_STATE(2313)] = 103674, + [SMALL_STATE(2314)] = 103724, + [SMALL_STATE(2315)] = 103774, + [SMALL_STATE(2316)] = 103824, + [SMALL_STATE(2317)] = 103874, + [SMALL_STATE(2318)] = 103924, + [SMALL_STATE(2319)] = 103952, + [SMALL_STATE(2320)] = 103980, + [SMALL_STATE(2321)] = 104008, + [SMALL_STATE(2322)] = 104036, + [SMALL_STATE(2323)] = 104064, + [SMALL_STATE(2324)] = 104114, + [SMALL_STATE(2325)] = 104142, + [SMALL_STATE(2326)] = 104170, + [SMALL_STATE(2327)] = 104198, + [SMALL_STATE(2328)] = 104248, + [SMALL_STATE(2329)] = 104298, + [SMALL_STATE(2330)] = 104348, + [SMALL_STATE(2331)] = 104376, + [SMALL_STATE(2332)] = 104404, + [SMALL_STATE(2333)] = 104451, + [SMALL_STATE(2334)] = 104478, + [SMALL_STATE(2335)] = 104513, + [SMALL_STATE(2336)] = 104548, + [SMALL_STATE(2337)] = 104583, + [SMALL_STATE(2338)] = 104610, + [SMALL_STATE(2339)] = 104645, + [SMALL_STATE(2340)] = 104692, + [SMALL_STATE(2341)] = 104717, + [SMALL_STATE(2342)] = 104752, + [SMALL_STATE(2343)] = 104787, + [SMALL_STATE(2344)] = 104834, + [SMALL_STATE(2345)] = 104869, + [SMALL_STATE(2346)] = 104896, + [SMALL_STATE(2347)] = 104943, + [SMALL_STATE(2348)] = 104990, + [SMALL_STATE(2349)] = 105025, + [SMALL_STATE(2350)] = 105060, + [SMALL_STATE(2351)] = 105107, + [SMALL_STATE(2352)] = 105142, + [SMALL_STATE(2353)] = 105189, + [SMALL_STATE(2354)] = 105224, + [SMALL_STATE(2355)] = 105259, + [SMALL_STATE(2356)] = 105306, + [SMALL_STATE(2357)] = 105341, + [SMALL_STATE(2358)] = 105388, + [SMALL_STATE(2359)] = 105435, + [SMALL_STATE(2360)] = 105470, + [SMALL_STATE(2361)] = 105505, + [SMALL_STATE(2362)] = 105540, + [SMALL_STATE(2363)] = 105575, + [SMALL_STATE(2364)] = 105622, + [SMALL_STATE(2365)] = 105657, + [SMALL_STATE(2366)] = 105704, + [SMALL_STATE(2367)] = 105751, + [SMALL_STATE(2368)] = 105786, + [SMALL_STATE(2369)] = 105813, + [SMALL_STATE(2370)] = 105840, + [SMALL_STATE(2371)] = 105867, + [SMALL_STATE(2372)] = 105902, + [SMALL_STATE(2373)] = 105937, + [SMALL_STATE(2374)] = 105972, + [SMALL_STATE(2375)] = 106007, + [SMALL_STATE(2376)] = 106054, + [SMALL_STATE(2377)] = 106101, + [SMALL_STATE(2378)] = 106148, + [SMALL_STATE(2379)] = 106183, + [SMALL_STATE(2380)] = 106218, + [SMALL_STATE(2381)] = 106253, + [SMALL_STATE(2382)] = 106288, + [SMALL_STATE(2383)] = 106315, + [SMALL_STATE(2384)] = 106350, + [SMALL_STATE(2385)] = 106385, + [SMALL_STATE(2386)] = 106420, + [SMALL_STATE(2387)] = 106447, + [SMALL_STATE(2388)] = 106494, + [SMALL_STATE(2389)] = 106521, + [SMALL_STATE(2390)] = 106548, + [SMALL_STATE(2391)] = 106583, + [SMALL_STATE(2392)] = 106610, + [SMALL_STATE(2393)] = 106657, + [SMALL_STATE(2394)] = 106704, + [SMALL_STATE(2395)] = 106739, + [SMALL_STATE(2396)] = 106766, + [SMALL_STATE(2397)] = 106813, + [SMALL_STATE(2398)] = 106848, + [SMALL_STATE(2399)] = 106890, + [SMALL_STATE(2400)] = 106926, + [SMALL_STATE(2401)] = 106968, + [SMALL_STATE(2402)] = 107007, + [SMALL_STATE(2403)] = 107046, + [SMALL_STATE(2404)] = 107085, + [SMALL_STATE(2405)] = 107124, + [SMALL_STATE(2406)] = 107163, + [SMALL_STATE(2407)] = 107202, + [SMALL_STATE(2408)] = 107241, + [SMALL_STATE(2409)] = 107280, + [SMALL_STATE(2410)] = 107319, + [SMALL_STATE(2411)] = 107358, + [SMALL_STATE(2412)] = 107397, + [SMALL_STATE(2413)] = 107436, + [SMALL_STATE(2414)] = 107475, + [SMALL_STATE(2415)] = 107514, + [SMALL_STATE(2416)] = 107553, + [SMALL_STATE(2417)] = 107592, + [SMALL_STATE(2418)] = 107631, + [SMALL_STATE(2419)] = 107670, + [SMALL_STATE(2420)] = 107709, + [SMALL_STATE(2421)] = 107748, + [SMALL_STATE(2422)] = 107787, + [SMALL_STATE(2423)] = 107826, + [SMALL_STATE(2424)] = 107865, + [SMALL_STATE(2425)] = 107904, + [SMALL_STATE(2426)] = 107931, + [SMALL_STATE(2427)] = 107970, + [SMALL_STATE(2428)] = 108009, + [SMALL_STATE(2429)] = 108048, + [SMALL_STATE(2430)] = 108087, + [SMALL_STATE(2431)] = 108126, + [SMALL_STATE(2432)] = 108165, + [SMALL_STATE(2433)] = 108204, + [SMALL_STATE(2434)] = 108243, + [SMALL_STATE(2435)] = 108270, + [SMALL_STATE(2436)] = 108309, + [SMALL_STATE(2437)] = 108348, + [SMALL_STATE(2438)] = 108387, + [SMALL_STATE(2439)] = 108426, + [SMALL_STATE(2440)] = 108465, + [SMALL_STATE(2441)] = 108504, + [SMALL_STATE(2442)] = 108543, + [SMALL_STATE(2443)] = 108570, + [SMALL_STATE(2444)] = 108609, + [SMALL_STATE(2445)] = 108636, + [SMALL_STATE(2446)] = 108675, + [SMALL_STATE(2447)] = 108714, + [SMALL_STATE(2448)] = 108753, + [SMALL_STATE(2449)] = 108792, + [SMALL_STATE(2450)] = 108831, + [SMALL_STATE(2451)] = 108870, + [SMALL_STATE(2452)] = 108909, + [SMALL_STATE(2453)] = 108948, + [SMALL_STATE(2454)] = 108987, + [SMALL_STATE(2455)] = 109026, + [SMALL_STATE(2456)] = 109065, + [SMALL_STATE(2457)] = 109104, + [SMALL_STATE(2458)] = 109143, + [SMALL_STATE(2459)] = 109182, + [SMALL_STATE(2460)] = 109221, + [SMALL_STATE(2461)] = 109260, + [SMALL_STATE(2462)] = 109299, + [SMALL_STATE(2463)] = 109338, + [SMALL_STATE(2464)] = 109377, + [SMALL_STATE(2465)] = 109416, + [SMALL_STATE(2466)] = 109455, + [SMALL_STATE(2467)] = 109479, + [SMALL_STATE(2468)] = 109503, + [SMALL_STATE(2469)] = 109527, + [SMALL_STATE(2470)] = 109551, + [SMALL_STATE(2471)] = 109575, + [SMALL_STATE(2472)] = 109599, + [SMALL_STATE(2473)] = 109623, + [SMALL_STATE(2474)] = 109647, + [SMALL_STATE(2475)] = 109671, + [SMALL_STATE(2476)] = 109695, + [SMALL_STATE(2477)] = 109721, + [SMALL_STATE(2478)] = 109745, + [SMALL_STATE(2479)] = 109769, + [SMALL_STATE(2480)] = 109793, + [SMALL_STATE(2481)] = 109817, + [SMALL_STATE(2482)] = 109841, + [SMALL_STATE(2483)] = 109865, + [SMALL_STATE(2484)] = 109889, + [SMALL_STATE(2485)] = 109913, + [SMALL_STATE(2486)] = 109937, + [SMALL_STATE(2487)] = 109961, + [SMALL_STATE(2488)] = 109985, + [SMALL_STATE(2489)] = 110009, + [SMALL_STATE(2490)] = 110035, + [SMALL_STATE(2491)] = 110059, + [SMALL_STATE(2492)] = 110083, + [SMALL_STATE(2493)] = 110107, + [SMALL_STATE(2494)] = 110131, + [SMALL_STATE(2495)] = 110164, + [SMALL_STATE(2496)] = 110197, + [SMALL_STATE(2497)] = 110218, + [SMALL_STATE(2498)] = 110244, + [SMALL_STATE(2499)] = 110270, + [SMALL_STATE(2500)] = 110296, + [SMALL_STATE(2501)] = 110322, + [SMALL_STATE(2502)] = 110354, + [SMALL_STATE(2503)] = 110385, + [SMALL_STATE(2504)] = 110416, + [SMALL_STATE(2505)] = 110447, + [SMALL_STATE(2506)] = 110478, + [SMALL_STATE(2507)] = 110507, + [SMALL_STATE(2508)] = 110538, + [SMALL_STATE(2509)] = 110569, + [SMALL_STATE(2510)] = 110598, + [SMALL_STATE(2511)] = 110627, + [SMALL_STATE(2512)] = 110656, + [SMALL_STATE(2513)] = 110687, + [SMALL_STATE(2514)] = 110716, + [SMALL_STATE(2515)] = 110737, + [SMALL_STATE(2516)] = 110768, + [SMALL_STATE(2517)] = 110799, + [SMALL_STATE(2518)] = 110828, + [SMALL_STATE(2519)] = 110859, + [SMALL_STATE(2520)] = 110888, + [SMALL_STATE(2521)] = 110913, + [SMALL_STATE(2522)] = 110944, + [SMALL_STATE(2523)] = 110975, + [SMALL_STATE(2524)] = 111004, + [SMALL_STATE(2525)] = 111035, + [SMALL_STATE(2526)] = 111064, + [SMALL_STATE(2527)] = 111093, + [SMALL_STATE(2528)] = 111124, + [SMALL_STATE(2529)] = 111145, + [SMALL_STATE(2530)] = 111174, + [SMALL_STATE(2531)] = 111205, + [SMALL_STATE(2532)] = 111234, + [SMALL_STATE(2533)] = 111265, + [SMALL_STATE(2534)] = 111286, + [SMALL_STATE(2535)] = 111307, + [SMALL_STATE(2536)] = 111328, + [SMALL_STATE(2537)] = 111349, + [SMALL_STATE(2538)] = 111370, + [SMALL_STATE(2539)] = 111391, + [SMALL_STATE(2540)] = 111412, + [SMALL_STATE(2541)] = 111433, + [SMALL_STATE(2542)] = 111454, + [SMALL_STATE(2543)] = 111475, + [SMALL_STATE(2544)] = 111496, + [SMALL_STATE(2545)] = 111517, + [SMALL_STATE(2546)] = 111546, + [SMALL_STATE(2547)] = 111567, + [SMALL_STATE(2548)] = 111596, + [SMALL_STATE(2549)] = 111617, + [SMALL_STATE(2550)] = 111638, + [SMALL_STATE(2551)] = 111669, + [SMALL_STATE(2552)] = 111698, + [SMALL_STATE(2553)] = 111727, + [SMALL_STATE(2554)] = 111758, + [SMALL_STATE(2555)] = 111789, + [SMALL_STATE(2556)] = 111810, + [SMALL_STATE(2557)] = 111839, + [SMALL_STATE(2558)] = 111870, + [SMALL_STATE(2559)] = 111891, + [SMALL_STATE(2560)] = 111920, + [SMALL_STATE(2561)] = 111941, + [SMALL_STATE(2562)] = 111962, + [SMALL_STATE(2563)] = 111993, + [SMALL_STATE(2564)] = 112014, + [SMALL_STATE(2565)] = 112035, + [SMALL_STATE(2566)] = 112066, + [SMALL_STATE(2567)] = 112095, + [SMALL_STATE(2568)] = 112116, + [SMALL_STATE(2569)] = 112137, + [SMALL_STATE(2570)] = 112158, + [SMALL_STATE(2571)] = 112187, + [SMALL_STATE(2572)] = 112218, + [SMALL_STATE(2573)] = 112247, + [SMALL_STATE(2574)] = 112278, + [SMALL_STATE(2575)] = 112309, + [SMALL_STATE(2576)] = 112338, + [SMALL_STATE(2577)] = 112369, + [SMALL_STATE(2578)] = 112398, + [SMALL_STATE(2579)] = 112429, + [SMALL_STATE(2580)] = 112454, + [SMALL_STATE(2581)] = 112483, + [SMALL_STATE(2582)] = 112514, + [SMALL_STATE(2583)] = 112545, + [SMALL_STATE(2584)] = 112576, + [SMALL_STATE(2585)] = 112605, + [SMALL_STATE(2586)] = 112634, + [SMALL_STATE(2587)] = 112663, + [SMALL_STATE(2588)] = 112692, + [SMALL_STATE(2589)] = 112723, + [SMALL_STATE(2590)] = 112752, + [SMALL_STATE(2591)] = 112772, + [SMALL_STATE(2592)] = 112796, + [SMALL_STATE(2593)] = 112816, + [SMALL_STATE(2594)] = 112840, + [SMALL_STATE(2595)] = 112860, + [SMALL_STATE(2596)] = 112884, + [SMALL_STATE(2597)] = 112904, + [SMALL_STATE(2598)] = 112924, + [SMALL_STATE(2599)] = 112948, + [SMALL_STATE(2600)] = 112972, + [SMALL_STATE(2601)] = 112996, + [SMALL_STATE(2602)] = 113020, + [SMALL_STATE(2603)] = 113040, + [SMALL_STATE(2604)] = 113064, + [SMALL_STATE(2605)] = 113084, + [SMALL_STATE(2606)] = 113108, + [SMALL_STATE(2607)] = 113132, + [SMALL_STATE(2608)] = 113156, + [SMALL_STATE(2609)] = 113180, + [SMALL_STATE(2610)] = 113204, + [SMALL_STATE(2611)] = 113228, + [SMALL_STATE(2612)] = 113248, + [SMALL_STATE(2613)] = 113272, + [SMALL_STATE(2614)] = 113296, + [SMALL_STATE(2615)] = 113320, + [SMALL_STATE(2616)] = 113344, + [SMALL_STATE(2617)] = 113368, + [SMALL_STATE(2618)] = 113392, + [SMALL_STATE(2619)] = 113416, + [SMALL_STATE(2620)] = 113440, + [SMALL_STATE(2621)] = 113464, + [SMALL_STATE(2622)] = 113488, + [SMALL_STATE(2623)] = 113512, + [SMALL_STATE(2624)] = 113532, + [SMALL_STATE(2625)] = 113556, + [SMALL_STATE(2626)] = 113580, + [SMALL_STATE(2627)] = 113604, + [SMALL_STATE(2628)] = 113628, + [SMALL_STATE(2629)] = 113652, + [SMALL_STATE(2630)] = 113676, + [SMALL_STATE(2631)] = 113696, + [SMALL_STATE(2632)] = 113720, + [SMALL_STATE(2633)] = 113744, + [SMALL_STATE(2634)] = 113768, + [SMALL_STATE(2635)] = 113792, + [SMALL_STATE(2636)] = 113816, + [SMALL_STATE(2637)] = 113840, + [SMALL_STATE(2638)] = 113864, + [SMALL_STATE(2639)] = 113888, + [SMALL_STATE(2640)] = 113912, + [SMALL_STATE(2641)] = 113936, + [SMALL_STATE(2642)] = 113960, + [SMALL_STATE(2643)] = 113984, + [SMALL_STATE(2644)] = 114008, + [SMALL_STATE(2645)] = 114032, + [SMALL_STATE(2646)] = 114056, + [SMALL_STATE(2647)] = 114080, + [SMALL_STATE(2648)] = 114104, + [SMALL_STATE(2649)] = 114128, + [SMALL_STATE(2650)] = 114152, + [SMALL_STATE(2651)] = 114176, + [SMALL_STATE(2652)] = 114200, + [SMALL_STATE(2653)] = 114224, + [SMALL_STATE(2654)] = 114244, + [SMALL_STATE(2655)] = 114268, + [SMALL_STATE(2656)] = 114292, + [SMALL_STATE(2657)] = 114316, + [SMALL_STATE(2658)] = 114340, + [SMALL_STATE(2659)] = 114364, + [SMALL_STATE(2660)] = 114383, + [SMALL_STATE(2661)] = 114402, + [SMALL_STATE(2662)] = 114429, + [SMALL_STATE(2663)] = 114448, + [SMALL_STATE(2664)] = 114467, + [SMALL_STATE(2665)] = 114486, + [SMALL_STATE(2666)] = 114505, + [SMALL_STATE(2667)] = 114532, + [SMALL_STATE(2668)] = 114551, + [SMALL_STATE(2669)] = 114570, + [SMALL_STATE(2670)] = 114597, + [SMALL_STATE(2671)] = 114616, + [SMALL_STATE(2672)] = 114637, + [SMALL_STATE(2673)] = 114656, + [SMALL_STATE(2674)] = 114683, + [SMALL_STATE(2675)] = 114702, + [SMALL_STATE(2676)] = 114721, + [SMALL_STATE(2677)] = 114748, + [SMALL_STATE(2678)] = 114767, + [SMALL_STATE(2679)] = 114794, + [SMALL_STATE(2680)] = 114821, + [SMALL_STATE(2681)] = 114848, + [SMALL_STATE(2682)] = 114867, + [SMALL_STATE(2683)] = 114894, + [SMALL_STATE(2684)] = 114921, + [SMALL_STATE(2685)] = 114940, + [SMALL_STATE(2686)] = 114967, + [SMALL_STATE(2687)] = 114986, + [SMALL_STATE(2688)] = 115013, + [SMALL_STATE(2689)] = 115040, + [SMALL_STATE(2690)] = 115067, + [SMALL_STATE(2691)] = 115086, + [SMALL_STATE(2692)] = 115113, + [SMALL_STATE(2693)] = 115140, + [SMALL_STATE(2694)] = 115167, + [SMALL_STATE(2695)] = 115194, + [SMALL_STATE(2696)] = 115221, + [SMALL_STATE(2697)] = 115248, + [SMALL_STATE(2698)] = 115267, + [SMALL_STATE(2699)] = 115294, + [SMALL_STATE(2700)] = 115321, + [SMALL_STATE(2701)] = 115348, + [SMALL_STATE(2702)] = 115375, + [SMALL_STATE(2703)] = 115402, + [SMALL_STATE(2704)] = 115421, + [SMALL_STATE(2705)] = 115440, + [SMALL_STATE(2706)] = 115459, + [SMALL_STATE(2707)] = 115486, + [SMALL_STATE(2708)] = 115513, + [SMALL_STATE(2709)] = 115532, + [SMALL_STATE(2710)] = 115551, + [SMALL_STATE(2711)] = 115570, + [SMALL_STATE(2712)] = 115597, + [SMALL_STATE(2713)] = 115616, + [SMALL_STATE(2714)] = 115643, + [SMALL_STATE(2715)] = 115670, + [SMALL_STATE(2716)] = 115697, + [SMALL_STATE(2717)] = 115716, + [SMALL_STATE(2718)] = 115746, + [SMALL_STATE(2719)] = 115776, + [SMALL_STATE(2720)] = 115806, + [SMALL_STATE(2721)] = 115836, + [SMALL_STATE(2722)] = 115866, + [SMALL_STATE(2723)] = 115896, + [SMALL_STATE(2724)] = 115926, + [SMALL_STATE(2725)] = 115956, + [SMALL_STATE(2726)] = 115986, + [SMALL_STATE(2727)] = 116016, + [SMALL_STATE(2728)] = 116046, + [SMALL_STATE(2729)] = 116076, + [SMALL_STATE(2730)] = 116104, + [SMALL_STATE(2731)] = 116134, + [SMALL_STATE(2732)] = 116162, + [SMALL_STATE(2733)] = 116192, + [SMALL_STATE(2734)] = 116222, + [SMALL_STATE(2735)] = 116250, + [SMALL_STATE(2736)] = 116280, + [SMALL_STATE(2737)] = 116310, + [SMALL_STATE(2738)] = 116340, + [SMALL_STATE(2739)] = 116370, + [SMALL_STATE(2740)] = 116400, + [SMALL_STATE(2741)] = 116428, + [SMALL_STATE(2742)] = 116456, + [SMALL_STATE(2743)] = 116486, + [SMALL_STATE(2744)] = 116516, + [SMALL_STATE(2745)] = 116546, + [SMALL_STATE(2746)] = 116576, + [SMALL_STATE(2747)] = 116606, + [SMALL_STATE(2748)] = 116636, + [SMALL_STATE(2749)] = 116666, + [SMALL_STATE(2750)] = 116696, + [SMALL_STATE(2751)] = 116726, + [SMALL_STATE(2752)] = 116756, + [SMALL_STATE(2753)] = 116786, + [SMALL_STATE(2754)] = 116816, + [SMALL_STATE(2755)] = 116846, + [SMALL_STATE(2756)] = 116876, + [SMALL_STATE(2757)] = 116904, + [SMALL_STATE(2758)] = 116934, + [SMALL_STATE(2759)] = 116964, + [SMALL_STATE(2760)] = 116994, + [SMALL_STATE(2761)] = 117014, + [SMALL_STATE(2762)] = 117044, + [SMALL_STATE(2763)] = 117074, + [SMALL_STATE(2764)] = 117104, + [SMALL_STATE(2765)] = 117134, + [SMALL_STATE(2766)] = 117164, + [SMALL_STATE(2767)] = 117194, + [SMALL_STATE(2768)] = 117224, + [SMALL_STATE(2769)] = 117254, + [SMALL_STATE(2770)] = 117284, + [SMALL_STATE(2771)] = 117314, + [SMALL_STATE(2772)] = 117344, + [SMALL_STATE(2773)] = 117374, + [SMALL_STATE(2774)] = 117404, + [SMALL_STATE(2775)] = 117434, + [SMALL_STATE(2776)] = 117464, + [SMALL_STATE(2777)] = 117494, + [SMALL_STATE(2778)] = 117524, + [SMALL_STATE(2779)] = 117552, + [SMALL_STATE(2780)] = 117582, + [SMALL_STATE(2781)] = 117612, + [SMALL_STATE(2782)] = 117642, + [SMALL_STATE(2783)] = 117672, + [SMALL_STATE(2784)] = 117702, + [SMALL_STATE(2785)] = 117726, + [SMALL_STATE(2786)] = 117750, + [SMALL_STATE(2787)] = 117774, + [SMALL_STATE(2788)] = 117790, + [SMALL_STATE(2789)] = 117806, + [SMALL_STATE(2790)] = 117830, + [SMALL_STATE(2791)] = 117854, + [SMALL_STATE(2792)] = 117870, + [SMALL_STATE(2793)] = 117894, + [SMALL_STATE(2794)] = 117910, + [SMALL_STATE(2795)] = 117926, + [SMALL_STATE(2796)] = 117950, + [SMALL_STATE(2797)] = 117974, + [SMALL_STATE(2798)] = 117998, + [SMALL_STATE(2799)] = 118018, + [SMALL_STATE(2800)] = 118039, + [SMALL_STATE(2801)] = 118056, + [SMALL_STATE(2802)] = 118071, + [SMALL_STATE(2803)] = 118086, + [SMALL_STATE(2804)] = 118105, + [SMALL_STATE(2805)] = 118120, + [SMALL_STATE(2806)] = 118135, + [SMALL_STATE(2807)] = 118156, + [SMALL_STATE(2808)] = 118177, + [SMALL_STATE(2809)] = 118196, + [SMALL_STATE(2810)] = 118211, + [SMALL_STATE(2811)] = 118232, + [SMALL_STATE(2812)] = 118247, + [SMALL_STATE(2813)] = 118262, + [SMALL_STATE(2814)] = 118277, + [SMALL_STATE(2815)] = 118292, + [SMALL_STATE(2816)] = 118307, + [SMALL_STATE(2817)] = 118328, + [SMALL_STATE(2818)] = 118347, + [SMALL_STATE(2819)] = 118362, + [SMALL_STATE(2820)] = 118377, + [SMALL_STATE(2821)] = 118392, + [SMALL_STATE(2822)] = 118407, + [SMALL_STATE(2823)] = 118422, + [SMALL_STATE(2824)] = 118437, + [SMALL_STATE(2825)] = 118452, + [SMALL_STATE(2826)] = 118467, + [SMALL_STATE(2827)] = 118482, + [SMALL_STATE(2828)] = 118503, + [SMALL_STATE(2829)] = 118518, + [SMALL_STATE(2830)] = 118533, + [SMALL_STATE(2831)] = 118548, + [SMALL_STATE(2832)] = 118563, + [SMALL_STATE(2833)] = 118578, + [SMALL_STATE(2834)] = 118595, + [SMALL_STATE(2835)] = 118610, + [SMALL_STATE(2836)] = 118624, + [SMALL_STATE(2837)] = 118638, + [SMALL_STATE(2838)] = 118652, + [SMALL_STATE(2839)] = 118666, + [SMALL_STATE(2840)] = 118680, + [SMALL_STATE(2841)] = 118694, + [SMALL_STATE(2842)] = 118714, + [SMALL_STATE(2843)] = 118728, + [SMALL_STATE(2844)] = 118748, + [SMALL_STATE(2845)] = 118762, + [SMALL_STATE(2846)] = 118776, + [SMALL_STATE(2847)] = 118790, + [SMALL_STATE(2848)] = 118804, + [SMALL_STATE(2849)] = 118818, + [SMALL_STATE(2850)] = 118832, + [SMALL_STATE(2851)] = 118846, + [SMALL_STATE(2852)] = 118862, + [SMALL_STATE(2853)] = 118876, + [SMALL_STATE(2854)] = 118890, + [SMALL_STATE(2855)] = 118904, + [SMALL_STATE(2856)] = 118918, + [SMALL_STATE(2857)] = 118930, + [SMALL_STATE(2858)] = 118944, + [SMALL_STATE(2859)] = 118956, + [SMALL_STATE(2860)] = 118970, + [SMALL_STATE(2861)] = 118984, + [SMALL_STATE(2862)] = 119004, + [SMALL_STATE(2863)] = 119018, + [SMALL_STATE(2864)] = 119032, + [SMALL_STATE(2865)] = 119046, + [SMALL_STATE(2866)] = 119060, + [SMALL_STATE(2867)] = 119074, + [SMALL_STATE(2868)] = 119088, + [SMALL_STATE(2869)] = 119102, + [SMALL_STATE(2870)] = 119116, + [SMALL_STATE(2871)] = 119130, + [SMALL_STATE(2872)] = 119144, + [SMALL_STATE(2873)] = 119160, + [SMALL_STATE(2874)] = 119174, + [SMALL_STATE(2875)] = 119188, + [SMALL_STATE(2876)] = 119202, + [SMALL_STATE(2877)] = 119216, + [SMALL_STATE(2878)] = 119230, + [SMALL_STATE(2879)] = 119244, + [SMALL_STATE(2880)] = 119258, + [SMALL_STATE(2881)] = 119278, + [SMALL_STATE(2882)] = 119292, + [SMALL_STATE(2883)] = 119306, + [SMALL_STATE(2884)] = 119320, + [SMALL_STATE(2885)] = 119334, + [SMALL_STATE(2886)] = 119348, + [SMALL_STATE(2887)] = 119368, + [SMALL_STATE(2888)] = 119382, + [SMALL_STATE(2889)] = 119402, + [SMALL_STATE(2890)] = 119416, + [SMALL_STATE(2891)] = 119430, + [SMALL_STATE(2892)] = 119444, + [SMALL_STATE(2893)] = 119458, + [SMALL_STATE(2894)] = 119472, + [SMALL_STATE(2895)] = 119486, + [SMALL_STATE(2896)] = 119503, + [SMALL_STATE(2897)] = 119518, + [SMALL_STATE(2898)] = 119533, + [SMALL_STATE(2899)] = 119548, + [SMALL_STATE(2900)] = 119565, + [SMALL_STATE(2901)] = 119580, + [SMALL_STATE(2902)] = 119595, + [SMALL_STATE(2903)] = 119610, + [SMALL_STATE(2904)] = 119625, + [SMALL_STATE(2905)] = 119642, + [SMALL_STATE(2906)] = 119659, + [SMALL_STATE(2907)] = 119676, + [SMALL_STATE(2908)] = 119693, + [SMALL_STATE(2909)] = 119710, + [SMALL_STATE(2910)] = 119727, + [SMALL_STATE(2911)] = 119744, + [SMALL_STATE(2912)] = 119761, + [SMALL_STATE(2913)] = 119778, + [SMALL_STATE(2914)] = 119791, + [SMALL_STATE(2915)] = 119810, + [SMALL_STATE(2916)] = 119827, + [SMALL_STATE(2917)] = 119842, + [SMALL_STATE(2918)] = 119859, + [SMALL_STATE(2919)] = 119876, + [SMALL_STATE(2920)] = 119893, + [SMALL_STATE(2921)] = 119910, + [SMALL_STATE(2922)] = 119925, + [SMALL_STATE(2923)] = 119938, + [SMALL_STATE(2924)] = 119957, + [SMALL_STATE(2925)] = 119972, + [SMALL_STATE(2926)] = 119989, + [SMALL_STATE(2927)] = 120008, + [SMALL_STATE(2928)] = 120023, + [SMALL_STATE(2929)] = 120042, + [SMALL_STATE(2930)] = 120057, + [SMALL_STATE(2931)] = 120070, + [SMALL_STATE(2932)] = 120087, + [SMALL_STATE(2933)] = 120104, + [SMALL_STATE(2934)] = 120121, + [SMALL_STATE(2935)] = 120138, + [SMALL_STATE(2936)] = 120155, + [SMALL_STATE(2937)] = 120172, + [SMALL_STATE(2938)] = 120187, + [SMALL_STATE(2939)] = 120202, + [SMALL_STATE(2940)] = 120219, + [SMALL_STATE(2941)] = 120231, + [SMALL_STATE(2942)] = 120245, + [SMALL_STATE(2943)] = 120259, + [SMALL_STATE(2944)] = 120273, + [SMALL_STATE(2945)] = 120287, + [SMALL_STATE(2946)] = 120301, + [SMALL_STATE(2947)] = 120315, + [SMALL_STATE(2948)] = 120329, + [SMALL_STATE(2949)] = 120341, + [SMALL_STATE(2950)] = 120353, + [SMALL_STATE(2951)] = 120367, + [SMALL_STATE(2952)] = 120381, + [SMALL_STATE(2953)] = 120395, + [SMALL_STATE(2954)] = 120409, + [SMALL_STATE(2955)] = 120425, + [SMALL_STATE(2956)] = 120439, + [SMALL_STATE(2957)] = 120451, + [SMALL_STATE(2958)] = 120465, + [SMALL_STATE(2959)] = 120481, + [SMALL_STATE(2960)] = 120493, + [SMALL_STATE(2961)] = 120505, + [SMALL_STATE(2962)] = 120517, + [SMALL_STATE(2963)] = 120533, + [SMALL_STATE(2964)] = 120547, + [SMALL_STATE(2965)] = 120561, + [SMALL_STATE(2966)] = 120577, + [SMALL_STATE(2967)] = 120589, + [SMALL_STATE(2968)] = 120605, + [SMALL_STATE(2969)] = 120617, + [SMALL_STATE(2970)] = 120631, + [SMALL_STATE(2971)] = 120645, + [SMALL_STATE(2972)] = 120657, + [SMALL_STATE(2973)] = 120669, + [SMALL_STATE(2974)] = 120681, + [SMALL_STATE(2975)] = 120695, + [SMALL_STATE(2976)] = 120707, + [SMALL_STATE(2977)] = 120719, + [SMALL_STATE(2978)] = 120731, + [SMALL_STATE(2979)] = 120743, + [SMALL_STATE(2980)] = 120757, + [SMALL_STATE(2981)] = 120773, + [SMALL_STATE(2982)] = 120787, + [SMALL_STATE(2983)] = 120801, + [SMALL_STATE(2984)] = 120815, + [SMALL_STATE(2985)] = 120829, + [SMALL_STATE(2986)] = 120843, + [SMALL_STATE(2987)] = 120857, + [SMALL_STATE(2988)] = 120871, + [SMALL_STATE(2989)] = 120885, + [SMALL_STATE(2990)] = 120899, + [SMALL_STATE(2991)] = 120911, + [SMALL_STATE(2992)] = 120925, + [SMALL_STATE(2993)] = 120939, + [SMALL_STATE(2994)] = 120953, + [SMALL_STATE(2995)] = 120966, + [SMALL_STATE(2996)] = 120979, + [SMALL_STATE(2997)] = 120992, + [SMALL_STATE(2998)] = 121005, + [SMALL_STATE(2999)] = 121018, + [SMALL_STATE(3000)] = 121031, + [SMALL_STATE(3001)] = 121044, + [SMALL_STATE(3002)] = 121057, + [SMALL_STATE(3003)] = 121070, + [SMALL_STATE(3004)] = 121083, + [SMALL_STATE(3005)] = 121096, + [SMALL_STATE(3006)] = 121107, + [SMALL_STATE(3007)] = 121120, + [SMALL_STATE(3008)] = 121133, + [SMALL_STATE(3009)] = 121146, + [SMALL_STATE(3010)] = 121159, + [SMALL_STATE(3011)] = 121172, + [SMALL_STATE(3012)] = 121185, + [SMALL_STATE(3013)] = 121198, + [SMALL_STATE(3014)] = 121211, + [SMALL_STATE(3015)] = 121224, + [SMALL_STATE(3016)] = 121237, + [SMALL_STATE(3017)] = 121250, + [SMALL_STATE(3018)] = 121263, + [SMALL_STATE(3019)] = 121276, + [SMALL_STATE(3020)] = 121289, + [SMALL_STATE(3021)] = 121302, + [SMALL_STATE(3022)] = 121315, + [SMALL_STATE(3023)] = 121328, + [SMALL_STATE(3024)] = 121341, + [SMALL_STATE(3025)] = 121354, + [SMALL_STATE(3026)] = 121367, + [SMALL_STATE(3027)] = 121380, + [SMALL_STATE(3028)] = 121393, + [SMALL_STATE(3029)] = 121406, + [SMALL_STATE(3030)] = 121419, + [SMALL_STATE(3031)] = 121432, + [SMALL_STATE(3032)] = 121445, + [SMALL_STATE(3033)] = 121458, + [SMALL_STATE(3034)] = 121471, + [SMALL_STATE(3035)] = 121484, + [SMALL_STATE(3036)] = 121497, + [SMALL_STATE(3037)] = 121510, + [SMALL_STATE(3038)] = 121523, + [SMALL_STATE(3039)] = 121536, + [SMALL_STATE(3040)] = 121549, + [SMALL_STATE(3041)] = 121562, + [SMALL_STATE(3042)] = 121575, + [SMALL_STATE(3043)] = 121588, + [SMALL_STATE(3044)] = 121601, + [SMALL_STATE(3045)] = 121614, + [SMALL_STATE(3046)] = 121627, + [SMALL_STATE(3047)] = 121640, + [SMALL_STATE(3048)] = 121653, + [SMALL_STATE(3049)] = 121666, + [SMALL_STATE(3050)] = 121679, + [SMALL_STATE(3051)] = 121692, + [SMALL_STATE(3052)] = 121703, + [SMALL_STATE(3053)] = 121716, + [SMALL_STATE(3054)] = 121729, + [SMALL_STATE(3055)] = 121742, + [SMALL_STATE(3056)] = 121755, + [SMALL_STATE(3057)] = 121766, + [SMALL_STATE(3058)] = 121779, + [SMALL_STATE(3059)] = 121792, + [SMALL_STATE(3060)] = 121803, + [SMALL_STATE(3061)] = 121814, + [SMALL_STATE(3062)] = 121827, + [SMALL_STATE(3063)] = 121840, + [SMALL_STATE(3064)] = 121851, + [SMALL_STATE(3065)] = 121864, + [SMALL_STATE(3066)] = 121877, + [SMALL_STATE(3067)] = 121890, + [SMALL_STATE(3068)] = 121903, + [SMALL_STATE(3069)] = 121914, + [SMALL_STATE(3070)] = 121927, + [SMALL_STATE(3071)] = 121940, + [SMALL_STATE(3072)] = 121953, + [SMALL_STATE(3073)] = 121966, + [SMALL_STATE(3074)] = 121979, + [SMALL_STATE(3075)] = 121992, + [SMALL_STATE(3076)] = 122005, + [SMALL_STATE(3077)] = 122018, + [SMALL_STATE(3078)] = 122029, + [SMALL_STATE(3079)] = 122042, + [SMALL_STATE(3080)] = 122055, + [SMALL_STATE(3081)] = 122068, + [SMALL_STATE(3082)] = 122079, + [SMALL_STATE(3083)] = 122090, + [SMALL_STATE(3084)] = 122103, + [SMALL_STATE(3085)] = 122116, + [SMALL_STATE(3086)] = 122129, + [SMALL_STATE(3087)] = 122142, + [SMALL_STATE(3088)] = 122155, + [SMALL_STATE(3089)] = 122168, + [SMALL_STATE(3090)] = 122181, + [SMALL_STATE(3091)] = 122194, + [SMALL_STATE(3092)] = 122207, + [SMALL_STATE(3093)] = 122220, + [SMALL_STATE(3094)] = 122233, + [SMALL_STATE(3095)] = 122246, + [SMALL_STATE(3096)] = 122259, + [SMALL_STATE(3097)] = 122272, + [SMALL_STATE(3098)] = 122283, + [SMALL_STATE(3099)] = 122296, + [SMALL_STATE(3100)] = 122309, + [SMALL_STATE(3101)] = 122320, + [SMALL_STATE(3102)] = 122333, + [SMALL_STATE(3103)] = 122346, + [SMALL_STATE(3104)] = 122359, + [SMALL_STATE(3105)] = 122372, + [SMALL_STATE(3106)] = 122383, + [SMALL_STATE(3107)] = 122396, + [SMALL_STATE(3108)] = 122409, + [SMALL_STATE(3109)] = 122422, + [SMALL_STATE(3110)] = 122435, + [SMALL_STATE(3111)] = 122446, + [SMALL_STATE(3112)] = 122459, + [SMALL_STATE(3113)] = 122472, + [SMALL_STATE(3114)] = 122483, + [SMALL_STATE(3115)] = 122496, + [SMALL_STATE(3116)] = 122509, + [SMALL_STATE(3117)] = 122522, + [SMALL_STATE(3118)] = 122535, + [SMALL_STATE(3119)] = 122548, + [SMALL_STATE(3120)] = 122559, + [SMALL_STATE(3121)] = 122572, + [SMALL_STATE(3122)] = 122585, + [SMALL_STATE(3123)] = 122598, + [SMALL_STATE(3124)] = 122611, + [SMALL_STATE(3125)] = 122624, + [SMALL_STATE(3126)] = 122637, + [SMALL_STATE(3127)] = 122650, + [SMALL_STATE(3128)] = 122663, + [SMALL_STATE(3129)] = 122676, + [SMALL_STATE(3130)] = 122689, + [SMALL_STATE(3131)] = 122702, + [SMALL_STATE(3132)] = 122715, + [SMALL_STATE(3133)] = 122728, + [SMALL_STATE(3134)] = 122741, + [SMALL_STATE(3135)] = 122754, + [SMALL_STATE(3136)] = 122767, + [SMALL_STATE(3137)] = 122780, + [SMALL_STATE(3138)] = 122793, + [SMALL_STATE(3139)] = 122806, + [SMALL_STATE(3140)] = 122819, + [SMALL_STATE(3141)] = 122832, + [SMALL_STATE(3142)] = 122845, + [SMALL_STATE(3143)] = 122858, + [SMALL_STATE(3144)] = 122871, + [SMALL_STATE(3145)] = 122884, + [SMALL_STATE(3146)] = 122897, + [SMALL_STATE(3147)] = 122910, + [SMALL_STATE(3148)] = 122923, + [SMALL_STATE(3149)] = 122936, + [SMALL_STATE(3150)] = 122949, + [SMALL_STATE(3151)] = 122962, + [SMALL_STATE(3152)] = 122975, + [SMALL_STATE(3153)] = 122985, + [SMALL_STATE(3154)] = 122993, + [SMALL_STATE(3155)] = 123001, + [SMALL_STATE(3156)] = 123009, + [SMALL_STATE(3157)] = 123019, + [SMALL_STATE(3158)] = 123027, + [SMALL_STATE(3159)] = 123035, + [SMALL_STATE(3160)] = 123043, + [SMALL_STATE(3161)] = 123051, + [SMALL_STATE(3162)] = 123061, + [SMALL_STATE(3163)] = 123071, + [SMALL_STATE(3164)] = 123081, + [SMALL_STATE(3165)] = 123091, + [SMALL_STATE(3166)] = 123101, + [SMALL_STATE(3167)] = 123111, + [SMALL_STATE(3168)] = 123121, + [SMALL_STATE(3169)] = 123131, + [SMALL_STATE(3170)] = 123141, + [SMALL_STATE(3171)] = 123151, + [SMALL_STATE(3172)] = 123161, + [SMALL_STATE(3173)] = 123171, + [SMALL_STATE(3174)] = 123181, + [SMALL_STATE(3175)] = 123191, + [SMALL_STATE(3176)] = 123201, + [SMALL_STATE(3177)] = 123209, + [SMALL_STATE(3178)] = 123219, + [SMALL_STATE(3179)] = 123229, + [SMALL_STATE(3180)] = 123239, + [SMALL_STATE(3181)] = 123249, + [SMALL_STATE(3182)] = 123257, + [SMALL_STATE(3183)] = 123267, + [SMALL_STATE(3184)] = 123277, + [SMALL_STATE(3185)] = 123287, + [SMALL_STATE(3186)] = 123297, + [SMALL_STATE(3187)] = 123307, + [SMALL_STATE(3188)] = 123317, + [SMALL_STATE(3189)] = 123327, + [SMALL_STATE(3190)] = 123337, + [SMALL_STATE(3191)] = 123347, + [SMALL_STATE(3192)] = 123357, + [SMALL_STATE(3193)] = 123367, + [SMALL_STATE(3194)] = 123377, + [SMALL_STATE(3195)] = 123387, + [SMALL_STATE(3196)] = 123397, + [SMALL_STATE(3197)] = 123405, + [SMALL_STATE(3198)] = 123415, + [SMALL_STATE(3199)] = 123425, + [SMALL_STATE(3200)] = 123435, + [SMALL_STATE(3201)] = 123445, + [SMALL_STATE(3202)] = 123455, + [SMALL_STATE(3203)] = 123463, + [SMALL_STATE(3204)] = 123471, + [SMALL_STATE(3205)] = 123479, + [SMALL_STATE(3206)] = 123487, + [SMALL_STATE(3207)] = 123497, + [SMALL_STATE(3208)] = 123505, + [SMALL_STATE(3209)] = 123515, + [SMALL_STATE(3210)] = 123525, + [SMALL_STATE(3211)] = 123535, + [SMALL_STATE(3212)] = 123543, + [SMALL_STATE(3213)] = 123553, + [SMALL_STATE(3214)] = 123563, + [SMALL_STATE(3215)] = 123573, + [SMALL_STATE(3216)] = 123583, + [SMALL_STATE(3217)] = 123591, + [SMALL_STATE(3218)] = 123601, + [SMALL_STATE(3219)] = 123611, + [SMALL_STATE(3220)] = 123621, + [SMALL_STATE(3221)] = 123631, + [SMALL_STATE(3222)] = 123641, + [SMALL_STATE(3223)] = 123651, + [SMALL_STATE(3224)] = 123661, + [SMALL_STATE(3225)] = 123669, + [SMALL_STATE(3226)] = 123679, + [SMALL_STATE(3227)] = 123687, + [SMALL_STATE(3228)] = 123697, + [SMALL_STATE(3229)] = 123707, + [SMALL_STATE(3230)] = 123715, + [SMALL_STATE(3231)] = 123725, + [SMALL_STATE(3232)] = 123733, + [SMALL_STATE(3233)] = 123741, + [SMALL_STATE(3234)] = 123751, + [SMALL_STATE(3235)] = 123759, + [SMALL_STATE(3236)] = 123769, + [SMALL_STATE(3237)] = 123779, + [SMALL_STATE(3238)] = 123787, + [SMALL_STATE(3239)] = 123795, + [SMALL_STATE(3240)] = 123803, + [SMALL_STATE(3241)] = 123811, + [SMALL_STATE(3242)] = 123821, + [SMALL_STATE(3243)] = 123831, + [SMALL_STATE(3244)] = 123841, + [SMALL_STATE(3245)] = 123849, + [SMALL_STATE(3246)] = 123859, + [SMALL_STATE(3247)] = 123867, + [SMALL_STATE(3248)] = 123875, + [SMALL_STATE(3249)] = 123885, + [SMALL_STATE(3250)] = 123893, + [SMALL_STATE(3251)] = 123901, + [SMALL_STATE(3252)] = 123911, + [SMALL_STATE(3253)] = 123919, + [SMALL_STATE(3254)] = 123929, + [SMALL_STATE(3255)] = 123937, + [SMALL_STATE(3256)] = 123947, + [SMALL_STATE(3257)] = 123957, + [SMALL_STATE(3258)] = 123967, + [SMALL_STATE(3259)] = 123975, + [SMALL_STATE(3260)] = 123985, + [SMALL_STATE(3261)] = 123993, + [SMALL_STATE(3262)] = 124001, + [SMALL_STATE(3263)] = 124011, + [SMALL_STATE(3264)] = 124019, + [SMALL_STATE(3265)] = 124027, + [SMALL_STATE(3266)] = 124037, + [SMALL_STATE(3267)] = 124045, + [SMALL_STATE(3268)] = 124055, + [SMALL_STATE(3269)] = 124065, + [SMALL_STATE(3270)] = 124073, + [SMALL_STATE(3271)] = 124080, + [SMALL_STATE(3272)] = 124087, + [SMALL_STATE(3273)] = 124094, + [SMALL_STATE(3274)] = 124101, + [SMALL_STATE(3275)] = 124108, + [SMALL_STATE(3276)] = 124115, + [SMALL_STATE(3277)] = 124122, + [SMALL_STATE(3278)] = 124129, + [SMALL_STATE(3279)] = 124136, + [SMALL_STATE(3280)] = 124143, + [SMALL_STATE(3281)] = 124150, + [SMALL_STATE(3282)] = 124157, + [SMALL_STATE(3283)] = 124164, + [SMALL_STATE(3284)] = 124171, + [SMALL_STATE(3285)] = 124178, + [SMALL_STATE(3286)] = 124185, + [SMALL_STATE(3287)] = 124192, + [SMALL_STATE(3288)] = 124199, + [SMALL_STATE(3289)] = 124206, + [SMALL_STATE(3290)] = 124213, + [SMALL_STATE(3291)] = 124220, + [SMALL_STATE(3292)] = 124227, + [SMALL_STATE(3293)] = 124234, + [SMALL_STATE(3294)] = 124241, + [SMALL_STATE(3295)] = 124248, + [SMALL_STATE(3296)] = 124255, + [SMALL_STATE(3297)] = 124262, + [SMALL_STATE(3298)] = 124269, + [SMALL_STATE(3299)] = 124276, + [SMALL_STATE(3300)] = 124283, + [SMALL_STATE(3301)] = 124290, + [SMALL_STATE(3302)] = 124297, + [SMALL_STATE(3303)] = 124304, + [SMALL_STATE(3304)] = 124311, + [SMALL_STATE(3305)] = 124318, + [SMALL_STATE(3306)] = 124325, + [SMALL_STATE(3307)] = 124332, + [SMALL_STATE(3308)] = 124339, + [SMALL_STATE(3309)] = 124346, + [SMALL_STATE(3310)] = 124353, + [SMALL_STATE(3311)] = 124360, + [SMALL_STATE(3312)] = 124367, + [SMALL_STATE(3313)] = 124374, + [SMALL_STATE(3314)] = 124381, + [SMALL_STATE(3315)] = 124388, + [SMALL_STATE(3316)] = 124395, + [SMALL_STATE(3317)] = 124402, + [SMALL_STATE(3318)] = 124409, + [SMALL_STATE(3319)] = 124416, + [SMALL_STATE(3320)] = 124423, + [SMALL_STATE(3321)] = 124430, + [SMALL_STATE(3322)] = 124437, + [SMALL_STATE(3323)] = 124444, + [SMALL_STATE(3324)] = 124451, + [SMALL_STATE(3325)] = 124458, + [SMALL_STATE(3326)] = 124465, + [SMALL_STATE(3327)] = 124472, + [SMALL_STATE(3328)] = 124479, + [SMALL_STATE(3329)] = 124486, + [SMALL_STATE(3330)] = 124493, + [SMALL_STATE(3331)] = 124500, + [SMALL_STATE(3332)] = 124507, + [SMALL_STATE(3333)] = 124514, + [SMALL_STATE(3334)] = 124521, + [SMALL_STATE(3335)] = 124528, + [SMALL_STATE(3336)] = 124535, + [SMALL_STATE(3337)] = 124542, + [SMALL_STATE(3338)] = 124549, + [SMALL_STATE(3339)] = 124556, + [SMALL_STATE(3340)] = 124563, + [SMALL_STATE(3341)] = 124570, + [SMALL_STATE(3342)] = 124577, + [SMALL_STATE(3343)] = 124584, + [SMALL_STATE(3344)] = 124591, + [SMALL_STATE(3345)] = 124598, + [SMALL_STATE(3346)] = 124605, + [SMALL_STATE(3347)] = 124612, + [SMALL_STATE(3348)] = 124619, + [SMALL_STATE(3349)] = 124626, + [SMALL_STATE(3350)] = 124633, + [SMALL_STATE(3351)] = 124640, + [SMALL_STATE(3352)] = 124647, + [SMALL_STATE(3353)] = 124654, + [SMALL_STATE(3354)] = 124661, + [SMALL_STATE(3355)] = 124668, + [SMALL_STATE(3356)] = 124675, + [SMALL_STATE(3357)] = 124682, + [SMALL_STATE(3358)] = 124689, + [SMALL_STATE(3359)] = 124696, + [SMALL_STATE(3360)] = 124703, + [SMALL_STATE(3361)] = 124710, + [SMALL_STATE(3362)] = 124717, + [SMALL_STATE(3363)] = 124724, + [SMALL_STATE(3364)] = 124731, + [SMALL_STATE(3365)] = 124738, + [SMALL_STATE(3366)] = 124745, + [SMALL_STATE(3367)] = 124752, + [SMALL_STATE(3368)] = 124759, + [SMALL_STATE(3369)] = 124766, + [SMALL_STATE(3370)] = 124773, + [SMALL_STATE(3371)] = 124780, + [SMALL_STATE(3372)] = 124787, + [SMALL_STATE(3373)] = 124794, + [SMALL_STATE(3374)] = 124801, + [SMALL_STATE(3375)] = 124808, + [SMALL_STATE(3376)] = 124815, + [SMALL_STATE(3377)] = 124822, + [SMALL_STATE(3378)] = 124829, + [SMALL_STATE(3379)] = 124836, + [SMALL_STATE(3380)] = 124843, + [SMALL_STATE(3381)] = 124850, + [SMALL_STATE(3382)] = 124857, + [SMALL_STATE(3383)] = 124864, + [SMALL_STATE(3384)] = 124871, + [SMALL_STATE(3385)] = 124878, + [SMALL_STATE(3386)] = 124885, + [SMALL_STATE(3387)] = 124892, + [SMALL_STATE(3388)] = 124899, + [SMALL_STATE(3389)] = 124906, + [SMALL_STATE(3390)] = 124913, + [SMALL_STATE(3391)] = 124920, + [SMALL_STATE(3392)] = 124927, + [SMALL_STATE(3393)] = 124934, + [SMALL_STATE(3394)] = 124941, + [SMALL_STATE(3395)] = 124948, + [SMALL_STATE(3396)] = 124955, + [SMALL_STATE(3397)] = 124962, + [SMALL_STATE(3398)] = 124969, + [SMALL_STATE(3399)] = 124976, + [SMALL_STATE(3400)] = 124983, + [SMALL_STATE(3401)] = 124990, + [SMALL_STATE(3402)] = 124997, + [SMALL_STATE(3403)] = 125004, + [SMALL_STATE(3404)] = 125011, + [SMALL_STATE(3405)] = 125018, + [SMALL_STATE(3406)] = 125025, + [SMALL_STATE(3407)] = 125032, + [SMALL_STATE(3408)] = 125039, + [SMALL_STATE(3409)] = 125046, + [SMALL_STATE(3410)] = 125053, + [SMALL_STATE(3411)] = 125060, + [SMALL_STATE(3412)] = 125067, + [SMALL_STATE(3413)] = 125074, + [SMALL_STATE(3414)] = 125081, + [SMALL_STATE(3415)] = 125088, + [SMALL_STATE(3416)] = 125095, + [SMALL_STATE(3417)] = 125102, + [SMALL_STATE(3418)] = 125109, + [SMALL_STATE(3419)] = 125116, + [SMALL_STATE(3420)] = 125123, + [SMALL_STATE(3421)] = 125130, + [SMALL_STATE(3422)] = 125137, + [SMALL_STATE(3423)] = 125144, + [SMALL_STATE(3424)] = 125151, + [SMALL_STATE(3425)] = 125158, + [SMALL_STATE(3426)] = 125165, + [SMALL_STATE(3427)] = 125172, + [SMALL_STATE(3428)] = 125179, + [SMALL_STATE(3429)] = 125186, + [SMALL_STATE(3430)] = 125193, + [SMALL_STATE(3431)] = 125200, + [SMALL_STATE(3432)] = 125207, + [SMALL_STATE(3433)] = 125214, + [SMALL_STATE(3434)] = 125221, + [SMALL_STATE(3435)] = 125228, + [SMALL_STATE(3436)] = 125235, + [SMALL_STATE(3437)] = 125242, + [SMALL_STATE(3438)] = 125249, + [SMALL_STATE(3439)] = 125256, + [SMALL_STATE(3440)] = 125263, + [SMALL_STATE(3441)] = 125270, + [SMALL_STATE(3442)] = 125277, + [SMALL_STATE(3443)] = 125284, + [SMALL_STATE(3444)] = 125291, + [SMALL_STATE(3445)] = 125298, + [SMALL_STATE(3446)] = 125305, + [SMALL_STATE(3447)] = 125312, + [SMALL_STATE(3448)] = 125319, + [SMALL_STATE(3449)] = 125326, + [SMALL_STATE(3450)] = 125333, + [SMALL_STATE(3451)] = 125340, + [SMALL_STATE(3452)] = 125347, + [SMALL_STATE(3453)] = 125354, + [SMALL_STATE(3454)] = 125361, + [SMALL_STATE(3455)] = 125368, + [SMALL_STATE(3456)] = 125375, + [SMALL_STATE(3457)] = 125382, + [SMALL_STATE(3458)] = 125389, + [SMALL_STATE(3459)] = 125396, + [SMALL_STATE(3460)] = 125403, + [SMALL_STATE(3461)] = 125410, + [SMALL_STATE(3462)] = 125417, + [SMALL_STATE(3463)] = 125424, + [SMALL_STATE(3464)] = 125431, + [SMALL_STATE(3465)] = 125438, + [SMALL_STATE(3466)] = 125445, + [SMALL_STATE(3467)] = 125452, + [SMALL_STATE(3468)] = 125459, + [SMALL_STATE(3469)] = 125466, + [SMALL_STATE(3470)] = 125473, + [SMALL_STATE(3471)] = 125480, + [SMALL_STATE(3472)] = 125487, + [SMALL_STATE(3473)] = 125494, + [SMALL_STATE(3474)] = 125501, + [SMALL_STATE(3475)] = 125508, + [SMALL_STATE(3476)] = 125515, + [SMALL_STATE(3477)] = 125522, + [SMALL_STATE(3478)] = 125529, + [SMALL_STATE(3479)] = 125536, + [SMALL_STATE(3480)] = 125543, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -126230,3787 +126476,3792 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 36), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 37), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 45), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 49), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), - [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(347), - [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3160), - [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1524), - [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(136), - [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(138), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2397), - [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3357), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(122), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(94), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(251), - [269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1531), - [272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1534), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(174), - [278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(245), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2376), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2513), - [287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(529), - [290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2753), - [293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(441), - [296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2516), - [299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(117), - [302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(116), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(115), - [308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2795), - [311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3111), - [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), - [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), - [332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(347), - [359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3160), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1524), - [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(136), - [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(138), - [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2397), - [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3357), - [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(122), - [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(94), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(251), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1531), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1534), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(174), - [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(245), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2376), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2513), - [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(529), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2753), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(441), - [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2516), - [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(117), - [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(116), - [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(115), - [425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2795), - [428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3111), - [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(282), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2558), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(277), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2751), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2536), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(41), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(40), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(45), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(158), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), - [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3062), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), - [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), - [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(294), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2563), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(346), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2746), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2544), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(102), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(93), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(27), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(163), - [534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3057), - [537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(492), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2551), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(402), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2779), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2548), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(108), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(107), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(106), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(167), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3074), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 21), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 21), - [613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 1), - [615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 1), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 8), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 8), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(292), - [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2228), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2566), - [674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(286), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2757), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2541), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(44), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(43), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(48), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 10), - [702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 10), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(455), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2518), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(386), - [719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2777), - [722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2584), - [725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(81), - [728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(80), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(82), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(181), - [737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3068), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), - [784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(373), - [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2202), - [790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2555), - [793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(298), - [796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2728), - [799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2509), - [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(127), - [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(130), - [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(32), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [835] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(353), - [838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2542), - [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(299), - [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2747), - [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2519), - [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(38), - [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(37), - [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(42), - [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(195), - [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 4), - [876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4), - [878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 4), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 5), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(476), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2279), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2513), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(529), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2753), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2516), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(117), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(116), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(115), - [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(465), - [958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2508), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(419), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2756), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2561), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(65), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(64), - [976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(79), - [979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(217), - [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), - [984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(472), - [1001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2282), - [1004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2552), - [1007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(516), - [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2721), - [1013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2553), - [1016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(126), - [1019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(125), - [1022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(131), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(663), - [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2525), - [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(587), - [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2740), - [1045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2514), - [1048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(105), - [1051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(104), - [1054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(103), - [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(233), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 4), - [1070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 4), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(672), - [1119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2587), - [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(575), - [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2769), - [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2522), - [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(78), - [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(76), - [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(25), - [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(248), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 45), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 49), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 37), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, .production_id = 36), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3), + [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4), + [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(371), + [248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3162), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3443), + [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1525), + [257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(139), + [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(137), + [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 2), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2396), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3366), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(126), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(94), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(264), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1531), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(1534), + [286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(181), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(244), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2376), + [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2513), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(531), + [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2780), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(442), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2516), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(120), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(119), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(118), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(2794), + [322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements2, 2), SHIFT_REPEAT(3110), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(371), + [368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3162), + [371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3443), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1525), + [377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(139), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(137), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2396), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3366), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(126), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(94), + [395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(264), + [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1531), + [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(1534), + [404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(181), + [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(244), + [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2376), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2513), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(531), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2780), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(442), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2516), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(120), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(119), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(118), + [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(2794), + [440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), SHIFT_REPEAT(3110), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(284), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2531), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(288), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2772), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2515), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(41), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(40), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(45), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(158), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), + [474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3063), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2), + [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2), + [517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3), + [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 2), + [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4), + [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4), + [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(345), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2556), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(337), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2747), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2503), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(95), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(93), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(134), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(168), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3059), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(492), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2523), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(409), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2724), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2522), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(111), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(110), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(109), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(170), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3082), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 10), + [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 10), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, .production_id = 1), + [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, .production_id = 1), + [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, .production_id = 8), + [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, .production_id = 8), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(290), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2227), + [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2551), + [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(281), + [667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2758), + [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2518), + [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(44), + [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(43), + [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(48), + [682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, .production_id = 21), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, .production_id = 21), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(456), + [733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2580), + [736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(399), + [739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2770), + [742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(2578), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(81), + [748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(80), + [751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(82), + [754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(182), + [757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2), SHIFT_REPEAT(3077), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2), + [802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(359), + [805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2299), + [808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2529), + [811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(312), + [814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2739), + [817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2573), + [820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(130), + [823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(122), + [826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(30), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2), + [837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 4), + [839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 4), + [841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 4), + [843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1), + [849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 5), + [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(368), + [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2519), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(298), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2749), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2507), + [876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(38), + [879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(37), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(42), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(207), + [888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(477), + [909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2279), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2513), + [915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(531), + [918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2780), + [921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2516), + [924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(120), + [927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(119), + [930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(118), + [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), + [937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(470), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2282), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2526), + [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(516), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2748), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(2527), + [959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(131), + [962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(104), + [965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 20), SHIFT_REPEAT(26), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(465), + [1005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2572), + [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(420), + [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2730), + [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2562), + [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(65), + [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(61), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(107), + [1026] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(228), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements2, 4), + [1041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements2, 4), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(659), + [1060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2510), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(588), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2765), + [1069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2505), + [1072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(105), + [1075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(25), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(102), + [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(238), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(671), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2586), + [1128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(577), + [1131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2782), + [1134] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(2521), + [1137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(77), + [1140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(76), + [1143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(79), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2), SHIFT_REPEAT(245), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), [1155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 5), [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 4), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), - [1177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), - [1191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), - [1193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), - [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), - [1197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [1201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), - [1203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [1215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), - [1219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2447), - [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), - [1226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [1228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2401), - [1231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), - [1233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), - [1239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), - [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7), - [1253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2437), - [1262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [1270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7, .production_id = 27), - [1272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7, .production_id = 27), - [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 5), - [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 5), - [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 27), - [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 27), - [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 38), - [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 38), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6), - [1290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 5), - [1292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 5), - [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 27), - [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 27), - [1298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 32), - [1300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 32), - [1302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5), - [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 5), - [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 5), - [1310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 27), - [1312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 27), - [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), - [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), - [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), - [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 5), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 5), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2461), - [1355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), - [1357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(413), - [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), - [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), - [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [1374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), - [1378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), - [1380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2463), - [1409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(392), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 2), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 2), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), - [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expansion, 2), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expansion, 2), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [1448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2453), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [1453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2405), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [1472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2459), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [1481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(634), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2419), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [1501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(639), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2416), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(651), - [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2422), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [1549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(668), - [1552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2404), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [1565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2423), - [1568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(766), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2458), - [1580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2452), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2432), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(787), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(839), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(832), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(786), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(780), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(889), - [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(899), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(891), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(897), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1), + [1173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1), + [1179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 3), + [1181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 3), + [1183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1), + [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 18), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2445), + [1218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2), + [1220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [1224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2401), + [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1), + [1229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [1247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), + [1249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 13), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), + [1255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 7), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [1263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6), + [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [1273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2436), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, .production_id = 19), + [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [1284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 7, .production_id = 27), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 7, .production_id = 27), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 5), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 5), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 27), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 27), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 6, .production_id = 38), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 6, .production_id = 38), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 5), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 5), + [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 27), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 27), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5, .production_id = 32), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5, .production_id = 32), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 5), + [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 5), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 5), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 5), + [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4, .production_id = 27), + [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4, .production_id = 27), + [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), + [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), + [1332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, .production_id = 5), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, .production_id = 5), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [1358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3), + [1360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3), + [1362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), + [1364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, .production_id = 9), + [1366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2458), + [1369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), + [1371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(382), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_expansion, 2), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_expansion, 2), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, .production_id = 14), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, .production_id = 5), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2453), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, .production_id = 2), + [1417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, .production_id = 2), + [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2463), + [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(393), + [1425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), + [1433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, .production_id = 2), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [1441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3), + [1451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3), + [1453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [1465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2406), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [1484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2460), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [1495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(631), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [1502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2419), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(640), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2402), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(650), + [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2420), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [1563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(668), + [1566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2404), + [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, .production_id = 2), + [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2424), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(774), + [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [1591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2459), + [1594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2407), + [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2433), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(769), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(841), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(830), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [1633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(779), + [1636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(776), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(894), + [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(890), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(899), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(892), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [1723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), - [1787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [1735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2738), + [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [2135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), - [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [2431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [2481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), - [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), - [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), - [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), - [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [2813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), - [2819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), - [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [2859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [2915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), + [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [2491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [2763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [2783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [2793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [2809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [2811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [2815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [2821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [2827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [2829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [2847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [2849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [2851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [2853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [2855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [2863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), + [2867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [2869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [2879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [2889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [2895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [2901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [2905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [2907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), [2923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), [2925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [2981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [2999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [2931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [2933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [2941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [2943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [2955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [2965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [2967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), + [2969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [2977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [2979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [2983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [3001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1207), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [3153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), + [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [3227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [3331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), - [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [3753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2165), - [3756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1627), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2529), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2139), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2723), - [3770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2507), - [3773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(74), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(73), - [3779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(75), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [3816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [3818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), - [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2353), - [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3325), - [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2350), - [3829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2784), - [3832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), - [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), - [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2386), - [3841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3356), - [3844] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2340), - [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2789), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [3858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2351), - [3861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2347), - [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2790), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 3), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 3), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [3889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2392), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3329), - [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2364), - [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2786), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2433), - [3910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), - [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), - [3914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), - [3916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [3922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1707), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), - [3927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2376), - [3930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), - [3932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2795), - [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3100), - [3938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 12), - [3940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 12), - [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [3952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 11), - [3954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 11), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [3964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2426), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), - [3969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2588), - [3972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2448), - [3975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2768), - [3978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2528), - [3981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(62), - [3984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(61), - [3987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(63), - [3990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1899), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2443), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1830), - [4039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2417), - [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2411), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 2), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 72), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 72), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 67), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 67), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 66), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 66), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 65), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 65), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 64), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 64), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 30), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 30), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 29), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 29), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 55), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 55), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 54), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 54), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 53), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 53), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 52), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 52), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 51), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 51), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 50), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 50), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 30), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 30), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 29), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 29), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 26), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 26), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 40), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 40), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 39), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 39), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 30), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 30), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 29), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 29), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 26), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 26), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 33), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 33), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 31), - [4157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 31), - [4159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 30), - [4161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 30), - [4163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 29), - [4165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 29), - [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 26), - [4169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 26), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 28), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 28), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 26), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2), - [4207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2079), - [4216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2077), - [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 24), - [4223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 24), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), - [4229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), - [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2408), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), - [4240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2425), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), - [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), - [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 16), - [4253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 16), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 15), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 15), - [4259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), - [4261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), - [4265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), - [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2197), - [4282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [4342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [4370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [4374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [4384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 35), - [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2171), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [4413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 2), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2424), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [4532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [4552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2275), - [4555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2262), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [4564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2439), - [4567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [4569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2921), - [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2581), - [4575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2928), - [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2750), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2921), - [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2520), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(84), - [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(83), - [4593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(85), - [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2501), - [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2546), - [4602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2499), - [4605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2774), - [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2501), - [4611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2585), - [4614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(67), - [4617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(66), - [4620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(69), - [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 35), - [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 22), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [4631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 23), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [4659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2465), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [4664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [4672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 23), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 22), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 22), - [4732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 23), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [4736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [4740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 2), - [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [4820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [4824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [4902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [4930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [4936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [4990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2337), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [5043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [5081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [5125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [5135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [5139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [5167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [5237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [5255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [5269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [5287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [5319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2413), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [5410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2495), - [5413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), - [5415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [5419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2446), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), - [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [5626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [5644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [5770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2618), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [5821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), - [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 43), - [5983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 36), - [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [5987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 58), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 45), - [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 70), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 49), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 68), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 45), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [6017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 47), - [6019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 37), - [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [6057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [6059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [6061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 60), - [6063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 37), - [6065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 56), - [6067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 36), - [6069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 62), - [6071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 49), - [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [6117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [6119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 71), - [6121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 71), - [6123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 61), - [6125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 61), - [6127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 62), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 68), - [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 70), - [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 58), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 43), - [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 47), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [6179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 48), - [6181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 48), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 44), - [6195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 44), - [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [3477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [3523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [3585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [3593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [3599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [3639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [3671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [3677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), + [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2150), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), + [3766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(1627), + [3769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2525), + [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2160), + [3775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2750), + [3778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(2508), + [3781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(74), + [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(73), + [3787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(75), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), + [3826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2352), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3321), + [3832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2357), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2791), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), + [3840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, .production_id = 6), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), + [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2347), + [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2346), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2793), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [3867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2387), + [3870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3373), + [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2339), + [3876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2787), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2392), + [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(3329), + [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2363), + [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2), SHIFT_REPEAT(2788), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [3907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), + [3909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2376), + [3912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2), + [3914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(2794), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2), SHIFT_REPEAT(3100), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [3922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [3924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 4), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [3938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1743), + [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 11), + [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 11), + [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, .production_id = 3), + [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, .production_id = 3), + [3949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2430), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [3954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2), + [3956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2), + [3958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, .production_id = 12), + [3960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, .production_id = 12), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), + [3970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, .production_id = 17), + [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [4008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1900), + [4011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2403), + [4014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2417), + [4017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2440), + [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, .production_id = 2), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1753), + [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2425), + [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), + [4044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2589), + [4047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2444), + [4050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2774), + [4053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2582), + [4056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(62), + [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(60), + [4062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(63), + [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3), + [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [4071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 72), + [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 10, .production_id = 72), + [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 67), + [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 67), + [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 66), + [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 66), + [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 65), + [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 65), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 64), + [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 9, .production_id = 64), + [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 30), + [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 30), + [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, .production_id = 29), + [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, .production_id = 29), + [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 55), + [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 55), + [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 54), + [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 54), + [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 53), + [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 53), + [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 52), + [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 52), + [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 51), + [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 51), + [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 50), + [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 8, .production_id = 50), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 30), + [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 30), + [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, .production_id = 29), + [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, .production_id = 29), + [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 26), + [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 26), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), + [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 42), + [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 41), + [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 40), + [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 40), + [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 39), + [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 7, .production_id = 39), + [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 30), + [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 30), + [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, .production_id = 29), + [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, .production_id = 29), + [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 26), + [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 26), + [4169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 34), + [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 33), + [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, .production_id = 33), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 31), + [4179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 31), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 30), + [4183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 30), + [4185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, .production_id = 29), + [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, .production_id = 29), + [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 26), + [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 26), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3), + [4195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 28), + [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 28), + [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 26), + [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 26), + [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2423), + [4210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2), + [4212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2), + [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, .production_id = 24), + [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, .production_id = 24), + [4218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(1961), + [4221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2029), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 2), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 2), + [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2), + [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2), + [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2), + [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [4260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2409), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3), + [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3), + [4271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3), + [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, .production_id = 16), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 15), + [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 15), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [4303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2198), + [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, .production_id = 2), + [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [4412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2), + [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2139), + [4417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 35), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2421), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [4566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2923), + [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2570), + [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2927), + [4575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2738), + [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2923), + [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(2581), + [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(84), + [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(83), + [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2), SHIFT_REPEAT(85), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 22), + [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 25), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 23), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [4621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2500), + [4624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2547), + [4627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2499), + [4630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2767), + [4633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2500), + [4636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(2583), + [4639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(67), + [4642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(64), + [4645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2), SHIFT_REPEAT(68), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [4658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 35), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2), + [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2465), + [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2262), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 23), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2437), + [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 22), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [4699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2203), + [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2340), + [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [4735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 22), + [4737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 23), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [4757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [4767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expansion_repeat1, 1, .production_id = 2), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [4783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [5073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [5115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [5193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [5213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [5217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [5221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [5225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [5227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [5229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [5231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [5233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [5239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [5247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [5261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [5279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [5299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [5315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [5331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [5369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [5379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2414), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [5422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2496), + [5425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), + [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2446), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [5436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2630), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [5735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [5855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [5893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), + [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, .production_id = 2), + [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [5911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [5913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 70), + [5979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 49), + [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 47), + [5991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 37), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 43), + [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, .production_id = 36), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 68), + [6003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, .production_id = 45), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [6013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 58), + [6015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 45), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 60), + [6033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 37), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [6041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 62), + [6059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 49), + [6061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [6075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [6117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 56), + [6119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, .production_id = 36), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [6127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 56), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 71), + [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 71), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 60), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 62), + [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 44), + [6153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 44), + [6155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 68), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 59), + [6169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 59), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 58), + [6183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 70), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 47), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 60), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [6259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 59), - [6261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 59), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [6283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 69), - [6285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 69), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1132), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), - [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [6337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 56), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1088), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), - [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [6449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 63), - [6451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 63), - [6453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 57), - [6455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 57), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), - [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [6539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2766), - [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2557), - [6545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(47), - [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(46), - [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2733), - [6554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [6568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2669), - [6571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [6573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2803), - [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2530), - [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(97), - [6582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(96), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), - [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [6759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [6773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), - [6775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2), - [6777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), - [6793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2420), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [6802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3), - [6804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 3), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [6812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), - [6814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 1), - [6816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2845), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 57), + [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 57), + [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, .production_id = 69), + [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, .production_id = 69), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [6301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [6381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [6415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 48), + [6417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, .production_id = 48), + [6419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 61), + [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 61), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1111), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [6443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, .production_id = 43), + [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, .production_id = 63), + [6447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, .production_id = 63), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [6551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2671), + [6554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [6556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2825), + [6559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(2512), + [6562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(97), + [6565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(24), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [6570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2760), + [6573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2530), + [6576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(47), + [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(46), + [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), SHIFT_REPEAT(2734), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [6653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2641), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [6707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2652), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [6761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [6767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [6771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [6773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [6797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2422), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [6812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(2885), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 3), + [6823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 3), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1), + [6835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 1), + [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2), + [6851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_body, 2), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [6869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), [6927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), - [6929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(139), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [7002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 49), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 45), - [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [7042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3118), - [7045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 37), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 36), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 30), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [7095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 29), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 23), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [7219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2430), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 22), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [7280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 23), - [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [7292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2357), - [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 46), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 22), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [7319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [7333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [6929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2), SHIFT_REPEAT(138), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 45), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), + [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [7010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, .production_id = 49), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), + [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [7036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3113), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2684), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [7055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 37), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [7075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, .production_id = 36), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 30), + [7103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 29), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 23), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [7237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 22), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [7241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(2427), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [7282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 46), SHIFT_REPEAT(2358), + [7285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, .production_id = 46), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 23), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [7419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3176), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 23), - [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 22), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [7784] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 22), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [7435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2), SHIFT_REPEAT(3182), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), + [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 23), + [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 22), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminated_statement, 2), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), + [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [7794] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), }; #ifdef __cplusplus