From 66693d75759a30dd578a51f3001a5f5276a39354 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 14 Jul 2017 17:41:14 -0700 Subject: [PATCH] Add empty environment variable values --- corpus/commands.txt | 13 + grammar.js | 8 +- src/grammar.json | 17 +- src/parser.c | 16597 +++++++++++++++++++++--------------------- src/scanner.cc | 16 +- 5 files changed, 8357 insertions(+), 8294 deletions(-) diff --git a/corpus/commands.txt b/corpus/commands.txt index 6f008b8..892b2ee 100644 --- a/corpus/commands.txt +++ b/corpus/commands.txt @@ -79,6 +79,19 @@ VAR1=a VAR2="ok" git diff --word-diff=color (argument) (argument))) +=================================== +Empty environment variables +=================================== + +VAR1= +VAR2= echo + +--- + +(program + (environment_variable_assignment (variable_name)) + (command (environment_variable_assignment (variable_name)) (command_name))) + =================================== Pipelines =================================== diff --git a/grammar.js b/grammar.js index 0b09366..d574743 100644 --- a/grammar.js +++ b/grammar.js @@ -8,7 +8,8 @@ module.exports = grammar({ $._heredoc_beginning, $._heredoc_middle, $._heredoc_end, - $.file_descriptor + $.file_descriptor, + $._empty_value ], extras: $ => [ @@ -149,7 +150,10 @@ module.exports = grammar({ environment_variable_assignment: $ => seq( rename($.leading_word, 'variable_name'), '=', - $.value + choice( + $.value, + $._empty_value + ) ), value: $ => choice( diff --git a/src/grammar.json b/src/grammar.json index 69052b7..e4cd4e6 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -547,8 +547,17 @@ "value": "=" }, { - "type": "SYMBOL", - "name": "value" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "value" + }, + { + "type": "SYMBOL", + "name": "_empty_value" + } + ] } ] }, @@ -927,6 +936,10 @@ { "type": "SYMBOL", "name": "file_descriptor" + }, + { + "type": "SYMBOL", + "name": "_empty_value" } ], "inline": [ diff --git a/src/parser.c b/src/parser.c index d342edd..dde0bc1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,9 +5,9 @@ #define LANGUAGE_VERSION 3 #define STATE_COUNT 574 -#define SYMBOL_COUNT 89 -#define TOKEN_COUNT 57 -#define EXTERNAL_TOKEN_COUNT 5 +#define SYMBOL_COUNT 90 +#define TOKEN_COUNT 58 +#define EXTERNAL_TOKEN_COUNT 6 #define MAX_RENAME_SEQUENCE_LENGTH 7 enum { @@ -16,93 +16,94 @@ enum { sym__heredoc_middle = 3, sym__heredoc_end = 4, sym_file_descriptor = 5, - anon_sym_while = 6, - anon_sym_do = 7, - anon_sym_done = 8, - anon_sym_if = 9, - anon_sym_then = 10, - anon_sym_fi = 11, - anon_sym_elif = 12, - anon_sym_else = 13, - anon_sym_case = 14, - anon_sym_in = 15, - anon_sym_esac = 16, - anon_sym_RPAREN = 17, - anon_sym_SEMI_SEMI = 18, - anon_sym_function = 19, - anon_sym_LPAREN = 20, - anon_sym_LBRACE = 21, - anon_sym_RBRACE = 22, - anon_sym_LBRACK = 23, - anon_sym_RBRACK = 24, - anon_sym_LBRACK_LBRACK = 25, - anon_sym_RBRACK_RBRACK = 26, - anon_sym_COLON = 27, - aux_sym_SLASH_BSLASHs_PLUS_SLASH = 28, - anon_sym_PIPE = 29, - anon_sym_PIPE_AMP = 30, - anon_sym_AMP_AMP = 31, - anon_sym_PIPE_PIPE = 32, - anon_sym_EQ = 33, - anon_sym_DQUOTE = 34, - sym__quoted_chars = 35, - sym_single_quoted_argument = 36, - anon_sym_DOLLAR = 37, - anon_sym_DOLLAR_LBRACE = 38, - anon_sym_COLON_QMARK = 39, - anon_sym_COLON_DASH = 40, - anon_sym_DOLLAR_LPAREN = 41, - anon_sym_LT = 42, - anon_sym_GT = 43, - anon_sym_GT_GT = 44, - anon_sym_AMP_GT = 45, - anon_sym_AMP_GT_GT = 46, - anon_sym_LT_AMP = 47, - anon_sym_GT_AMP = 48, - anon_sym_LT_LT = 49, - anon_sym_LT_LT_DASH = 50, - sym_leading_word = 51, - sym_word = 52, - sym_comment = 53, - anon_sym_SEMI = 54, - anon_sym_LF = 55, - anon_sym_AMP = 56, - sym_program = 57, - sym__terminated_statement = 58, - sym_while_statement = 59, - sym_do_group = 60, - sym_if_statement = 61, - sym_elif_clause = 62, - sym_else_clause = 63, - sym_case_statement = 64, - sym_case_item = 65, - sym_function_definition = 66, - sym_compound_command = 67, - sym_bracket_command = 68, - sym_command = 69, - sym_pipeline = 70, - sym_list = 71, - sym_subshell = 72, - sym_environment_variable_assignment = 73, - sym_quoted_argument = 74, - sym_expansion = 75, - sym_operator_expansion = 76, - sym_command_substitution = 77, - sym_file_redirect = 78, - sym_heredoc_redirect = 79, - sym_heredoc = 80, - aux_sym_program_repeat1 = 81, - aux_sym_if_statement_repeat1 = 82, - aux_sym_case_statement_repeat1 = 83, - aux_sym_bracket_command_repeat1 = 84, - aux_sym_command_repeat1 = 85, - aux_sym_command_repeat2 = 86, - aux_sym_quoted_argument_repeat1 = 87, - aux_sym_heredoc_repeat1 = 88, - rename_sym_1 = 89, - rename_sym_argument = 90, - rename_sym_command_name = 91, - rename_sym_variable_name = 92, + sym__empty_value = 6, + anon_sym_while = 7, + anon_sym_do = 8, + anon_sym_done = 9, + anon_sym_if = 10, + anon_sym_then = 11, + anon_sym_fi = 12, + anon_sym_elif = 13, + anon_sym_else = 14, + anon_sym_case = 15, + anon_sym_in = 16, + anon_sym_esac = 17, + anon_sym_RPAREN = 18, + anon_sym_SEMI_SEMI = 19, + anon_sym_function = 20, + anon_sym_LPAREN = 21, + anon_sym_LBRACE = 22, + anon_sym_RBRACE = 23, + anon_sym_LBRACK = 24, + anon_sym_RBRACK = 25, + anon_sym_LBRACK_LBRACK = 26, + anon_sym_RBRACK_RBRACK = 27, + anon_sym_COLON = 28, + aux_sym_SLASH_BSLASHs_PLUS_SLASH = 29, + anon_sym_PIPE = 30, + anon_sym_PIPE_AMP = 31, + anon_sym_AMP_AMP = 32, + anon_sym_PIPE_PIPE = 33, + anon_sym_EQ = 34, + anon_sym_DQUOTE = 35, + sym__quoted_chars = 36, + sym_single_quoted_argument = 37, + anon_sym_DOLLAR = 38, + anon_sym_DOLLAR_LBRACE = 39, + anon_sym_COLON_QMARK = 40, + anon_sym_COLON_DASH = 41, + anon_sym_DOLLAR_LPAREN = 42, + anon_sym_LT = 43, + anon_sym_GT = 44, + anon_sym_GT_GT = 45, + anon_sym_AMP_GT = 46, + anon_sym_AMP_GT_GT = 47, + anon_sym_LT_AMP = 48, + anon_sym_GT_AMP = 49, + anon_sym_LT_LT = 50, + anon_sym_LT_LT_DASH = 51, + sym_leading_word = 52, + sym_word = 53, + sym_comment = 54, + anon_sym_SEMI = 55, + anon_sym_LF = 56, + anon_sym_AMP = 57, + sym_program = 58, + sym__terminated_statement = 59, + sym_while_statement = 60, + sym_do_group = 61, + sym_if_statement = 62, + sym_elif_clause = 63, + sym_else_clause = 64, + sym_case_statement = 65, + sym_case_item = 66, + sym_function_definition = 67, + sym_compound_command = 68, + sym_bracket_command = 69, + sym_command = 70, + sym_pipeline = 71, + sym_list = 72, + sym_subshell = 73, + sym_environment_variable_assignment = 74, + sym_quoted_argument = 75, + sym_expansion = 76, + sym_operator_expansion = 77, + sym_command_substitution = 78, + sym_file_redirect = 79, + sym_heredoc_redirect = 80, + sym_heredoc = 81, + aux_sym_program_repeat1 = 82, + aux_sym_if_statement_repeat1 = 83, + aux_sym_case_statement_repeat1 = 84, + aux_sym_bracket_command_repeat1 = 85, + aux_sym_command_repeat1 = 86, + aux_sym_command_repeat2 = 87, + aux_sym_quoted_argument_repeat1 = 88, + aux_sym_heredoc_repeat1 = 89, + rename_sym_1 = 90, + rename_sym_argument = 91, + rename_sym_command_name = 92, + rename_sym_variable_name = 93, }; static const char *ts_symbol_names[] = { @@ -111,6 +112,7 @@ static const char *ts_symbol_names[] = { [sym__heredoc_middle] = "_heredoc_middle", [sym__heredoc_end] = "_heredoc_end", [sym_file_descriptor] = "file_descriptor", + [sym__empty_value] = "_empty_value", [ts_builtin_sym_end] = "END", [anon_sym_while] = "while", [anon_sym_do] = "do", @@ -232,6 +234,12 @@ static const TSSymbolMetadata ts_symbol_metadata[SYMBOL_COUNT] = { .structural = true, .extra = false, }, + [sym__empty_value] = { + .visible = false, + .named = true, + .structural = true, + .extra = false, + }, [ts_builtin_sym_end] = { .visible = false, .named = true, @@ -7529,7 +7537,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [60] = {.lex_state = 164, .external_lex_state = 2}, [61] = {.lex_state = 197}, [62] = {.lex_state = 189, .external_lex_state = 2}, - [63] = {.lex_state = 108}, + [63] = {.lex_state = 108, .external_lex_state = 4}, [64] = {.lex_state = 195, .external_lex_state = 2}, [65] = {.lex_state = 199, .external_lex_state = 2}, [66] = {.lex_state = 106, .external_lex_state = 2}, @@ -7585,7 +7593,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [116] = {.lex_state = 164, .external_lex_state = 2}, [117] = {.lex_state = 195, .external_lex_state = 2}, [118] = {.lex_state = 195, .external_lex_state = 2}, - [119] = {.lex_state = 234, .external_lex_state = 4}, + [119] = {.lex_state = 234, .external_lex_state = 5}, [120] = {.lex_state = 195, .external_lex_state = 2}, [121] = {.lex_state = 195, .external_lex_state = 2}, [122] = {.lex_state = 130}, @@ -7603,8 +7611,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [134] = {.lex_state = 237}, [135] = {.lex_state = 189, .external_lex_state = 2}, [136] = {.lex_state = 195, .external_lex_state = 2}, - [137] = {.lex_state = 130}, - [138] = {.lex_state = 160, .external_lex_state = 2}, + [137] = {.lex_state = 160, .external_lex_state = 2}, + [138] = {.lex_state = 130}, [139] = {.lex_state = 175}, [140] = {.lex_state = 116}, [141] = {.lex_state = 164, .external_lex_state = 2}, @@ -7615,7 +7623,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [146] = {.lex_state = 160, .external_lex_state = 2}, [147] = {.lex_state = 189, .external_lex_state = 2}, [148] = {.lex_state = 189, .external_lex_state = 2}, - [149] = {.lex_state = 108}, + [149] = {.lex_state = 108, .external_lex_state = 4}, [150] = {.lex_state = 195, .external_lex_state = 2}, [151] = {.lex_state = 156}, [152] = {.lex_state = 211, .external_lex_state = 2}, @@ -7668,11 +7676,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [199] = {.lex_state = 195, .external_lex_state = 2}, [200] = {.lex_state = 221}, [201] = {.lex_state = 197}, - [202] = {.lex_state = 234, .external_lex_state = 4}, + [202] = {.lex_state = 234, .external_lex_state = 5}, [203] = {.lex_state = 195, .external_lex_state = 2}, [204] = {.lex_state = 175}, [205] = {.lex_state = 116}, - [206] = {.lex_state = 234, .external_lex_state = 4}, + [206] = {.lex_state = 234, .external_lex_state = 5}, [207] = {.lex_state = 130}, [208] = {.lex_state = 108}, [209] = {.lex_state = 130}, @@ -7721,7 +7729,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [252] = {.lex_state = 255, .external_lex_state = 2}, [253] = {.lex_state = 255, .external_lex_state = 2}, [254] = {.lex_state = 255, .external_lex_state = 2}, - [255] = {.lex_state = 234, .external_lex_state = 4}, + [255] = {.lex_state = 234, .external_lex_state = 5}, [256] = {.lex_state = 255, .external_lex_state = 2}, [257] = {.lex_state = 255, .external_lex_state = 2}, [258] = {.lex_state = 226, .external_lex_state = 2}, @@ -7744,10 +7752,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [275] = {.lex_state = 195, .external_lex_state = 2}, [276] = {.lex_state = 108}, [277] = {.lex_state = 195, .external_lex_state = 2}, - [278] = {.lex_state = 234, .external_lex_state = 4}, - [279] = {.lex_state = 234, .external_lex_state = 4}, + [278] = {.lex_state = 234, .external_lex_state = 5}, + [279] = {.lex_state = 234, .external_lex_state = 5}, [280] = {.lex_state = 221}, - [281] = {.lex_state = 234, .external_lex_state = 4}, + [281] = {.lex_state = 234, .external_lex_state = 5}, [282] = {.lex_state = 195, .external_lex_state = 2}, [283] = {.lex_state = 259}, [284] = {.lex_state = 259}, @@ -7783,7 +7791,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [314] = {.lex_state = 253, .external_lex_state = 2}, [315] = {.lex_state = 255, .external_lex_state = 2}, [316] = {.lex_state = 255, .external_lex_state = 2}, - [317] = {.lex_state = 234, .external_lex_state = 4}, + [317] = {.lex_state = 234, .external_lex_state = 5}, [318] = {.lex_state = 255, .external_lex_state = 2}, [319] = {.lex_state = 253, .external_lex_state = 2}, [320] = {.lex_state = 253, .external_lex_state = 2}, @@ -7796,7 +7804,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [327] = {.lex_state = 259}, [328] = {.lex_state = 259}, [329] = {.lex_state = 259}, - [330] = {.lex_state = 234, .external_lex_state = 4}, + [330] = {.lex_state = 234, .external_lex_state = 5}, [331] = {.lex_state = 108}, [332] = {.lex_state = 130}, [333] = {.lex_state = 130}, @@ -7832,8 +7840,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [363] = {.lex_state = 247}, [364] = {.lex_state = 259}, [365] = {.lex_state = 259}, - [366] = {.lex_state = 234, .external_lex_state = 4}, - [367] = {.lex_state = 234, .external_lex_state = 4}, + [366] = {.lex_state = 234, .external_lex_state = 5}, + [367] = {.lex_state = 234, .external_lex_state = 5}, [368] = {.lex_state = 253, .external_lex_state = 2}, [369] = {.lex_state = 253, .external_lex_state = 2}, [370] = {.lex_state = 156}, @@ -7843,17 +7851,17 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [374] = {.lex_state = 156}, [375] = {.lex_state = 263, .external_lex_state = 2}, [376] = {.lex_state = 118, .external_lex_state = 2}, - [377] = {.lex_state = 320, .external_lex_state = 5}, + [377] = {.lex_state = 320, .external_lex_state = 6}, [378] = {.lex_state = 325, .external_lex_state = 2}, - [379] = {.lex_state = 108}, + [379] = {.lex_state = 108, .external_lex_state = 4}, [380] = {.lex_state = 329, .external_lex_state = 2}, - [381] = {.lex_state = 320, .external_lex_state = 5}, + [381] = {.lex_state = 320, .external_lex_state = 6}, [382] = {.lex_state = 108}, [383] = {.lex_state = 193, .external_lex_state = 3}, [384] = {.lex_state = 334, .external_lex_state = 2}, [385] = {.lex_state = 380, .external_lex_state = 2}, - [386] = {.lex_state = 234, .external_lex_state = 4}, - [387] = {.lex_state = 234, .external_lex_state = 4}, + [386] = {.lex_state = 234, .external_lex_state = 5}, + [387] = {.lex_state = 234, .external_lex_state = 5}, [388] = {.lex_state = 380, .external_lex_state = 2}, [389] = {.lex_state = 100}, [390] = {.lex_state = 199, .external_lex_state = 2}, @@ -7865,7 +7873,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [396] = {.lex_state = 382}, [397] = {.lex_state = 160, .external_lex_state = 2}, [398] = {.lex_state = 384, .external_lex_state = 2}, - [399] = {.lex_state = 320, .external_lex_state = 5}, + [399] = {.lex_state = 320, .external_lex_state = 6}, [400] = {.lex_state = 320, .external_lex_state = 2}, [401] = {.lex_state = 394, .external_lex_state = 2}, [402] = {.lex_state = 380, .external_lex_state = 2}, @@ -7877,7 +7885,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [408] = {.lex_state = 164, .external_lex_state = 2}, [409] = {.lex_state = 380, .external_lex_state = 2}, [410] = {.lex_state = 130}, - [411] = {.lex_state = 234, .external_lex_state = 4}, + [411] = {.lex_state = 234, .external_lex_state = 5}, [412] = {.lex_state = 215, .external_lex_state = 2}, [413] = {.lex_state = 247}, [414] = {.lex_state = 247}, @@ -7897,8 +7905,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [428] = {.lex_state = 164, .external_lex_state = 2}, [429] = {.lex_state = 402, .external_lex_state = 2}, [430] = {.lex_state = 384, .external_lex_state = 2}, - [431] = {.lex_state = 320, .external_lex_state = 5}, - [432] = {.lex_state = 320, .external_lex_state = 5}, + [431] = {.lex_state = 320, .external_lex_state = 6}, + [432] = {.lex_state = 320, .external_lex_state = 6}, [433] = {.lex_state = 130}, [434] = {.lex_state = 394, .external_lex_state = 2}, [435] = {.lex_state = 175}, @@ -7911,7 +7919,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [442] = {.lex_state = 108}, [443] = {.lex_state = 156}, [444] = {.lex_state = 320, .external_lex_state = 2}, - [445] = {.lex_state = 320, .external_lex_state = 5}, + [445] = {.lex_state = 320, .external_lex_state = 6}, [446] = {.lex_state = 247}, [447] = {.lex_state = 156}, [448] = {.lex_state = 245}, @@ -7944,7 +7952,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [475] = {.lex_state = 116}, [476] = {.lex_state = 164, .external_lex_state = 2}, [477] = {.lex_state = 380, .external_lex_state = 2}, - [478] = {.lex_state = 320, .external_lex_state = 5}, + [478] = {.lex_state = 320, .external_lex_state = 6}, [479] = {.lex_state = 402, .external_lex_state = 2}, [480] = {.lex_state = 130}, [481] = {.lex_state = 402, .external_lex_state = 2}, @@ -8048,6 +8056,7 @@ enum { ts_external_token__heredoc_middle, ts_external_token__heredoc_end, ts_external_token_file_descriptor, + ts_external_token__empty_value, }; static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { @@ -8056,15 +8065,17 @@ static TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_middle] = sym__heredoc_middle, [ts_external_token__heredoc_end] = sym__heredoc_end, [ts_external_token_file_descriptor] = sym_file_descriptor, + [ts_external_token__empty_value] = sym__empty_value, }; -static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { +static bool ts_external_scanner_states[7][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token__simple_heredoc] = true, [ts_external_token__heredoc_beginning] = true, [ts_external_token__heredoc_middle] = true, [ts_external_token__heredoc_end] = true, [ts_external_token_file_descriptor] = true, + [ts_external_token__empty_value] = true, }, [2] = { [ts_external_token_file_descriptor] = true, @@ -8074,10 +8085,13 @@ static bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__heredoc_beginning] = true, }, [4] = { + [ts_external_token__empty_value] = true, + }, + [5] = { [ts_external_token__heredoc_middle] = true, [ts_external_token__heredoc_end] = true, }, - [5] = { + [6] = { [ts_external_token__heredoc_middle] = true, [ts_external_token__heredoc_end] = true, [ts_external_token_file_descriptor] = true, @@ -8123,42 +8137,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym__heredoc_middle] = ACTIONS(5), [sym__heredoc_end] = ACTIONS(7), [sym_file_descriptor] = ACTIONS(9), - [ts_builtin_sym_end] = ACTIONS(11), - [anon_sym_while] = ACTIONS(13), - [anon_sym_do] = ACTIONS(15), - [anon_sym_done] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_then] = ACTIONS(21), - [anon_sym_fi] = ACTIONS(23), - [anon_sym_elif] = ACTIONS(25), - [anon_sym_else] = ACTIONS(27), - [anon_sym_case] = ACTIONS(29), - [anon_sym_in] = ACTIONS(31), - [anon_sym_esac] = ACTIONS(33), - [anon_sym_RPAREN] = ACTIONS(35), - [anon_sym_function] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(41), - [anon_sym_RBRACE] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(47), - [anon_sym_RBRACK_RBRACK] = ACTIONS(49), - [anon_sym_COLON] = ACTIONS(51), - [anon_sym_PIPE] = ACTIONS(53), - [anon_sym_PIPE_PIPE] = ACTIONS(55), - [anon_sym_EQ] = ACTIONS(57), - [anon_sym_DQUOTE] = ACTIONS(59), - [anon_sym_DOLLAR] = ACTIONS(61), - [anon_sym_LT] = ACTIONS(63), - [anon_sym_GT] = ACTIONS(63), - [anon_sym_GT_GT] = ACTIONS(65), - [anon_sym_LT_AMP] = ACTIONS(65), - [anon_sym_GT_AMP] = ACTIONS(65), - [anon_sym_LT_LT] = ACTIONS(67), - [anon_sym_LT_LT_DASH] = ACTIONS(69), - [sym_comment] = ACTIONS(71), - [anon_sym_SEMI] = ACTIONS(73), - [anon_sym_AMP] = ACTIONS(73), + [sym__empty_value] = ACTIONS(11), + [ts_builtin_sym_end] = ACTIONS(13), + [anon_sym_while] = ACTIONS(15), + [anon_sym_do] = ACTIONS(17), + [anon_sym_done] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_then] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(25), + [anon_sym_elif] = ACTIONS(27), + [anon_sym_else] = ACTIONS(29), + [anon_sym_case] = ACTIONS(31), + [anon_sym_in] = ACTIONS(33), + [anon_sym_esac] = ACTIONS(35), + [anon_sym_RPAREN] = ACTIONS(37), + [anon_sym_function] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(41), + [anon_sym_LBRACE] = ACTIONS(43), + [anon_sym_RBRACE] = ACTIONS(45), + [anon_sym_LBRACK] = ACTIONS(47), + [anon_sym_RBRACK] = ACTIONS(49), + [anon_sym_RBRACK_RBRACK] = ACTIONS(51), + [anon_sym_COLON] = ACTIONS(53), + [anon_sym_PIPE] = ACTIONS(55), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DQUOTE] = ACTIONS(61), + [anon_sym_DOLLAR] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(65), + [anon_sym_GT_GT] = ACTIONS(67), + [anon_sym_LT_AMP] = ACTIONS(67), + [anon_sym_GT_AMP] = ACTIONS(67), + [anon_sym_LT_LT] = ACTIONS(69), + [anon_sym_LT_LT_DASH] = ACTIONS(71), + [sym_comment] = ACTIONS(73), + [anon_sym_SEMI] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(75), }, [1] = { [sym_program] = STATE(14), @@ -8177,37 +8192,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(19), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [ts_builtin_sym_end] = ACTIONS(77), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [ts_builtin_sym_end] = ACTIONS(79), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [2] = { - [anon_sym_LT] = ACTIONS(103), - [anon_sym_GT] = ACTIONS(103), - [anon_sym_GT_GT] = ACTIONS(105), - [anon_sym_AMP_GT] = ACTIONS(103), - [anon_sym_AMP_GT_GT] = ACTIONS(105), - [anon_sym_LT_AMP] = ACTIONS(105), - [anon_sym_GT_AMP] = ACTIONS(105), - [sym_comment] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(105), + [anon_sym_GT] = ACTIONS(105), + [anon_sym_GT_GT] = ACTIONS(107), + [anon_sym_AMP_GT] = ACTIONS(105), + [anon_sym_AMP_GT_GT] = ACTIONS(107), + [anon_sym_LT_AMP] = ACTIONS(107), + [anon_sym_GT_AMP] = ACTIONS(107), + [sym_comment] = ACTIONS(73), }, [3] = { [sym__terminated_statement] = STATE(22), @@ -8224,26 +8239,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [4] = { [sym__terminated_statement] = STATE(25), @@ -8260,43 +8275,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [5] = { [sym_quoted_argument] = STATE(27), [sym_expansion] = STATE(27), [sym_operator_expansion] = STATE(27), [sym_command_substitution] = STATE(27), - [anon_sym_DQUOTE] = ACTIONS(107), - [sym_single_quoted_argument] = ACTIONS(109), - [anon_sym_DOLLAR] = ACTIONS(111), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(113), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(115), - [sym_word] = ACTIONS(117), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym_single_quoted_argument] = ACTIONS(111), + [anon_sym_DOLLAR] = ACTIONS(113), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(115), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(117), + [sym_word] = ACTIONS(119), + [sym_comment] = ACTIONS(73), }, [6] = { - [sym_leading_word] = ACTIONS(119), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(121), + [sym_comment] = ACTIONS(73), }, [7] = { [sym__terminated_statement] = STATE(15), @@ -8314,27 +8329,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(34), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_RPAREN] = ACTIONS(121), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(123), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [8] = { [sym_quoted_argument] = STATE(36), @@ -8342,13 +8357,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_expansion] = STATE(36), [sym_command_substitution] = STATE(36), [aux_sym_bracket_command_repeat1] = STATE(41), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_comment] = ACTIONS(73), }, [9] = { [sym_quoted_argument] = STATE(36), @@ -8356,163 +8371,145 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_expansion] = STATE(36), [sym_command_substitution] = STATE(36), [aux_sym_bracket_command_repeat1] = STATE(42), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(125), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(133), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(127), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(135), + [sym_comment] = ACTIONS(73), }, [10] = { [sym_file_redirect] = STATE(47), [sym_heredoc_redirect] = STATE(47), [aux_sym_command_repeat2] = STATE(48), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(137), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(139), - [anon_sym_PIPE] = ACTIONS(137), - [anon_sym_PIPE_AMP] = ACTIONS(137), - [anon_sym_AMP_AMP] = ACTIONS(137), - [anon_sym_PIPE_PIPE] = ACTIONS(137), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(137), - [anon_sym_LF] = ACTIONS(137), - [anon_sym_AMP] = ACTIONS(137), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(139), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(141), + [anon_sym_PIPE] = ACTIONS(139), + [anon_sym_PIPE_AMP] = ACTIONS(139), + [anon_sym_AMP_AMP] = ACTIONS(139), + [anon_sym_PIPE_PIPE] = ACTIONS(139), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_LF] = ACTIONS(139), + [anon_sym_AMP] = ACTIONS(139), }, [11] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(54), - [anon_sym_DQUOTE] = ACTIONS(147), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(149), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [12] = { [sym_quoted_argument] = STATE(56), [sym_expansion] = STATE(56), [sym_operator_expansion] = STATE(56), [sym_command_substitution] = STATE(56), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_single_quoted_argument] = ACTIONS(159), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(165), - [sym_word] = ACTIONS(167), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym_single_quoted_argument] = ACTIONS(161), + [anon_sym_DOLLAR] = ACTIONS(163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), + [sym_word] = ACTIONS(169), + [sym_comment] = ACTIONS(73), }, [13] = { [sym_file_redirect] = STATE(47), [sym_heredoc_redirect] = STATE(47), [aux_sym_command_repeat2] = STATE(64), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(169), - [anon_sym_LPAREN] = ACTIONS(171), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(173), - [anon_sym_PIPE] = ACTIONS(169), - [anon_sym_PIPE_AMP] = ACTIONS(169), - [anon_sym_AMP_AMP] = ACTIONS(169), - [anon_sym_PIPE_PIPE] = ACTIONS(169), - [anon_sym_EQ] = ACTIONS(175), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(169), - [anon_sym_LF] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(169), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(171), + [anon_sym_LPAREN] = ACTIONS(173), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(175), + [anon_sym_PIPE] = ACTIONS(171), + [anon_sym_PIPE_AMP] = ACTIONS(171), + [anon_sym_AMP_AMP] = ACTIONS(171), + [anon_sym_PIPE_PIPE] = ACTIONS(171), + [anon_sym_EQ] = ACTIONS(177), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(171), + [anon_sym_LF] = ACTIONS(171), + [anon_sym_AMP] = ACTIONS(171), }, [14] = { - [ts_builtin_sym_end] = ACTIONS(177), - [sym_comment] = ACTIONS(71), + [ts_builtin_sym_end] = ACTIONS(179), + [sym_comment] = ACTIONS(73), }, [15] = { - [sym_file_descriptor] = ACTIONS(179), - [ts_builtin_sym_end] = ACTIONS(179), - [anon_sym_while] = ACTIONS(181), - [anon_sym_done] = ACTIONS(181), - [anon_sym_if] = ACTIONS(181), - [anon_sym_fi] = ACTIONS(181), - [anon_sym_elif] = ACTIONS(181), - [anon_sym_else] = ACTIONS(181), - [anon_sym_case] = ACTIONS(181), - [anon_sym_RPAREN] = ACTIONS(179), - [anon_sym_SEMI_SEMI] = ACTIONS(179), - [anon_sym_function] = ACTIONS(181), - [anon_sym_LPAREN] = ACTIONS(179), - [anon_sym_RBRACE] = ACTIONS(179), - [anon_sym_LBRACK] = ACTIONS(181), - [anon_sym_LBRACK_LBRACK] = ACTIONS(181), - [anon_sym_COLON] = ACTIONS(179), - [anon_sym_DQUOTE] = ACTIONS(179), - [sym_single_quoted_argument] = ACTIONS(181), - [anon_sym_LT] = ACTIONS(181), - [anon_sym_GT] = ACTIONS(181), - [anon_sym_GT_GT] = ACTIONS(181), - [anon_sym_AMP_GT] = ACTIONS(181), - [anon_sym_AMP_GT_GT] = ACTIONS(181), - [anon_sym_LT_AMP] = ACTIONS(181), - [anon_sym_GT_AMP] = ACTIONS(181), - [sym_leading_word] = ACTIONS(183), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(181), + [ts_builtin_sym_end] = ACTIONS(181), + [anon_sym_while] = ACTIONS(183), + [anon_sym_done] = ACTIONS(183), + [anon_sym_if] = ACTIONS(183), + [anon_sym_fi] = ACTIONS(183), + [anon_sym_elif] = ACTIONS(183), + [anon_sym_else] = ACTIONS(183), + [anon_sym_case] = ACTIONS(183), + [anon_sym_RPAREN] = ACTIONS(181), + [anon_sym_SEMI_SEMI] = ACTIONS(181), + [anon_sym_function] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(181), + [anon_sym_RBRACE] = ACTIONS(181), + [anon_sym_LBRACK] = ACTIONS(183), + [anon_sym_LBRACK_LBRACK] = ACTIONS(183), + [anon_sym_COLON] = ACTIONS(181), + [anon_sym_DQUOTE] = ACTIONS(181), + [sym_single_quoted_argument] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(183), + [anon_sym_GT] = ACTIONS(183), + [anon_sym_GT_GT] = ACTIONS(183), + [anon_sym_AMP_GT] = ACTIONS(183), + [anon_sym_AMP_GT_GT] = ACTIONS(183), + [anon_sym_LT_AMP] = ACTIONS(183), + [anon_sym_GT_AMP] = ACTIONS(183), + [sym_leading_word] = ACTIONS(185), + [sym_comment] = ACTIONS(73), }, [16] = { - [anon_sym_SEMI_SEMI] = ACTIONS(185), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_PIPE_AMP] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_LF] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(187), }, [17] = { - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(185), - [anon_sym_COLON] = ACTIONS(193), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_PIPE_AMP] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(193), - [sym_single_quoted_argument] = ACTIONS(193), - [anon_sym_LT] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(193), - [anon_sym_GT_GT] = ACTIONS(193), - [anon_sym_AMP_GT] = ACTIONS(193), - [anon_sym_AMP_GT_GT] = ACTIONS(193), - [anon_sym_LT_AMP] = ACTIONS(193), - [anon_sym_GT_AMP] = ACTIONS(193), - [sym_leading_word] = ACTIONS(193), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(185), - [anon_sym_LF] = ACTIONS(185), - [anon_sym_AMP] = ACTIONS(185), - }, - [18] = { - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_COLON] = ACTIONS(191), - [anon_sym_DQUOTE] = ACTIONS(191), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_SEMI_SEMI] = ACTIONS(187), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(195), [sym_single_quoted_argument] = ACTIONS(195), [anon_sym_LT] = ACTIONS(195), [anon_sym_GT] = ACTIONS(195), @@ -8521,8 +8518,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(195), [anon_sym_LT_AMP] = ACTIONS(195), [anon_sym_GT_AMP] = ACTIONS(195), - [sym_leading_word] = ACTIONS(193), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(195), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(187), + [anon_sym_LF] = ACTIONS(187), + [anon_sym_AMP] = ACTIONS(187), + }, + [18] = { + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_COLON] = ACTIONS(193), + [anon_sym_DQUOTE] = ACTIONS(193), + [sym_single_quoted_argument] = ACTIONS(197), + [anon_sym_LT] = ACTIONS(197), + [anon_sym_GT] = ACTIONS(197), + [anon_sym_GT_GT] = ACTIONS(197), + [anon_sym_AMP_GT] = ACTIONS(197), + [anon_sym_AMP_GT_GT] = ACTIONS(197), + [anon_sym_LT_AMP] = ACTIONS(197), + [anon_sym_GT_AMP] = ACTIONS(197), + [sym_leading_word] = ACTIONS(195), + [sym_comment] = ACTIONS(73), }, [19] = { [sym__terminated_statement] = STATE(68), @@ -8539,130 +8554,130 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [ts_builtin_sym_end] = ACTIONS(197), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [ts_builtin_sym_end] = ACTIONS(199), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [20] = { [sym_environment_variable_assignment] = STATE(71), [sym_quoted_argument] = STATE(69), [sym_file_redirect] = STATE(71), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(199), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(201), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(203), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(201), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(205), + [sym_comment] = ACTIONS(73), }, [21] = { [sym_quoted_argument] = STATE(72), [sym_expansion] = STATE(72), [sym_operator_expansion] = STATE(72), [sym_command_substitution] = STATE(72), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_single_quoted_argument] = ACTIONS(205), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(165), - [sym_word] = ACTIONS(207), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym_single_quoted_argument] = ACTIONS(207), + [anon_sym_DOLLAR] = ACTIONS(163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), + [sym_word] = ACTIONS(209), + [sym_comment] = ACTIONS(73), }, [22] = { [sym_do_group] = STATE(75), - [anon_sym_do] = ACTIONS(209), - [sym_comment] = ACTIONS(71), + [anon_sym_do] = ACTIONS(211), + [sym_comment] = ACTIONS(73), }, [23] = { - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_PIPE_AMP] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LF] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), + [anon_sym_SEMI_SEMI] = ACTIONS(213), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_AMP] = ACTIONS(213), }, [24] = { - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(193), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_PIPE_AMP] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(189), - [anon_sym_PIPE_PIPE] = ACTIONS(189), - [anon_sym_DQUOTE] = ACTIONS(193), - [sym_single_quoted_argument] = ACTIONS(193), - [anon_sym_LT] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(193), - [anon_sym_GT_GT] = ACTIONS(193), - [anon_sym_AMP_GT] = ACTIONS(193), - [anon_sym_AMP_GT_GT] = ACTIONS(193), - [anon_sym_LT_AMP] = ACTIONS(193), - [anon_sym_GT_AMP] = ACTIONS(193), - [sym_leading_word] = ACTIONS(193), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LF] = ACTIONS(211), - [anon_sym_AMP] = ACTIONS(211), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_SEMI_SEMI] = ACTIONS(213), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(191), + [anon_sym_PIPE_PIPE] = ACTIONS(191), + [anon_sym_DQUOTE] = ACTIONS(195), + [sym_single_quoted_argument] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_AMP_GT] = ACTIONS(195), + [anon_sym_AMP_GT_GT] = ACTIONS(195), + [anon_sym_LT_AMP] = ACTIONS(195), + [anon_sym_GT_AMP] = ACTIONS(195), + [sym_leading_word] = ACTIONS(195), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(213), + [anon_sym_LF] = ACTIONS(213), + [anon_sym_AMP] = ACTIONS(213), }, [25] = { - [anon_sym_then] = ACTIONS(213), - [sym_comment] = ACTIONS(71), + [anon_sym_then] = ACTIONS(215), + [sym_comment] = ACTIONS(73), }, [26] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(79), - [anon_sym_DQUOTE] = ACTIONS(215), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(217), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [27] = { - [anon_sym_in] = ACTIONS(217), - [anon_sym_SEMI_SEMI] = ACTIONS(219), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(219), - [anon_sym_LF] = ACTIONS(219), - [anon_sym_AMP] = ACTIONS(219), + [anon_sym_in] = ACTIONS(219), + [anon_sym_SEMI_SEMI] = ACTIONS(221), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(221), + [anon_sym_LF] = ACTIONS(221), + [anon_sym_AMP] = ACTIONS(221), }, [28] = { - [anon_sym_DOLLAR] = ACTIONS(221), - [sym_word] = ACTIONS(223), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(223), + [sym_word] = ACTIONS(225), + [sym_comment] = ACTIONS(73), }, [29] = { - [sym_leading_word] = ACTIONS(225), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(227), + [sym_comment] = ACTIONS(73), }, [30] = { [sym_command] = STATE(88), @@ -8670,42 +8685,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [31] = { - [anon_sym_in] = ACTIONS(235), - [anon_sym_SEMI_SEMI] = ACTIONS(237), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(237), - [anon_sym_LF] = ACTIONS(237), - [anon_sym_AMP] = ACTIONS(237), + [anon_sym_in] = ACTIONS(237), + [anon_sym_SEMI_SEMI] = ACTIONS(239), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(239), + [anon_sym_LF] = ACTIONS(239), + [anon_sym_AMP] = ACTIONS(239), }, [32] = { - [anon_sym_LPAREN] = ACTIONS(239), - [sym_comment] = ACTIONS(71), + [anon_sym_LPAREN] = ACTIONS(241), + [sym_comment] = ACTIONS(73), }, [33] = { - [anon_sym_SEMI_SEMI] = ACTIONS(241), - [anon_sym_PIPE] = ACTIONS(241), - [anon_sym_PIPE_AMP] = ACTIONS(241), - [anon_sym_AMP_AMP] = ACTIONS(241), - [anon_sym_PIPE_PIPE] = ACTIONS(241), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_LF] = ACTIONS(241), - [anon_sym_AMP] = ACTIONS(241), + [anon_sym_SEMI_SEMI] = ACTIONS(243), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_PIPE_AMP] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(243), + [anon_sym_LF] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), }, [34] = { [sym__terminated_statement] = STATE(68), @@ -8722,59 +8737,59 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_RPAREN] = ACTIONS(243), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(245), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [35] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(95), - [anon_sym_DQUOTE] = ACTIONS(245), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(247), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [36] = { - [anon_sym_RBRACK] = ACTIONS(247), - [anon_sym_RBRACK_RBRACK] = ACTIONS(247), - [anon_sym_DQUOTE] = ACTIONS(249), - [sym_single_quoted_argument] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [sym_word] = ACTIONS(251), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACK] = ACTIONS(249), + [anon_sym_RBRACK_RBRACK] = ACTIONS(249), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_single_quoted_argument] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [sym_word] = ACTIONS(253), + [sym_comment] = ACTIONS(73), }, [37] = { - [anon_sym_DOLLAR] = ACTIONS(253), - [sym_word] = ACTIONS(255), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(255), + [sym_word] = ACTIONS(257), + [sym_comment] = ACTIONS(73), }, [38] = { - [sym_leading_word] = ACTIONS(257), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(259), + [sym_comment] = ACTIONS(73), }, [39] = { [sym_command] = STATE(99), @@ -8782,68 +8797,68 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [40] = { - [anon_sym_RBRACK] = ACTIONS(259), - [anon_sym_RBRACK_RBRACK] = ACTIONS(259), - [anon_sym_DQUOTE] = ACTIONS(261), - [sym_single_quoted_argument] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [sym_word] = ACTIONS(263), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACK] = ACTIONS(261), + [anon_sym_RBRACK_RBRACK] = ACTIONS(261), + [anon_sym_DQUOTE] = ACTIONS(263), + [sym_single_quoted_argument] = ACTIONS(261), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), + [sym_word] = ACTIONS(265), + [sym_comment] = ACTIONS(73), }, [41] = { [sym_quoted_argument] = STATE(101), [sym_expansion] = STATE(101), [sym_operator_expansion] = STATE(101), [sym_command_substitution] = STATE(101), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(269), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACK] = ACTIONS(267), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(271), + [sym_comment] = ACTIONS(73), }, [42] = { [sym_quoted_argument] = STATE(101), [sym_expansion] = STATE(101), [sym_operator_expansion] = STATE(101), [sym_command_substitution] = STATE(101), - [anon_sym_RBRACK_RBRACK] = ACTIONS(265), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(267), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(269), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACK_RBRACK] = ACTIONS(267), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(269), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(271), + [sym_comment] = ACTIONS(73), }, [43] = { - [anon_sym_LT] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(271), - [anon_sym_GT_GT] = ACTIONS(273), - [anon_sym_AMP_GT] = ACTIONS(271), - [anon_sym_AMP_GT_GT] = ACTIONS(273), - [anon_sym_LT_AMP] = ACTIONS(273), - [anon_sym_GT_AMP] = ACTIONS(273), - [sym_comment] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(273), + [anon_sym_GT] = ACTIONS(273), + [anon_sym_GT_GT] = ACTIONS(275), + [anon_sym_AMP_GT] = ACTIONS(273), + [anon_sym_AMP_GT_GT] = ACTIONS(275), + [anon_sym_LT_AMP] = ACTIONS(275), + [anon_sym_GT_AMP] = ACTIONS(275), + [sym_comment] = ACTIONS(73), }, [44] = { [sym_quoted_argument] = STATE(105), @@ -8854,133 +8869,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(47), [aux_sym_bracket_command_repeat1] = STATE(110), [aux_sym_command_repeat2] = STATE(111), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_DQUOTE] = ACTIONS(277), - [sym_single_quoted_argument] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_word] = ACTIONS(287), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_PIPE_AMP] = ACTIONS(277), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_DQUOTE] = ACTIONS(279), + [sym_single_quoted_argument] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_word] = ACTIONS(289), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), }, [45] = { [sym_quoted_argument] = STATE(113), [sym_expansion] = STATE(113), [sym_operator_expansion] = STATE(113), [sym_command_substitution] = STATE(113), - [anon_sym_DQUOTE] = ACTIONS(289), - [sym_single_quoted_argument] = ACTIONS(291), - [anon_sym_DOLLAR] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [sym_word] = ACTIONS(299), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(291), + [sym_single_quoted_argument] = ACTIONS(293), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [sym_word] = ACTIONS(301), + [sym_comment] = ACTIONS(73), }, [46] = { [sym_heredoc] = STATE(120), - [sym__simple_heredoc] = ACTIONS(301), - [sym__heredoc_beginning] = ACTIONS(303), - [sym_comment] = ACTIONS(71), + [sym__simple_heredoc] = ACTIONS(303), + [sym__heredoc_beginning] = ACTIONS(305), + [sym_comment] = ACTIONS(73), }, [47] = { - [sym_file_descriptor] = ACTIONS(305), - [anon_sym_SEMI_SEMI] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_PIPE_AMP] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_PIPE_PIPE] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_AMP_GT] = ACTIONS(307), - [anon_sym_AMP_GT_GT] = ACTIONS(307), - [anon_sym_LT_AMP] = ACTIONS(307), - [anon_sym_GT_AMP] = ACTIONS(307), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_LT_LT_DASH] = ACTIONS(307), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(307), - [anon_sym_LF] = ACTIONS(307), - [anon_sym_AMP] = ACTIONS(307), + [sym_file_descriptor] = ACTIONS(307), + [anon_sym_SEMI_SEMI] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_PIPE_AMP] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT_DASH] = ACTIONS(309), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_LF] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(309), }, [48] = { [sym_file_redirect] = STATE(121), [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [anon_sym_PIPE] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(277), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_PIPE_AMP] = ACTIONS(277), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), }, [49] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [50] = { - [anon_sym_DQUOTE] = ACTIONS(313), - [sym__quoted_chars] = ACTIONS(315), - [anon_sym_DOLLAR] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(315), + [sym__quoted_chars] = ACTIONS(317), + [anon_sym_DOLLAR] = ACTIONS(315), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(315), + [sym_comment] = ACTIONS(147), }, [51] = { - [anon_sym_DOLLAR] = ACTIONS(317), - [sym_word] = ACTIONS(319), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(319), + [sym_word] = ACTIONS(321), + [sym_comment] = ACTIONS(73), }, [52] = { - [sym_leading_word] = ACTIONS(321), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(323), + [sym_comment] = ACTIONS(73), }, [53] = { [sym_command] = STATE(125), @@ -8988,66 +9003,66 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [54] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(323), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(325), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [55] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(129), - [anon_sym_DQUOTE] = ACTIONS(327), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(329), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [56] = { - [sym_file_descriptor] = ACTIONS(329), - [anon_sym_COLON] = ACTIONS(329), - [anon_sym_DQUOTE] = ACTIONS(329), - [sym_single_quoted_argument] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(331), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_AMP_GT_GT] = ACTIONS(331), - [anon_sym_LT_AMP] = ACTIONS(331), - [anon_sym_GT_AMP] = ACTIONS(331), - [sym_leading_word] = ACTIONS(333), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(331), + [anon_sym_COLON] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(331), + [sym_single_quoted_argument] = ACTIONS(333), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(333), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(333), + [anon_sym_LT_AMP] = ACTIONS(333), + [anon_sym_GT_AMP] = ACTIONS(333), + [sym_leading_word] = ACTIONS(335), + [sym_comment] = ACTIONS(73), }, [57] = { - [anon_sym_DOLLAR] = ACTIONS(335), - [sym_word] = ACTIONS(337), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(337), + [sym_word] = ACTIONS(339), + [sym_comment] = ACTIONS(73), }, [58] = { - [sym_leading_word] = ACTIONS(339), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(341), + [sym_comment] = ACTIONS(73), }, [59] = { [sym_command] = STATE(133), @@ -9055,38 +9070,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [60] = { - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_COLON] = ACTIONS(341), - [anon_sym_DQUOTE] = ACTIONS(341), - [sym_single_quoted_argument] = ACTIONS(343), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(343), - [anon_sym_AMP_GT] = ACTIONS(343), - [anon_sym_AMP_GT_GT] = ACTIONS(343), - [anon_sym_LT_AMP] = ACTIONS(343), - [anon_sym_GT_AMP] = ACTIONS(343), - [sym_leading_word] = ACTIONS(345), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_COLON] = ACTIONS(343), + [anon_sym_DQUOTE] = ACTIONS(343), + [sym_single_quoted_argument] = ACTIONS(345), + [anon_sym_LT] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(345), + [anon_sym_AMP_GT] = ACTIONS(345), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(345), + [anon_sym_GT_AMP] = ACTIONS(345), + [sym_leading_word] = ACTIONS(347), + [sym_comment] = ACTIONS(73), }, [61] = { - [anon_sym_RPAREN] = ACTIONS(347), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(349), + [sym_comment] = ACTIONS(73), }, [62] = { [sym_quoted_argument] = STATE(105), @@ -9097,99 +9112,100 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(47), [aux_sym_bracket_command_repeat1] = STATE(135), [aux_sym_command_repeat2] = STATE(136), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(349), - [anon_sym_PIPE] = ACTIONS(349), - [anon_sym_PIPE_AMP] = ACTIONS(349), - [anon_sym_AMP_AMP] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(349), - [anon_sym_DQUOTE] = ACTIONS(277), - [sym_single_quoted_argument] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_word] = ACTIONS(287), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(349), - [anon_sym_LF] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_PIPE_AMP] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(351), + [anon_sym_DQUOTE] = ACTIONS(279), + [sym_single_quoted_argument] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_word] = ACTIONS(289), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(351), }, [63] = { - [sym_quoted_argument] = STATE(138), - [sym_expansion] = STATE(138), - [sym_operator_expansion] = STATE(138), - [sym_command_substitution] = STATE(138), - [anon_sym_DQUOTE] = ACTIONS(351), - [sym_single_quoted_argument] = ACTIONS(353), - [anon_sym_DOLLAR] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(357), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(359), - [sym_word] = ACTIONS(361), - [sym_comment] = ACTIONS(71), + [sym_quoted_argument] = STATE(137), + [sym_expansion] = STATE(137), + [sym_operator_expansion] = STATE(137), + [sym_command_substitution] = STATE(137), + [sym__empty_value] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(355), + [sym_single_quoted_argument] = ACTIONS(357), + [anon_sym_DOLLAR] = ACTIONS(359), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(361), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(363), + [sym_word] = ACTIONS(365), + [sym_comment] = ACTIONS(73), }, [64] = { [sym_file_redirect] = STATE(121), [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(349), - [anon_sym_PIPE] = ACTIONS(349), - [anon_sym_PIPE_AMP] = ACTIONS(349), - [anon_sym_AMP_AMP] = ACTIONS(349), - [anon_sym_PIPE_PIPE] = ACTIONS(349), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(349), - [anon_sym_LF] = ACTIONS(349), - [anon_sym_AMP] = ACTIONS(349), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(351), + [anon_sym_PIPE] = ACTIONS(351), + [anon_sym_PIPE_AMP] = ACTIONS(351), + [anon_sym_AMP_AMP] = ACTIONS(351), + [anon_sym_PIPE_PIPE] = ACTIONS(351), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(351), + [anon_sym_LF] = ACTIONS(351), + [anon_sym_AMP] = ACTIONS(351), }, [65] = { - [sym_file_descriptor] = ACTIONS(363), - [ts_builtin_sym_end] = ACTIONS(363), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(365), - [anon_sym_done] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_then] = ACTIONS(365), - [anon_sym_fi] = ACTIONS(365), - [anon_sym_elif] = ACTIONS(365), - [anon_sym_else] = ACTIONS(365), - [anon_sym_case] = ACTIONS(365), - [anon_sym_RPAREN] = ACTIONS(363), - [anon_sym_SEMI_SEMI] = ACTIONS(363), - [anon_sym_function] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(363), - [anon_sym_LBRACK] = ACTIONS(365), - [anon_sym_LBRACK_LBRACK] = ACTIONS(365), - [anon_sym_COLON] = ACTIONS(363), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_single_quoted_argument] = ACTIONS(365), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_AMP_GT] = ACTIONS(365), - [anon_sym_AMP_GT_GT] = ACTIONS(365), - [anon_sym_LT_AMP] = ACTIONS(365), - [anon_sym_GT_AMP] = ACTIONS(365), - [sym_leading_word] = ACTIONS(367), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(367), + [ts_builtin_sym_end] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(369), + [anon_sym_done] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_then] = ACTIONS(369), + [anon_sym_fi] = ACTIONS(369), + [anon_sym_elif] = ACTIONS(369), + [anon_sym_else] = ACTIONS(369), + [anon_sym_case] = ACTIONS(369), + [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_SEMI_SEMI] = ACTIONS(367), + [anon_sym_function] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(367), + [anon_sym_DQUOTE] = ACTIONS(367), + [sym_single_quoted_argument] = ACTIONS(369), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym_leading_word] = ACTIONS(371), + [sym_comment] = ACTIONS(73), }, [66] = { [sym_while_statement] = STATE(143), @@ -9205,26 +9221,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [67] = { [sym_while_statement] = STATE(145), @@ -9240,152 +9256,152 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [68] = { - [sym_file_descriptor] = ACTIONS(369), - [ts_builtin_sym_end] = ACTIONS(369), - [anon_sym_while] = ACTIONS(371), - [anon_sym_done] = ACTIONS(371), - [anon_sym_if] = ACTIONS(371), - [anon_sym_fi] = ACTIONS(371), - [anon_sym_elif] = ACTIONS(371), - [anon_sym_else] = ACTIONS(371), - [anon_sym_case] = ACTIONS(371), - [anon_sym_RPAREN] = ACTIONS(369), - [anon_sym_SEMI_SEMI] = ACTIONS(369), - [anon_sym_function] = ACTIONS(371), - [anon_sym_LPAREN] = ACTIONS(369), - [anon_sym_RBRACE] = ACTIONS(369), - [anon_sym_LBRACK] = ACTIONS(371), - [anon_sym_LBRACK_LBRACK] = ACTIONS(371), - [anon_sym_COLON] = ACTIONS(369), - [anon_sym_DQUOTE] = ACTIONS(369), - [sym_single_quoted_argument] = ACTIONS(371), - [anon_sym_LT] = ACTIONS(371), - [anon_sym_GT] = ACTIONS(371), - [anon_sym_GT_GT] = ACTIONS(371), - [anon_sym_AMP_GT] = ACTIONS(371), - [anon_sym_AMP_GT_GT] = ACTIONS(371), - [anon_sym_LT_AMP] = ACTIONS(371), - [anon_sym_GT_AMP] = ACTIONS(371), - [sym_leading_word] = ACTIONS(373), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(373), + [ts_builtin_sym_end] = ACTIONS(373), + [anon_sym_while] = ACTIONS(375), + [anon_sym_done] = ACTIONS(375), + [anon_sym_if] = ACTIONS(375), + [anon_sym_fi] = ACTIONS(375), + [anon_sym_elif] = ACTIONS(375), + [anon_sym_else] = ACTIONS(375), + [anon_sym_case] = ACTIONS(375), + [anon_sym_RPAREN] = ACTIONS(373), + [anon_sym_SEMI_SEMI] = ACTIONS(373), + [anon_sym_function] = ACTIONS(375), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_RBRACE] = ACTIONS(373), + [anon_sym_LBRACK] = ACTIONS(375), + [anon_sym_LBRACK_LBRACK] = ACTIONS(375), + [anon_sym_COLON] = ACTIONS(373), + [anon_sym_DQUOTE] = ACTIONS(373), + [sym_single_quoted_argument] = ACTIONS(375), + [anon_sym_LT] = ACTIONS(375), + [anon_sym_GT] = ACTIONS(375), + [anon_sym_GT_GT] = ACTIONS(375), + [anon_sym_AMP_GT] = ACTIONS(375), + [anon_sym_AMP_GT_GT] = ACTIONS(375), + [anon_sym_LT_AMP] = ACTIONS(375), + [anon_sym_GT_AMP] = ACTIONS(375), + [sym_leading_word] = ACTIONS(377), + [sym_comment] = ACTIONS(73), }, [69] = { [sym_file_redirect] = STATE(47), [sym_heredoc_redirect] = STATE(47), [aux_sym_command_repeat2] = STATE(111), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(375), - [anon_sym_PIPE] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(277), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(379), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_PIPE_AMP] = ACTIONS(277), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), }, [70] = { [sym_file_redirect] = STATE(47), [sym_heredoc_redirect] = STATE(47), [aux_sym_command_repeat2] = STATE(150), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(377), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(379), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_PIPE_AMP] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(377), - [anon_sym_LF] = ACTIONS(377), - [anon_sym_AMP] = ACTIONS(377), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(381), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(383), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LF] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), }, [71] = { - [sym_file_descriptor] = ACTIONS(383), - [anon_sym_COLON] = ACTIONS(383), - [anon_sym_DQUOTE] = ACTIONS(383), - [sym_single_quoted_argument] = ACTIONS(385), - [anon_sym_LT] = ACTIONS(385), - [anon_sym_GT] = ACTIONS(385), - [anon_sym_GT_GT] = ACTIONS(385), - [anon_sym_AMP_GT] = ACTIONS(385), - [anon_sym_AMP_GT_GT] = ACTIONS(385), - [anon_sym_LT_AMP] = ACTIONS(385), - [anon_sym_GT_AMP] = ACTIONS(385), - [sym_leading_word] = ACTIONS(387), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(387), + [anon_sym_COLON] = ACTIONS(387), + [anon_sym_DQUOTE] = ACTIONS(387), + [sym_single_quoted_argument] = ACTIONS(389), + [anon_sym_LT] = ACTIONS(389), + [anon_sym_GT] = ACTIONS(389), + [anon_sym_GT_GT] = ACTIONS(389), + [anon_sym_AMP_GT] = ACTIONS(389), + [anon_sym_AMP_GT_GT] = ACTIONS(389), + [anon_sym_LT_AMP] = ACTIONS(389), + [anon_sym_GT_AMP] = ACTIONS(389), + [sym_leading_word] = ACTIONS(391), + [sym_comment] = ACTIONS(73), }, [72] = { - [sym_file_descriptor] = ACTIONS(389), - [anon_sym_COLON] = ACTIONS(389), - [anon_sym_DQUOTE] = ACTIONS(389), - [sym_single_quoted_argument] = ACTIONS(391), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(391), - [anon_sym_AMP_GT] = ACTIONS(391), - [anon_sym_AMP_GT_GT] = ACTIONS(391), - [anon_sym_LT_AMP] = ACTIONS(391), - [anon_sym_GT_AMP] = ACTIONS(391), - [sym_leading_word] = ACTIONS(393), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(393), + [anon_sym_COLON] = ACTIONS(393), + [anon_sym_DQUOTE] = ACTIONS(393), + [sym_single_quoted_argument] = ACTIONS(395), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(395), + [anon_sym_AMP_GT] = ACTIONS(395), + [anon_sym_AMP_GT_GT] = ACTIONS(395), + [anon_sym_LT_AMP] = ACTIONS(395), + [anon_sym_GT_AMP] = ACTIONS(395), + [sym_leading_word] = ACTIONS(397), + [sym_comment] = ACTIONS(73), }, [73] = { - [sym_file_descriptor] = ACTIONS(395), - [anon_sym_COLON] = ACTIONS(395), - [anon_sym_DQUOTE] = ACTIONS(395), - [sym_single_quoted_argument] = ACTIONS(397), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(397), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(397), - [anon_sym_LT_AMP] = ACTIONS(397), - [anon_sym_GT_AMP] = ACTIONS(397), - [sym_leading_word] = ACTIONS(399), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(399), + [anon_sym_COLON] = ACTIONS(399), + [anon_sym_DQUOTE] = ACTIONS(399), + [sym_single_quoted_argument] = ACTIONS(401), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(401), + [anon_sym_AMP_GT] = ACTIONS(401), + [anon_sym_AMP_GT_GT] = ACTIONS(401), + [anon_sym_LT_AMP] = ACTIONS(401), + [anon_sym_GT_AMP] = ACTIONS(401), + [sym_leading_word] = ACTIONS(403), + [sym_comment] = ACTIONS(73), }, [74] = { [sym__terminated_statement] = STATE(15), @@ -9403,43 +9419,43 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(152), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_done] = ACTIONS(401), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_done] = ACTIONS(405), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [75] = { - [anon_sym_SEMI_SEMI] = ACTIONS(403), - [anon_sym_PIPE] = ACTIONS(403), - [anon_sym_PIPE_AMP] = ACTIONS(403), - [anon_sym_AMP_AMP] = ACTIONS(403), - [anon_sym_PIPE_PIPE] = ACTIONS(403), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(403), - [anon_sym_LF] = ACTIONS(403), - [anon_sym_AMP] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(407), + [anon_sym_PIPE] = ACTIONS(407), + [anon_sym_PIPE_AMP] = ACTIONS(407), + [anon_sym_AMP_AMP] = ACTIONS(407), + [anon_sym_PIPE_PIPE] = ACTIONS(407), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(407), + [anon_sym_LF] = ACTIONS(407), + [anon_sym_AMP] = ACTIONS(407), }, [76] = { - [anon_sym_do] = ACTIONS(363), - [anon_sym_then] = ACTIONS(363), - [sym_comment] = ACTIONS(71), + [anon_sym_do] = ACTIONS(367), + [anon_sym_then] = ACTIONS(367), + [sym_comment] = ACTIONS(73), }, [77] = { [sym__terminated_statement] = STATE(15), @@ -9460,219 +9476,206 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(158), [aux_sym_if_statement_repeat1] = STATE(159), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_fi] = ACTIONS(405), - [anon_sym_elif] = ACTIONS(407), - [anon_sym_else] = ACTIONS(409), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_fi] = ACTIONS(409), + [anon_sym_elif] = ACTIONS(411), + [anon_sym_else] = ACTIONS(413), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [78] = { - [anon_sym_in] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [anon_sym_in] = ACTIONS(313), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [79] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(411), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(415), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [80] = { - [anon_sym_SEMI_SEMI] = ACTIONS(413), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(413), - [anon_sym_LF] = ACTIONS(413), - [anon_sym_AMP] = ACTIONS(413), - }, - [81] = { - [anon_sym_in] = ACTIONS(415), - [sym_comment] = ACTIONS(71), - }, - [82] = { - [anon_sym_in] = ACTIONS(417), [anon_sym_SEMI_SEMI] = ACTIONS(417), - [sym_comment] = ACTIONS(145), + [sym_comment] = ACTIONS(147), [anon_sym_SEMI] = ACTIONS(417), [anon_sym_LF] = ACTIONS(417), [anon_sym_AMP] = ACTIONS(417), }, - [83] = { + [81] = { [anon_sym_in] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [sym_comment] = ACTIONS(73), + }, + [82] = { + [anon_sym_in] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + }, + [83] = { + [anon_sym_in] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [84] = { - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_COLON] = ACTIONS(423), - [anon_sym_EQ] = ACTIONS(425), - [anon_sym_COLON_QMARK] = ACTIONS(425), - [anon_sym_COLON_DASH] = ACTIONS(425), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(425), + [anon_sym_COLON] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(429), + [anon_sym_COLON_QMARK] = ACTIONS(429), + [anon_sym_COLON_DASH] = ACTIONS(429), + [sym_comment] = ACTIONS(73), }, [85] = { [sym_file_redirect] = STATE(169), [sym_heredoc_redirect] = STATE(169), [aux_sym_command_repeat2] = STATE(170), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(137), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(429), - [anon_sym_LT] = ACTIONS(431), - [anon_sym_GT] = ACTIONS(431), - [anon_sym_GT_GT] = ACTIONS(431), - [anon_sym_AMP_GT] = ACTIONS(431), - [anon_sym_AMP_GT_GT] = ACTIONS(431), - [anon_sym_LT_AMP] = ACTIONS(431), - [anon_sym_GT_AMP] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_LT_LT_DASH] = ACTIONS(433), - [sym_comment] = ACTIONS(145), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(139), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(433), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_LT_LT_DASH] = ACTIONS(437), + [sym_comment] = ACTIONS(147), }, [86] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(172), - [anon_sym_DQUOTE] = ACTIONS(435), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(439), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [87] = { [sym_file_redirect] = STATE(169), [sym_heredoc_redirect] = STATE(169), [aux_sym_command_repeat2] = STATE(174), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(169), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(437), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(431), - [anon_sym_GT] = ACTIONS(431), - [anon_sym_GT_GT] = ACTIONS(431), - [anon_sym_AMP_GT] = ACTIONS(431), - [anon_sym_AMP_GT_GT] = ACTIONS(431), - [anon_sym_LT_AMP] = ACTIONS(431), - [anon_sym_GT_AMP] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_LT_LT_DASH] = ACTIONS(433), - [sym_comment] = ACTIONS(145), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(171), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(441), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_LT_LT_DASH] = ACTIONS(437), + [sym_comment] = ACTIONS(147), }, [88] = { - [anon_sym_RPAREN] = ACTIONS(439), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(443), + [sym_comment] = ACTIONS(73), }, [89] = { [sym_environment_variable_assignment] = STATE(71), [sym_quoted_argument] = STATE(176), [sym_file_redirect] = STATE(71), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(443), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(445), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(445), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(447), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(449), + [sym_comment] = ACTIONS(73), }, [90] = { - [anon_sym_SEMI_SEMI] = ACTIONS(447), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(447), - [anon_sym_LF] = ACTIONS(447), - [anon_sym_AMP] = ACTIONS(447), + [anon_sym_SEMI_SEMI] = ACTIONS(451), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(451), + [anon_sym_LF] = ACTIONS(451), + [anon_sym_AMP] = ACTIONS(451), }, [91] = { - [anon_sym_in] = ACTIONS(449), - [sym_comment] = ACTIONS(71), + [anon_sym_in] = ACTIONS(453), + [sym_comment] = ACTIONS(73), }, [92] = { - [anon_sym_RPAREN] = ACTIONS(451), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(455), + [sym_comment] = ACTIONS(73), }, [93] = { - [anon_sym_SEMI_SEMI] = ACTIONS(453), - [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_PIPE_AMP] = ACTIONS(453), - [anon_sym_AMP_AMP] = ACTIONS(453), - [anon_sym_PIPE_PIPE] = ACTIONS(453), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(453), - [anon_sym_LF] = ACTIONS(453), - [anon_sym_AMP] = ACTIONS(453), + [anon_sym_SEMI_SEMI] = ACTIONS(457), + [anon_sym_PIPE] = ACTIONS(457), + [anon_sym_PIPE_AMP] = ACTIONS(457), + [anon_sym_AMP_AMP] = ACTIONS(457), + [anon_sym_PIPE_PIPE] = ACTIONS(457), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(457), + [anon_sym_LF] = ACTIONS(457), + [anon_sym_AMP] = ACTIONS(457), }, [94] = { - [anon_sym_RPAREN] = ACTIONS(309), - [anon_sym_RBRACE] = ACTIONS(309), - [anon_sym_RBRACK] = ACTIONS(455), - [anon_sym_RBRACK_RBRACK] = ACTIONS(455), - [anon_sym_DQUOTE] = ACTIONS(309), - [sym_single_quoted_argument] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(309), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), - [sym_word] = ACTIONS(311), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_RBRACE] = ACTIONS(311), + [anon_sym_RBRACK] = ACTIONS(459), + [anon_sym_RBRACK_RBRACK] = ACTIONS(459), + [anon_sym_DQUOTE] = ACTIONS(311), + [sym_single_quoted_argument] = ACTIONS(459), + [anon_sym_DOLLAR] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(311), + [sym_word] = ACTIONS(313), + [sym_comment] = ACTIONS(73), }, [95] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(457), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(461), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [96] = { - [anon_sym_RPAREN] = ACTIONS(459), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_RBRACK] = ACTIONS(461), - [anon_sym_RBRACK_RBRACK] = ACTIONS(461), - [anon_sym_DQUOTE] = ACTIONS(459), - [sym_single_quoted_argument] = ACTIONS(461), - [anon_sym_DOLLAR] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(459), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(459), - [sym_word] = ACTIONS(417), - [sym_comment] = ACTIONS(71), - }, - [97] = { [anon_sym_RPAREN] = ACTIONS(463), [anon_sym_RBRACE] = ACTIONS(463), [anon_sym_RBRACK] = ACTIONS(465), @@ -9682,114 +9685,127 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(465), [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), [anon_sym_DOLLAR_LPAREN] = ACTIONS(463), - [sym_word] = ACTIONS(419), - [sym_comment] = ACTIONS(71), + [sym_word] = ACTIONS(421), + [sym_comment] = ACTIONS(73), + }, + [97] = { + [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_RBRACE] = ACTIONS(467), + [anon_sym_RBRACK] = ACTIONS(469), + [anon_sym_RBRACK_RBRACK] = ACTIONS(469), + [anon_sym_DQUOTE] = ACTIONS(467), + [sym_single_quoted_argument] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(467), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [sym_word] = ACTIONS(423), + [sym_comment] = ACTIONS(73), }, [98] = { - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_COLON] = ACTIONS(469), - [anon_sym_EQ] = ACTIONS(471), - [anon_sym_COLON_QMARK] = ACTIONS(471), - [anon_sym_COLON_DASH] = ACTIONS(471), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(471), + [anon_sym_COLON] = ACTIONS(473), + [anon_sym_EQ] = ACTIONS(475), + [anon_sym_COLON_QMARK] = ACTIONS(475), + [anon_sym_COLON_DASH] = ACTIONS(475), + [sym_comment] = ACTIONS(73), }, [99] = { - [anon_sym_RPAREN] = ACTIONS(473), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(477), + [sym_comment] = ACTIONS(73), }, [100] = { - [anon_sym_SEMI_SEMI] = ACTIONS(475), - [anon_sym_PIPE] = ACTIONS(475), - [anon_sym_PIPE_AMP] = ACTIONS(475), - [anon_sym_AMP_AMP] = ACTIONS(475), - [anon_sym_PIPE_PIPE] = ACTIONS(475), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(475), - [anon_sym_LF] = ACTIONS(475), - [anon_sym_AMP] = ACTIONS(475), + [anon_sym_SEMI_SEMI] = ACTIONS(479), + [anon_sym_PIPE] = ACTIONS(479), + [anon_sym_PIPE_AMP] = ACTIONS(479), + [anon_sym_AMP_AMP] = ACTIONS(479), + [anon_sym_PIPE_PIPE] = ACTIONS(479), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_LF] = ACTIONS(479), + [anon_sym_AMP] = ACTIONS(479), }, [101] = { - [anon_sym_RBRACK] = ACTIONS(477), - [anon_sym_RBRACK_RBRACK] = ACTIONS(477), - [anon_sym_DQUOTE] = ACTIONS(479), - [sym_single_quoted_argument] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(479), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), - [sym_word] = ACTIONS(481), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACK] = ACTIONS(481), + [anon_sym_RBRACK_RBRACK] = ACTIONS(481), + [anon_sym_DQUOTE] = ACTIONS(483), + [sym_single_quoted_argument] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(483), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(483), + [sym_word] = ACTIONS(485), + [sym_comment] = ACTIONS(73), }, [102] = { - [anon_sym_RBRACK] = ACTIONS(483), - [anon_sym_RBRACK_RBRACK] = ACTIONS(483), - [anon_sym_DQUOTE] = ACTIONS(485), - [sym_single_quoted_argument] = ACTIONS(483), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(485), - [sym_word] = ACTIONS(487), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACK] = ACTIONS(487), + [anon_sym_RBRACK_RBRACK] = ACTIONS(487), + [anon_sym_DQUOTE] = ACTIONS(489), + [sym_single_quoted_argument] = ACTIONS(487), + [anon_sym_DOLLAR] = ACTIONS(487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [sym_word] = ACTIONS(491), + [sym_comment] = ACTIONS(73), }, [103] = { [sym_quoted_argument] = STATE(185), [sym_expansion] = STATE(185), [sym_operator_expansion] = STATE(185), [sym_command_substitution] = STATE(185), - [anon_sym_DQUOTE] = ACTIONS(289), - [sym_single_quoted_argument] = ACTIONS(489), - [anon_sym_DOLLAR] = ACTIONS(293), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(295), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(297), - [sym_word] = ACTIONS(491), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(291), + [sym_single_quoted_argument] = ACTIONS(493), + [anon_sym_DOLLAR] = ACTIONS(295), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(297), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(299), + [sym_word] = ACTIONS(495), + [sym_comment] = ACTIONS(73), }, [104] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(188), - [anon_sym_DQUOTE] = ACTIONS(493), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(497), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [105] = { - [sym_file_descriptor] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_PIPE_AMP] = ACTIONS(251), - [anon_sym_AMP_AMP] = ACTIONS(251), - [anon_sym_PIPE_PIPE] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_single_quoted_argument] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(251), - [anon_sym_LT_AMP] = ACTIONS(251), - [anon_sym_GT_AMP] = ACTIONS(251), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(251), - [sym_word] = ACTIONS(251), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(251), + [sym_file_descriptor] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_single_quoted_argument] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(253), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(253), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [sym_word] = ACTIONS(253), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(253), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), }, [106] = { - [anon_sym_DOLLAR] = ACTIONS(495), - [sym_word] = ACTIONS(497), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(499), + [sym_word] = ACTIONS(501), + [sym_comment] = ACTIONS(73), }, [107] = { - [sym_leading_word] = ACTIONS(499), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(503), + [sym_comment] = ACTIONS(73), }, [108] = { [sym_command] = STATE(192), @@ -9797,46 +9813,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [109] = { - [sym_file_descriptor] = ACTIONS(261), - [anon_sym_SEMI_SEMI] = ACTIONS(263), - [anon_sym_PIPE] = ACTIONS(263), - [anon_sym_PIPE_AMP] = ACTIONS(263), - [anon_sym_AMP_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(263), - [anon_sym_DQUOTE] = ACTIONS(263), - [sym_single_quoted_argument] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), - [anon_sym_LT] = ACTIONS(263), - [anon_sym_GT] = ACTIONS(263), - [anon_sym_GT_GT] = ACTIONS(263), - [anon_sym_AMP_GT] = ACTIONS(263), - [anon_sym_AMP_GT_GT] = ACTIONS(263), - [anon_sym_LT_AMP] = ACTIONS(263), - [anon_sym_GT_AMP] = ACTIONS(263), - [anon_sym_LT_LT] = ACTIONS(263), - [anon_sym_LT_LT_DASH] = ACTIONS(263), - [sym_word] = ACTIONS(263), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_LF] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(263), + [sym_file_descriptor] = ACTIONS(263), + [anon_sym_SEMI_SEMI] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE_AMP] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(265), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(265), + [sym_single_quoted_argument] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_AMP_GT] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(265), + [anon_sym_LT_AMP] = ACTIONS(265), + [anon_sym_GT_AMP] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_LT_LT_DASH] = ACTIONS(265), + [sym_word] = ACTIONS(265), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_LF] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), }, [110] = { [sym_quoted_argument] = STATE(193), @@ -9846,96 +9862,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(47), [sym_heredoc_redirect] = STATE(47), [aux_sym_command_repeat2] = STATE(195), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(277), - [sym_single_quoted_argument] = ACTIONS(503), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_word] = ACTIONS(505), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_LF] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(501), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(279), + [sym_single_quoted_argument] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_word] = ACTIONS(509), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), }, [111] = { [sym_file_redirect] = STATE(121), [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_LF] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(501), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), }, [112] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(197), - [anon_sym_DQUOTE] = ACTIONS(507), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(511), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [113] = { - [sym_file_descriptor] = ACTIONS(329), - [anon_sym_SEMI_SEMI] = ACTIONS(333), - [anon_sym_PIPE] = ACTIONS(333), - [anon_sym_PIPE_AMP] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(333), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(333), - [anon_sym_AMP] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(331), + [anon_sym_SEMI_SEMI] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_AMP_GT] = ACTIONS(335), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(335), + [anon_sym_GT_AMP] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(335), + [anon_sym_LT_LT_DASH] = ACTIONS(335), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(335), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(335), }, [114] = { - [anon_sym_DOLLAR] = ACTIONS(509), - [sym_word] = ACTIONS(511), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(513), + [sym_word] = ACTIONS(515), + [sym_comment] = ACTIONS(73), }, [115] = { - [sym_leading_word] = ACTIONS(513), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(517), + [sym_comment] = ACTIONS(73), }, [116] = { [sym_command] = STATE(201), @@ -9943,94 +9959,73 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [117] = { - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(345), - [anon_sym_GT] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_AMP_GT] = ACTIONS(345), - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT_LT] = ACTIONS(345), - [anon_sym_LT_LT_DASH] = ACTIONS(345), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_SEMI_SEMI] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_PIPE_AMP] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(347), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(347), }, [118] = { - [sym_file_descriptor] = ACTIONS(515), - [anon_sym_SEMI_SEMI] = ACTIONS(517), - [anon_sym_PIPE] = ACTIONS(517), - [anon_sym_PIPE_AMP] = ACTIONS(517), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_GT_GT] = ACTIONS(517), - [anon_sym_AMP_GT] = ACTIONS(517), - [anon_sym_AMP_GT_GT] = ACTIONS(517), - [anon_sym_LT_AMP] = ACTIONS(517), - [anon_sym_GT_AMP] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(517), - [anon_sym_LT_LT_DASH] = ACTIONS(517), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(517), - [anon_sym_LF] = ACTIONS(517), - [anon_sym_AMP] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(519), + [anon_sym_SEMI_SEMI] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(521), + [anon_sym_PIPE_AMP] = ACTIONS(521), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_LT] = ACTIONS(521), + [anon_sym_GT] = ACTIONS(521), + [anon_sym_GT_GT] = ACTIONS(521), + [anon_sym_AMP_GT] = ACTIONS(521), + [anon_sym_AMP_GT_GT] = ACTIONS(521), + [anon_sym_LT_AMP] = ACTIONS(521), + [anon_sym_GT_AMP] = ACTIONS(521), + [anon_sym_LT_LT] = ACTIONS(521), + [anon_sym_LT_LT_DASH] = ACTIONS(521), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_LF] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(521), }, [119] = { [sym_expansion] = STATE(202), [sym_operator_expansion] = STATE(202), [aux_sym_heredoc_repeat1] = STATE(206), - [sym__heredoc_middle] = ACTIONS(519), - [sym__heredoc_end] = ACTIONS(521), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(523), + [sym__heredoc_end] = ACTIONS(525), + [anon_sym_DOLLAR] = ACTIONS(527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(529), + [sym_comment] = ACTIONS(73), }, [120] = { - [sym_file_descriptor] = ACTIONS(527), - [anon_sym_SEMI_SEMI] = ACTIONS(529), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_PIPE_AMP] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(529), - [anon_sym_GT_GT] = ACTIONS(529), - [anon_sym_AMP_GT] = ACTIONS(529), - [anon_sym_AMP_GT_GT] = ACTIONS(529), - [anon_sym_LT_AMP] = ACTIONS(529), - [anon_sym_GT_AMP] = ACTIONS(529), - [anon_sym_LT_LT] = ACTIONS(529), - [anon_sym_LT_LT_DASH] = ACTIONS(529), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(529), - [anon_sym_LF] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(529), - }, - [121] = { [sym_file_descriptor] = ACTIONS(531), [anon_sym_SEMI_SEMI] = ACTIONS(533), [anon_sym_PIPE] = ACTIONS(533), @@ -10046,111 +10041,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(533), [anon_sym_LT_LT] = ACTIONS(533), [anon_sym_LT_LT_DASH] = ACTIONS(533), - [sym_comment] = ACTIONS(145), + [sym_comment] = ACTIONS(147), [anon_sym_SEMI] = ACTIONS(533), [anon_sym_LF] = ACTIONS(533), [anon_sym_AMP] = ACTIONS(533), }, + [121] = { + [sym_file_descriptor] = ACTIONS(535), + [anon_sym_SEMI_SEMI] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PIPE_AMP] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(537), + [anon_sym_GT_GT] = ACTIONS(537), + [anon_sym_AMP_GT] = ACTIONS(537), + [anon_sym_AMP_GT_GT] = ACTIONS(537), + [anon_sym_LT_AMP] = ACTIONS(537), + [anon_sym_GT_AMP] = ACTIONS(537), + [anon_sym_LT_LT] = ACTIONS(537), + [anon_sym_LT_LT_DASH] = ACTIONS(537), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_LF] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(537), + }, [122] = { - [anon_sym_DQUOTE] = ACTIONS(417), - [sym__quoted_chars] = ACTIONS(461), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(421), + [sym__quoted_chars] = ACTIONS(465), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [sym_comment] = ACTIONS(147), }, [123] = { - [anon_sym_DQUOTE] = ACTIONS(419), - [sym__quoted_chars] = ACTIONS(465), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(423), + [sym__quoted_chars] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [sym_comment] = ACTIONS(147), }, [124] = { - [anon_sym_RBRACE] = ACTIONS(535), - [anon_sym_COLON] = ACTIONS(537), - [anon_sym_EQ] = ACTIONS(539), - [anon_sym_COLON_QMARK] = ACTIONS(539), - [anon_sym_COLON_DASH] = ACTIONS(539), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(539), + [anon_sym_COLON] = ACTIONS(541), + [anon_sym_EQ] = ACTIONS(543), + [anon_sym_COLON_QMARK] = ACTIONS(543), + [anon_sym_COLON_DASH] = ACTIONS(543), + [sym_comment] = ACTIONS(73), }, [125] = { - [anon_sym_RPAREN] = ACTIONS(541), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(545), + [sym_comment] = ACTIONS(73), }, [126] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [127] = { - [anon_sym_DQUOTE] = ACTIONS(547), - [sym__quoted_chars] = ACTIONS(549), - [anon_sym_DOLLAR] = ACTIONS(547), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(547), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(551), + [sym__quoted_chars] = ACTIONS(553), + [anon_sym_DOLLAR] = ACTIONS(551), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(551), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(551), + [sym_comment] = ACTIONS(147), }, [128] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_COLON] = ACTIONS(309), - [anon_sym_DQUOTE] = ACTIONS(309), - [sym_single_quoted_argument] = ACTIONS(455), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(455), - [anon_sym_AMP_GT] = ACTIONS(455), - [anon_sym_AMP_GT_GT] = ACTIONS(455), - [anon_sym_LT_AMP] = ACTIONS(455), - [anon_sym_GT_AMP] = ACTIONS(455), - [sym_leading_word] = ACTIONS(311), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_COLON] = ACTIONS(311), + [anon_sym_DQUOTE] = ACTIONS(311), + [sym_single_quoted_argument] = ACTIONS(459), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(459), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(459), + [anon_sym_LT_AMP] = ACTIONS(459), + [anon_sym_GT_AMP] = ACTIONS(459), + [sym_leading_word] = ACTIONS(313), + [sym_comment] = ACTIONS(73), }, [129] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(551), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(555), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [130] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_COLON] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(459), - [sym_single_quoted_argument] = ACTIONS(461), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(461), - [anon_sym_AMP_GT] = ACTIONS(461), - [anon_sym_AMP_GT_GT] = ACTIONS(461), - [anon_sym_LT_AMP] = ACTIONS(461), - [anon_sym_GT_AMP] = ACTIONS(461), - [sym_leading_word] = ACTIONS(417), - [sym_comment] = ACTIONS(71), - }, - [131] = { [sym_file_descriptor] = ACTIONS(463), [anon_sym_COLON] = ACTIONS(463), [anon_sym_DQUOTE] = ACTIONS(463), @@ -10162,25 +10163,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(465), [anon_sym_LT_AMP] = ACTIONS(465), [anon_sym_GT_AMP] = ACTIONS(465), - [sym_leading_word] = ACTIONS(419), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(421), + [sym_comment] = ACTIONS(73), + }, + [131] = { + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_COLON] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(467), + [sym_single_quoted_argument] = ACTIONS(469), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(469), + [anon_sym_AMP_GT] = ACTIONS(469), + [anon_sym_AMP_GT_GT] = ACTIONS(469), + [anon_sym_LT_AMP] = ACTIONS(469), + [anon_sym_GT_AMP] = ACTIONS(469), + [sym_leading_word] = ACTIONS(423), + [sym_comment] = ACTIONS(73), }, [132] = { - [anon_sym_RBRACE] = ACTIONS(553), - [anon_sym_COLON] = ACTIONS(555), - [anon_sym_EQ] = ACTIONS(557), - [anon_sym_COLON_QMARK] = ACTIONS(557), - [anon_sym_COLON_DASH] = ACTIONS(557), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(557), + [anon_sym_COLON] = ACTIONS(559), + [anon_sym_EQ] = ACTIONS(561), + [anon_sym_COLON_QMARK] = ACTIONS(561), + [anon_sym_COLON_DASH] = ACTIONS(561), + [sym_comment] = ACTIONS(73), }, [133] = { - [anon_sym_RPAREN] = ACTIONS(559), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(563), + [sym_comment] = ACTIONS(73), }, [134] = { [sym_compound_command] = STATE(215), - [anon_sym_LBRACE] = ACTIONS(561), - [sym_comment] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(565), + [sym_comment] = ACTIONS(73), }, [135] = { [sym_quoted_argument] = STATE(193), @@ -10190,98 +10206,98 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(47), [sym_heredoc_redirect] = STATE(47), [aux_sym_command_repeat2] = STATE(216), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_PIPE_AMP] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_DQUOTE] = ACTIONS(277), - [sym_single_quoted_argument] = ACTIONS(503), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_word] = ACTIONS(505), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(563), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_PIPE_AMP] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_DQUOTE] = ACTIONS(279), + [sym_single_quoted_argument] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_word] = ACTIONS(509), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(567), }, [136] = { [sym_file_redirect] = STATE(121), [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(563), - [anon_sym_PIPE] = ACTIONS(563), - [anon_sym_PIPE_AMP] = ACTIONS(563), - [anon_sym_AMP_AMP] = ACTIONS(563), - [anon_sym_PIPE_PIPE] = ACTIONS(563), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(563), - [anon_sym_LF] = ACTIONS(563), - [anon_sym_AMP] = ACTIONS(563), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(567), + [anon_sym_PIPE] = ACTIONS(567), + [anon_sym_PIPE_AMP] = ACTIONS(567), + [anon_sym_AMP_AMP] = ACTIONS(567), + [anon_sym_PIPE_PIPE] = ACTIONS(567), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(567), + [anon_sym_LF] = ACTIONS(567), + [anon_sym_AMP] = ACTIONS(567), }, [137] = { + [sym_file_descriptor] = ACTIONS(569), + [anon_sym_SEMI_SEMI] = ACTIONS(571), + [anon_sym_COLON] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_PIPE_AMP] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(571), + [sym_single_quoted_argument] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_AMP_GT] = ACTIONS(571), + [anon_sym_AMP_GT_GT] = ACTIONS(571), + [anon_sym_LT_AMP] = ACTIONS(571), + [anon_sym_GT_AMP] = ACTIONS(571), + [sym_leading_word] = ACTIONS(571), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(571), + }, + [138] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(218), - [anon_sym_DQUOTE] = ACTIONS(565), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), - }, - [138] = { - [sym_file_descriptor] = ACTIONS(567), - [anon_sym_SEMI_SEMI] = ACTIONS(569), - [anon_sym_COLON] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_PIPE_AMP] = ACTIONS(569), - [anon_sym_AMP_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(569), - [sym_single_quoted_argument] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_GT] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(569), - [anon_sym_AMP_GT] = ACTIONS(569), - [anon_sym_AMP_GT_GT] = ACTIONS(569), - [anon_sym_LT_AMP] = ACTIONS(569), - [anon_sym_GT_AMP] = ACTIONS(569), - [sym_leading_word] = ACTIONS(569), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_LF] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(569), + [anon_sym_DQUOTE] = ACTIONS(573), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [139] = { - [anon_sym_DOLLAR] = ACTIONS(571), - [sym_word] = ACTIONS(573), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(575), + [sym_word] = ACTIONS(577), + [sym_comment] = ACTIONS(73), }, [140] = { - [sym_leading_word] = ACTIONS(575), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(579), + [sym_comment] = ACTIONS(73), }, [141] = { [sym_command] = STATE(222), @@ -10289,110 +10305,110 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [142] = { - [sym_file_descriptor] = ACTIONS(577), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [sym_single_quoted_argument] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [sym_leading_word] = ACTIONS(579), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), + [sym_file_descriptor] = ACTIONS(581), + [anon_sym_SEMI_SEMI] = ACTIONS(583), + [anon_sym_COLON] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(583), + [anon_sym_PIPE_AMP] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(583), + [sym_single_quoted_argument] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(583), + [anon_sym_GT] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(583), + [anon_sym_AMP_GT] = ACTIONS(583), + [anon_sym_AMP_GT_GT] = ACTIONS(583), + [anon_sym_LT_AMP] = ACTIONS(583), + [anon_sym_GT_AMP] = ACTIONS(583), + [sym_leading_word] = ACTIONS(583), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(583), + [anon_sym_LF] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(583), }, [143] = { - [anon_sym_SEMI_SEMI] = ACTIONS(581), - [anon_sym_PIPE] = ACTIONS(581), - [anon_sym_PIPE_AMP] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(581), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(581), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), }, [144] = { - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(581), - [anon_sym_COLON] = ACTIONS(193), - [anon_sym_PIPE] = ACTIONS(581), - [anon_sym_PIPE_AMP] = ACTIONS(581), - [anon_sym_AMP_AMP] = ACTIONS(581), - [anon_sym_PIPE_PIPE] = ACTIONS(581), - [anon_sym_DQUOTE] = ACTIONS(193), - [sym_single_quoted_argument] = ACTIONS(193), - [anon_sym_LT] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(193), - [anon_sym_GT_GT] = ACTIONS(193), - [anon_sym_AMP_GT] = ACTIONS(193), - [anon_sym_AMP_GT_GT] = ACTIONS(193), - [anon_sym_LT_AMP] = ACTIONS(193), - [anon_sym_GT_AMP] = ACTIONS(193), - [sym_leading_word] = ACTIONS(193), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(581), - [anon_sym_LF] = ACTIONS(581), - [anon_sym_AMP] = ACTIONS(581), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_SEMI_SEMI] = ACTIONS(585), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_PIPE] = ACTIONS(585), + [anon_sym_PIPE_AMP] = ACTIONS(585), + [anon_sym_AMP_AMP] = ACTIONS(585), + [anon_sym_PIPE_PIPE] = ACTIONS(585), + [anon_sym_DQUOTE] = ACTIONS(195), + [sym_single_quoted_argument] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_AMP_GT] = ACTIONS(195), + [anon_sym_AMP_GT_GT] = ACTIONS(195), + [anon_sym_LT_AMP] = ACTIONS(195), + [anon_sym_GT_AMP] = ACTIONS(195), + [sym_leading_word] = ACTIONS(195), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(585), + [anon_sym_LF] = ACTIONS(585), + [anon_sym_AMP] = ACTIONS(585), }, [145] = { - [anon_sym_SEMI_SEMI] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_PIPE_AMP] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_LF] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(583), + [anon_sym_SEMI_SEMI] = ACTIONS(587), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(587), }, [146] = { - [sym_file_descriptor] = ACTIONS(191), - [anon_sym_SEMI_SEMI] = ACTIONS(583), - [anon_sym_COLON] = ACTIONS(193), - [anon_sym_PIPE] = ACTIONS(187), - [anon_sym_PIPE_AMP] = ACTIONS(187), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_DQUOTE] = ACTIONS(193), - [sym_single_quoted_argument] = ACTIONS(193), - [anon_sym_LT] = ACTIONS(193), - [anon_sym_GT] = ACTIONS(193), - [anon_sym_GT_GT] = ACTIONS(193), - [anon_sym_AMP_GT] = ACTIONS(193), - [anon_sym_AMP_GT_GT] = ACTIONS(193), - [anon_sym_LT_AMP] = ACTIONS(193), - [anon_sym_GT_AMP] = ACTIONS(193), - [sym_leading_word] = ACTIONS(193), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_LF] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(583), + [sym_file_descriptor] = ACTIONS(193), + [anon_sym_SEMI_SEMI] = ACTIONS(587), + [anon_sym_COLON] = ACTIONS(195), + [anon_sym_PIPE] = ACTIONS(189), + [anon_sym_PIPE_AMP] = ACTIONS(189), + [anon_sym_AMP_AMP] = ACTIONS(587), + [anon_sym_PIPE_PIPE] = ACTIONS(587), + [anon_sym_DQUOTE] = ACTIONS(195), + [sym_single_quoted_argument] = ACTIONS(195), + [anon_sym_LT] = ACTIONS(195), + [anon_sym_GT] = ACTIONS(195), + [anon_sym_GT_GT] = ACTIONS(195), + [anon_sym_AMP_GT] = ACTIONS(195), + [anon_sym_AMP_GT_GT] = ACTIONS(195), + [anon_sym_LT_AMP] = ACTIONS(195), + [anon_sym_GT_AMP] = ACTIONS(195), + [sym_leading_word] = ACTIONS(195), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(587), + [anon_sym_LF] = ACTIONS(587), + [anon_sym_AMP] = ACTIONS(587), }, [147] = { [sym_quoted_argument] = STATE(105), @@ -10403,31 +10419,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(47), [aux_sym_bracket_command_repeat1] = STATE(223), [aux_sym_command_repeat2] = STATE(195), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(277), - [sym_single_quoted_argument] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_word] = ACTIONS(287), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_LF] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(501), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(279), + [sym_single_quoted_argument] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_word] = ACTIONS(289), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), }, [148] = { [sym_quoted_argument] = STATE(105), @@ -10438,78 +10454,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(47), [aux_sym_bracket_command_repeat1] = STATE(224), [aux_sym_command_repeat2] = STATE(225), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_PIPE_AMP] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_DQUOTE] = ACTIONS(277), - [sym_single_quoted_argument] = ACTIONS(279), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_word] = ACTIONS(287), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(279), + [sym_single_quoted_argument] = ACTIONS(281), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_word] = ACTIONS(289), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), }, [149] = { [sym_quoted_argument] = STATE(226), [sym_expansion] = STATE(226), [sym_operator_expansion] = STATE(226), [sym_command_substitution] = STATE(226), - [anon_sym_DQUOTE] = ACTIONS(157), - [sym_single_quoted_argument] = ACTIONS(587), - [anon_sym_DOLLAR] = ACTIONS(161), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(163), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(165), - [sym_word] = ACTIONS(589), - [sym_comment] = ACTIONS(71), + [sym__empty_value] = ACTIONS(591), + [anon_sym_DQUOTE] = ACTIONS(159), + [sym_single_quoted_argument] = ACTIONS(593), + [anon_sym_DOLLAR] = ACTIONS(163), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(165), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(167), + [sym_word] = ACTIONS(595), + [sym_comment] = ACTIONS(73), }, [150] = { [sym_file_redirect] = STATE(121), [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_PIPE_AMP] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), }, [151] = { - [anon_sym_SEMI_SEMI] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(591), - [anon_sym_PIPE_AMP] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_LF] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(591), + [anon_sym_SEMI_SEMI] = ACTIONS(597), + [anon_sym_PIPE] = ACTIONS(597), + [anon_sym_PIPE_AMP] = ACTIONS(597), + [anon_sym_AMP_AMP] = ACTIONS(597), + [anon_sym_PIPE_PIPE] = ACTIONS(597), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(597), + [anon_sym_LF] = ACTIONS(597), + [anon_sym_AMP] = ACTIONS(597), }, [152] = { [sym__terminated_statement] = STATE(68), @@ -10526,38 +10543,38 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_done] = ACTIONS(593), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_done] = ACTIONS(599), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [153] = { - [anon_sym_SEMI_SEMI] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_PIPE_AMP] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(595), + [anon_sym_SEMI_SEMI] = ACTIONS(601), + [anon_sym_PIPE] = ACTIONS(601), + [anon_sym_PIPE_AMP] = ACTIONS(601), + [anon_sym_AMP_AMP] = ACTIONS(601), + [anon_sym_PIPE_PIPE] = ACTIONS(601), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(601), + [anon_sym_LF] = ACTIONS(601), + [anon_sym_AMP] = ACTIONS(601), }, [154] = { [sym__terminated_statement] = STATE(229), @@ -10574,26 +10591,26 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [155] = { [sym__terminated_statement] = STATE(15), @@ -10611,37 +10628,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(230), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_fi] = ACTIONS(597), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_fi] = ACTIONS(603), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [156] = { - [anon_sym_fi] = ACTIONS(599), - [anon_sym_elif] = ACTIONS(599), - [anon_sym_else] = ACTIONS(599), - [sym_comment] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(605), + [anon_sym_elif] = ACTIONS(605), + [anon_sym_else] = ACTIONS(605), + [sym_comment] = ACTIONS(73), }, [157] = { - [anon_sym_fi] = ACTIONS(601), - [sym_comment] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(607), + [sym_comment] = ACTIONS(73), }, [158] = { [sym__terminated_statement] = STATE(68), @@ -10661,45 +10678,45 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_if_statement_repeat1] = STATE(233), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_fi] = ACTIONS(603), - [anon_sym_elif] = ACTIONS(407), - [anon_sym_else] = ACTIONS(409), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_fi] = ACTIONS(609), + [anon_sym_elif] = ACTIONS(411), + [anon_sym_else] = ACTIONS(413), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [159] = { [sym_elif_clause] = STATE(234), [sym_else_clause] = STATE(232), - [anon_sym_fi] = ACTIONS(601), - [anon_sym_elif] = ACTIONS(605), - [anon_sym_else] = ACTIONS(607), - [sym_comment] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(607), + [anon_sym_elif] = ACTIONS(611), + [anon_sym_else] = ACTIONS(613), + [sym_comment] = ACTIONS(73), }, [160] = { - [anon_sym_in] = ACTIONS(545), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [anon_sym_in] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [161] = { [sym_case_item] = STATE(238), @@ -10708,52 +10725,52 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), [aux_sym_case_statement_repeat1] = STATE(239), - [anon_sym_esac] = ACTIONS(609), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(615), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [162] = { - [anon_sym_SEMI_SEMI] = ACTIONS(615), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(615), + [anon_sym_SEMI_SEMI] = ACTIONS(621), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(621), + [anon_sym_LF] = ACTIONS(621), + [anon_sym_AMP] = ACTIONS(621), }, [163] = { - [anon_sym_in] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [anon_sym_in] = ACTIONS(623), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), }, [164] = { [sym_quoted_argument] = STATE(241), [sym_expansion] = STATE(241), [sym_operator_expansion] = STATE(241), [sym_command_substitution] = STATE(241), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(619), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(621), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(625), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(627), + [sym_comment] = ACTIONS(73), }, [165] = { - [anon_sym_LT] = ACTIONS(623), - [anon_sym_GT] = ACTIONS(623), - [anon_sym_GT_GT] = ACTIONS(625), - [anon_sym_AMP_GT] = ACTIONS(623), - [anon_sym_AMP_GT_GT] = ACTIONS(625), - [anon_sym_LT_AMP] = ACTIONS(625), - [anon_sym_GT_AMP] = ACTIONS(625), - [sym_comment] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(629), + [anon_sym_GT] = ACTIONS(629), + [anon_sym_GT_GT] = ACTIONS(631), + [anon_sym_AMP_GT] = ACTIONS(629), + [anon_sym_AMP_GT_GT] = ACTIONS(631), + [anon_sym_LT_AMP] = ACTIONS(631), + [anon_sym_GT_AMP] = ACTIONS(631), + [sym_comment] = ACTIONS(73), }, [166] = { [sym_quoted_argument] = STATE(245), @@ -10764,99 +10781,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(169), [aux_sym_bracket_command_repeat1] = STATE(250), [aux_sym_command_repeat2] = STATE(251), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_word] = ACTIONS(647), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_word] = ACTIONS(653), + [sym_comment] = ACTIONS(73), }, [167] = { [sym_quoted_argument] = STATE(252), [sym_expansion] = STATE(252), [sym_operator_expansion] = STATE(252), [sym_command_substitution] = STATE(252), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(649), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [sym_word] = ACTIONS(651), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(655), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [sym_word] = ACTIONS(657), + [sym_comment] = ACTIONS(73), }, [168] = { [sym_heredoc] = STATE(256), - [sym__simple_heredoc] = ACTIONS(653), - [sym__heredoc_beginning] = ACTIONS(655), - [sym_comment] = ACTIONS(71), + [sym__simple_heredoc] = ACTIONS(659), + [sym__heredoc_beginning] = ACTIONS(661), + [sym_comment] = ACTIONS(73), }, [169] = { - [sym_file_descriptor] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(305), - [anon_sym_LT] = ACTIONS(657), - [anon_sym_GT] = ACTIONS(657), - [anon_sym_GT_GT] = ACTIONS(305), - [anon_sym_AMP_GT] = ACTIONS(657), - [anon_sym_AMP_GT_GT] = ACTIONS(305), - [anon_sym_LT_AMP] = ACTIONS(305), - [anon_sym_GT_AMP] = ACTIONS(305), - [anon_sym_LT_LT] = ACTIONS(657), - [anon_sym_LT_LT_DASH] = ACTIONS(305), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(307), + [anon_sym_RPAREN] = ACTIONS(307), + [anon_sym_LT] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(663), + [anon_sym_GT_GT] = ACTIONS(307), + [anon_sym_AMP_GT] = ACTIONS(663), + [anon_sym_AMP_GT_GT] = ACTIONS(307), + [anon_sym_LT_AMP] = ACTIONS(307), + [anon_sym_GT_AMP] = ACTIONS(307), + [anon_sym_LT_LT] = ACTIONS(663), + [anon_sym_LT_LT_DASH] = ACTIONS(307), + [sym_comment] = ACTIONS(73), }, [170] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(627), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(633), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [171] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(311), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_comment] = ACTIONS(145), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(313), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_comment] = ACTIONS(147), }, [172] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(659), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(665), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [173] = { [sym_quoted_argument] = STATE(245), @@ -10867,85 +10884,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(169), [aux_sym_bracket_command_repeat1] = STATE(259), [aux_sym_command_repeat2] = STATE(260), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_word] = ACTIONS(647), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(667), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_word] = ACTIONS(653), + [sym_comment] = ACTIONS(73), }, [174] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(667), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [175] = { - [anon_sym_in] = ACTIONS(663), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [anon_sym_in] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [176] = { [sym_file_redirect] = STATE(169), [sym_heredoc_redirect] = STATE(169), [aux_sym_command_repeat2] = STATE(251), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(275), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(665), - [anon_sym_LT] = ACTIONS(431), - [anon_sym_GT] = ACTIONS(431), - [anon_sym_GT_GT] = ACTIONS(431), - [anon_sym_AMP_GT] = ACTIONS(431), - [anon_sym_AMP_GT_GT] = ACTIONS(431), - [anon_sym_LT_AMP] = ACTIONS(431), - [anon_sym_GT_AMP] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_LT_LT_DASH] = ACTIONS(433), - [sym_comment] = ACTIONS(145), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(277), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(671), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_LT_LT_DASH] = ACTIONS(437), + [sym_comment] = ACTIONS(147), }, [177] = { [sym_file_redirect] = STATE(169), [sym_heredoc_redirect] = STATE(169), [aux_sym_command_repeat2] = STATE(263), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(377), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(667), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(431), - [anon_sym_GT] = ACTIONS(431), - [anon_sym_GT_GT] = ACTIONS(431), - [anon_sym_AMP_GT] = ACTIONS(431), - [anon_sym_AMP_GT_GT] = ACTIONS(431), - [anon_sym_LT_AMP] = ACTIONS(431), - [anon_sym_GT_AMP] = ACTIONS(431), - [anon_sym_LT_LT] = ACTIONS(433), - [anon_sym_LT_LT_DASH] = ACTIONS(433), - [sym_comment] = ACTIONS(145), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(381), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(673), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(435), + [anon_sym_GT] = ACTIONS(435), + [anon_sym_GT_GT] = ACTIONS(435), + [anon_sym_AMP_GT] = ACTIONS(435), + [anon_sym_AMP_GT_GT] = ACTIONS(435), + [anon_sym_LT_AMP] = ACTIONS(435), + [anon_sym_GT_AMP] = ACTIONS(435), + [anon_sym_LT_LT] = ACTIONS(437), + [anon_sym_LT_LT_DASH] = ACTIONS(437), + [sym_comment] = ACTIONS(147), }, [178] = { [sym_case_item] = STATE(238), @@ -10954,520 +10971,520 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), [aux_sym_case_statement_repeat1] = STATE(265), - [anon_sym_esac] = ACTIONS(669), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(675), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [179] = { - [anon_sym_SEMI_SEMI] = ACTIONS(671), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(671), - [anon_sym_LF] = ACTIONS(671), - [anon_sym_AMP] = ACTIONS(671), + [anon_sym_SEMI_SEMI] = ACTIONS(677), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(677), + [anon_sym_LF] = ACTIONS(677), + [anon_sym_AMP] = ACTIONS(677), }, [180] = { [sym_compound_command] = STATE(267), - [anon_sym_LBRACE] = ACTIONS(561), - [sym_comment] = ACTIONS(71), + [anon_sym_LBRACE] = ACTIONS(565), + [sym_comment] = ACTIONS(73), }, [181] = { - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_RBRACE] = ACTIONS(543), - [anon_sym_RBRACK] = ACTIONS(673), - [anon_sym_RBRACK_RBRACK] = ACTIONS(673), - [anon_sym_DQUOTE] = ACTIONS(543), - [sym_single_quoted_argument] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(543), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(543), - [sym_word] = ACTIONS(545), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_RBRACE] = ACTIONS(547), + [anon_sym_RBRACK] = ACTIONS(679), + [anon_sym_RBRACK_RBRACK] = ACTIONS(679), + [anon_sym_DQUOTE] = ACTIONS(547), + [sym_single_quoted_argument] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(547), + [sym_word] = ACTIONS(549), + [sym_comment] = ACTIONS(73), }, [182] = { - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_RBRACE] = ACTIONS(675), - [anon_sym_RBRACK] = ACTIONS(677), - [anon_sym_RBRACK_RBRACK] = ACTIONS(677), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_single_quoted_argument] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [sym_word] = ACTIONS(617), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(681), + [anon_sym_RBRACE] = ACTIONS(681), + [anon_sym_RBRACK] = ACTIONS(683), + [anon_sym_RBRACK_RBRACK] = ACTIONS(683), + [anon_sym_DQUOTE] = ACTIONS(681), + [sym_single_quoted_argument] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(681), + [sym_word] = ACTIONS(623), + [sym_comment] = ACTIONS(73), }, [183] = { [sym_quoted_argument] = STATE(268), [sym_expansion] = STATE(268), [sym_operator_expansion] = STATE(268), [sym_command_substitution] = STATE(268), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(679), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(681), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(685), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(687), + [sym_comment] = ACTIONS(73), }, [184] = { - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(683), - [anon_sym_RBRACK] = ACTIONS(685), - [anon_sym_RBRACK_RBRACK] = ACTIONS(685), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_single_quoted_argument] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(683), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(683), - [sym_word] = ACTIONS(663), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_RBRACK] = ACTIONS(691), + [anon_sym_RBRACK_RBRACK] = ACTIONS(691), + [anon_sym_DQUOTE] = ACTIONS(689), + [sym_single_quoted_argument] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [sym_word] = ACTIONS(669), + [sym_comment] = ACTIONS(73), }, [185] = { - [sym_file_descriptor] = ACTIONS(389), - [anon_sym_SEMI_SEMI] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_PIPE_AMP] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(393), - [anon_sym_LT_AMP] = ACTIONS(393), - [anon_sym_GT_AMP] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_LT_LT_DASH] = ACTIONS(393), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_LF] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(393), + [sym_file_descriptor] = ACTIONS(393), + [anon_sym_SEMI_SEMI] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_PIPE_AMP] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_AMP_GT] = ACTIONS(397), + [anon_sym_AMP_GT_GT] = ACTIONS(397), + [anon_sym_LT_AMP] = ACTIONS(397), + [anon_sym_GT_AMP] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_LT_LT_DASH] = ACTIONS(397), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LF] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), }, [186] = { - [sym_file_descriptor] = ACTIONS(395), - [anon_sym_SEMI_SEMI] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_PIPE_AMP] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_AMP_GT] = ACTIONS(399), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(399), - [anon_sym_GT_AMP] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_LT_LT_DASH] = ACTIONS(399), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LF] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(399), + [sym_file_descriptor] = ACTIONS(399), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_PIPE_AMP] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_AMP_GT] = ACTIONS(403), + [anon_sym_AMP_GT_GT] = ACTIONS(403), + [anon_sym_LT_AMP] = ACTIONS(403), + [anon_sym_GT_AMP] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(403), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LF] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), }, [187] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_single_quoted_argument] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_word] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(313), + [sym_single_quoted_argument] = ACTIONS(313), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_word] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [188] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(687), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(693), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [189] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym_single_quoted_argument] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(421), + [sym_single_quoted_argument] = ACTIONS(421), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [sym_word] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), }, [190] = { - [sym_file_descriptor] = ACTIONS(463), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [sym_single_quoted_argument] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [sym_word] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_PIPE_AMP] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(423), + [sym_single_quoted_argument] = ACTIONS(423), + [anon_sym_DOLLAR] = ACTIONS(423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(423), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_LT_LT_DASH] = ACTIONS(423), + [sym_word] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [191] = { - [anon_sym_RBRACE] = ACTIONS(689), - [anon_sym_COLON] = ACTIONS(691), - [anon_sym_EQ] = ACTIONS(693), - [anon_sym_COLON_QMARK] = ACTIONS(693), - [anon_sym_COLON_DASH] = ACTIONS(693), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(695), + [anon_sym_COLON] = ACTIONS(697), + [anon_sym_EQ] = ACTIONS(699), + [anon_sym_COLON_QMARK] = ACTIONS(699), + [anon_sym_COLON_DASH] = ACTIONS(699), + [sym_comment] = ACTIONS(73), }, [192] = { - [anon_sym_RPAREN] = ACTIONS(695), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(701), + [sym_comment] = ACTIONS(73), }, [193] = { - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_SEMI_SEMI] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_PIPE_AMP] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [sym_single_quoted_argument] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(481), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_AMP_GT] = ACTIONS(481), - [anon_sym_AMP_GT_GT] = ACTIONS(481), - [anon_sym_LT_AMP] = ACTIONS(481), - [anon_sym_GT_AMP] = ACTIONS(481), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_LT_LT_DASH] = ACTIONS(481), - [sym_word] = ACTIONS(481), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LF] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(483), + [anon_sym_SEMI_SEMI] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(485), + [anon_sym_PIPE_AMP] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_single_quoted_argument] = ACTIONS(485), + [anon_sym_DOLLAR] = ACTIONS(485), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(485), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(485), + [anon_sym_GT] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_AMP_GT] = ACTIONS(485), + [anon_sym_AMP_GT_GT] = ACTIONS(485), + [anon_sym_LT_AMP] = ACTIONS(485), + [anon_sym_GT_AMP] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_LT_LT_DASH] = ACTIONS(485), + [sym_word] = ACTIONS(485), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LF] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), }, [194] = { - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_SEMI_SEMI] = ACTIONS(487), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_PIPE_AMP] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(487), - [anon_sym_PIPE_PIPE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(487), - [sym_single_quoted_argument] = ACTIONS(487), - [anon_sym_DOLLAR] = ACTIONS(487), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(487), - [anon_sym_LT_LT_DASH] = ACTIONS(487), - [sym_word] = ACTIONS(487), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(487), - [anon_sym_LF] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(487), + [sym_file_descriptor] = ACTIONS(489), + [anon_sym_SEMI_SEMI] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(491), + [sym_single_quoted_argument] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(491), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_GT_GT] = ACTIONS(491), + [anon_sym_AMP_GT] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(491), + [anon_sym_LT_AMP] = ACTIONS(491), + [anon_sym_GT_AMP] = ACTIONS(491), + [anon_sym_LT_LT] = ACTIONS(491), + [anon_sym_LT_LT_DASH] = ACTIONS(491), + [sym_word] = ACTIONS(491), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LF] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(491), }, [195] = { [sym_file_redirect] = STATE(121), [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(697), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_PIPE_AMP] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_LF] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), }, [196] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [197] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(699), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(705), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [198] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), }, [199] = { - [sym_file_descriptor] = ACTIONS(463), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_PIPE_AMP] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(423), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_LT_LT_DASH] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [200] = { - [anon_sym_RBRACE] = ACTIONS(701), - [anon_sym_COLON] = ACTIONS(703), - [anon_sym_EQ] = ACTIONS(705), - [anon_sym_COLON_QMARK] = ACTIONS(705), - [anon_sym_COLON_DASH] = ACTIONS(705), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(707), + [anon_sym_COLON] = ACTIONS(709), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_COLON_QMARK] = ACTIONS(711), + [anon_sym_COLON_DASH] = ACTIONS(711), + [sym_comment] = ACTIONS(73), }, [201] = { - [anon_sym_RPAREN] = ACTIONS(707), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(713), + [sym_comment] = ACTIONS(73), }, [202] = { - [sym__heredoc_middle] = ACTIONS(709), - [sym__heredoc_end] = ACTIONS(709), - [anon_sym_DOLLAR] = ACTIONS(711), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(709), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(715), + [sym__heredoc_end] = ACTIONS(715), + [anon_sym_DOLLAR] = ACTIONS(717), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(715), + [sym_comment] = ACTIONS(73), }, [203] = { - [sym_file_descriptor] = ACTIONS(713), - [anon_sym_SEMI_SEMI] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(715), - [anon_sym_GT] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(715), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(715), - [anon_sym_LT_LT_DASH] = ACTIONS(715), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(715), + [sym_file_descriptor] = ACTIONS(719), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(721), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [anon_sym_LT_LT] = ACTIONS(721), + [anon_sym_LT_LT_DASH] = ACTIONS(721), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(721), }, [204] = { - [anon_sym_DOLLAR] = ACTIONS(717), - [sym_word] = ACTIONS(719), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(723), + [sym_word] = ACTIONS(725), + [sym_comment] = ACTIONS(73), }, [205] = { - [sym_leading_word] = ACTIONS(721), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(727), + [sym_comment] = ACTIONS(73), }, [206] = { [sym_expansion] = STATE(281), [sym_operator_expansion] = STATE(281), - [sym__heredoc_middle] = ACTIONS(723), - [sym__heredoc_end] = ACTIONS(725), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(729), + [sym__heredoc_end] = ACTIONS(731), + [anon_sym_DOLLAR] = ACTIONS(527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(529), + [sym_comment] = ACTIONS(73), }, [207] = { - [anon_sym_DQUOTE] = ACTIONS(617), - [sym__quoted_chars] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym__quoted_chars] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(623), + [sym_comment] = ACTIONS(147), }, [208] = { [sym_quoted_argument] = STATE(283), [sym_expansion] = STATE(283), [sym_operator_expansion] = STATE(283), [sym_command_substitution] = STATE(283), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(727), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(729), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(733), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(735), + [sym_comment] = ACTIONS(73), }, [209] = { - [anon_sym_DQUOTE] = ACTIONS(663), - [sym__quoted_chars] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym__quoted_chars] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [sym_comment] = ACTIONS(147), }, [210] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_COLON] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [sym_single_quoted_argument] = ACTIONS(673), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(673), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(673), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [sym_leading_word] = ACTIONS(545), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_COLON] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(547), + [sym_single_quoted_argument] = ACTIONS(679), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(679), + [anon_sym_AMP_GT] = ACTIONS(679), + [anon_sym_AMP_GT_GT] = ACTIONS(679), + [anon_sym_LT_AMP] = ACTIONS(679), + [anon_sym_GT_AMP] = ACTIONS(679), + [sym_leading_word] = ACTIONS(549), + [sym_comment] = ACTIONS(73), }, [211] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_COLON] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_single_quoted_argument] = ACTIONS(677), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(677), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(677), - [anon_sym_LT_AMP] = ACTIONS(677), - [anon_sym_GT_AMP] = ACTIONS(677), - [sym_leading_word] = ACTIONS(617), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_COLON] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(681), + [sym_single_quoted_argument] = ACTIONS(683), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_GT_GT] = ACTIONS(683), + [anon_sym_AMP_GT] = ACTIONS(683), + [anon_sym_AMP_GT_GT] = ACTIONS(683), + [anon_sym_LT_AMP] = ACTIONS(683), + [anon_sym_GT_AMP] = ACTIONS(683), + [sym_leading_word] = ACTIONS(623), + [sym_comment] = ACTIONS(73), }, [212] = { [sym_quoted_argument] = STATE(285), [sym_expansion] = STATE(285), [sym_operator_expansion] = STATE(285), [sym_command_substitution] = STATE(285), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(733), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(737), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(739), + [sym_comment] = ACTIONS(73), }, [213] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_COLON] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_single_quoted_argument] = ACTIONS(685), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_GT_GT] = ACTIONS(685), - [anon_sym_AMP_GT] = ACTIONS(685), - [anon_sym_AMP_GT_GT] = ACTIONS(685), - [anon_sym_LT_AMP] = ACTIONS(685), - [anon_sym_GT_AMP] = ACTIONS(685), - [sym_leading_word] = ACTIONS(663), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_COLON] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [sym_single_quoted_argument] = ACTIONS(691), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(691), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(691), + [anon_sym_LT_AMP] = ACTIONS(691), + [anon_sym_GT_AMP] = ACTIONS(691), + [sym_leading_word] = ACTIONS(669), + [sym_comment] = ACTIONS(73), }, [214] = { [sym__terminated_statement] = STATE(15), @@ -11485,153 +11502,153 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(288), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RBRACE] = ACTIONS(741), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [215] = { - [anon_sym_SEMI_SEMI] = ACTIONS(737), - [anon_sym_PIPE] = ACTIONS(737), - [anon_sym_PIPE_AMP] = ACTIONS(737), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LF] = ACTIONS(737), - [anon_sym_AMP] = ACTIONS(737), + [anon_sym_SEMI_SEMI] = ACTIONS(743), + [anon_sym_PIPE] = ACTIONS(743), + [anon_sym_PIPE_AMP] = ACTIONS(743), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LF] = ACTIONS(743), + [anon_sym_AMP] = ACTIONS(743), }, [216] = { [sym_file_redirect] = STATE(121), [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(739), - [anon_sym_PIPE] = ACTIONS(739), - [anon_sym_PIPE_AMP] = ACTIONS(739), - [anon_sym_AMP_AMP] = ACTIONS(739), - [anon_sym_PIPE_PIPE] = ACTIONS(739), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(739), - [anon_sym_LF] = ACTIONS(739), - [anon_sym_AMP] = ACTIONS(739), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(745), + [anon_sym_PIPE_AMP] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(745), + [anon_sym_PIPE_PIPE] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(745), + [anon_sym_LF] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(745), }, [217] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [anon_sym_COLON] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_single_quoted_argument] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [sym_leading_word] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(313), + [sym_single_quoted_argument] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [sym_leading_word] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [218] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(741), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(747), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [219] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_COLON] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym_single_quoted_argument] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [sym_leading_word] = ACTIONS(417), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_COLON] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(421), + [sym_single_quoted_argument] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [sym_leading_word] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), }, [220] = { - [sym_file_descriptor] = ACTIONS(463), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [sym_single_quoted_argument] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [sym_leading_word] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [anon_sym_COLON] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_PIPE_AMP] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(423), + [sym_single_quoted_argument] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(423), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [sym_leading_word] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [221] = { - [anon_sym_RBRACE] = ACTIONS(743), - [anon_sym_COLON] = ACTIONS(745), - [anon_sym_EQ] = ACTIONS(747), - [anon_sym_COLON_QMARK] = ACTIONS(747), - [anon_sym_COLON_DASH] = ACTIONS(747), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(749), + [anon_sym_COLON] = ACTIONS(751), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_COLON_QMARK] = ACTIONS(753), + [anon_sym_COLON_DASH] = ACTIONS(753), + [sym_comment] = ACTIONS(73), }, [222] = { - [anon_sym_RPAREN] = ACTIONS(749), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(755), + [sym_comment] = ACTIONS(73), }, [223] = { [sym_quoted_argument] = STATE(193), @@ -11641,31 +11658,31 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(47), [sym_heredoc_redirect] = STATE(47), [aux_sym_command_repeat2] = STATE(293), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(277), - [sym_single_quoted_argument] = ACTIONS(503), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_word] = ACTIONS(505), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(697), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_PIPE_AMP] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(279), + [sym_single_quoted_argument] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_word] = ACTIONS(509), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_LF] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), }, [224] = { [sym_quoted_argument] = STATE(193), @@ -11675,99 +11692,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(47), [sym_heredoc_redirect] = STATE(47), [aux_sym_command_repeat2] = STATE(294), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(277), - [sym_single_quoted_argument] = ACTIONS(503), - [anon_sym_DOLLAR] = ACTIONS(281), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(283), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(285), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_word] = ACTIONS(505), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_AMP] = ACTIONS(751), - }, - [225] = { - [sym_file_redirect] = STATE(121), - [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_AMP] = ACTIONS(751), - }, - [226] = { - [sym_file_descriptor] = ACTIONS(567), - [anon_sym_COLON] = ACTIONS(567), - [anon_sym_DQUOTE] = ACTIONS(567), - [sym_single_quoted_argument] = ACTIONS(753), - [anon_sym_LT] = ACTIONS(753), - [anon_sym_GT] = ACTIONS(753), - [anon_sym_GT_GT] = ACTIONS(753), - [anon_sym_AMP_GT] = ACTIONS(753), - [anon_sym_AMP_GT_GT] = ACTIONS(753), - [anon_sym_LT_AMP] = ACTIONS(753), - [anon_sym_GT_AMP] = ACTIONS(753), - [sym_leading_word] = ACTIONS(569), - [sym_comment] = ACTIONS(71), - }, - [227] = { - [sym_file_descriptor] = ACTIONS(577), - [anon_sym_COLON] = ACTIONS(577), - [anon_sym_DQUOTE] = ACTIONS(577), - [sym_single_quoted_argument] = ACTIONS(755), - [anon_sym_LT] = ACTIONS(755), - [anon_sym_GT] = ACTIONS(755), - [anon_sym_GT_GT] = ACTIONS(755), - [anon_sym_AMP_GT] = ACTIONS(755), - [anon_sym_AMP_GT_GT] = ACTIONS(755), - [anon_sym_LT_AMP] = ACTIONS(755), - [anon_sym_GT_AMP] = ACTIONS(755), - [sym_leading_word] = ACTIONS(579), - [sym_comment] = ACTIONS(71), - }, - [228] = { + [sym_file_descriptor] = ACTIONS(137), [anon_sym_SEMI_SEMI] = ACTIONS(757), [anon_sym_PIPE] = ACTIONS(757), [anon_sym_PIPE_AMP] = ACTIONS(757), [anon_sym_AMP_AMP] = ACTIONS(757), [anon_sym_PIPE_PIPE] = ACTIONS(757), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(279), + [sym_single_quoted_argument] = ACTIONS(507), + [anon_sym_DOLLAR] = ACTIONS(283), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(285), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(287), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_word] = ACTIONS(509), + [sym_comment] = ACTIONS(147), [anon_sym_SEMI] = ACTIONS(757), [anon_sym_LF] = ACTIONS(757), [anon_sym_AMP] = ACTIONS(757), }, + [225] = { + [sym_file_redirect] = STATE(121), + [sym_heredoc_redirect] = STATE(121), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_PIPE_AMP] = ACTIONS(757), + [anon_sym_AMP_AMP] = ACTIONS(757), + [anon_sym_PIPE_PIPE] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_LF] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(757), + }, + [226] = { + [sym_file_descriptor] = ACTIONS(569), + [anon_sym_COLON] = ACTIONS(569), + [anon_sym_DQUOTE] = ACTIONS(569), + [sym_single_quoted_argument] = ACTIONS(759), + [anon_sym_LT] = ACTIONS(759), + [anon_sym_GT] = ACTIONS(759), + [anon_sym_GT_GT] = ACTIONS(759), + [anon_sym_AMP_GT] = ACTIONS(759), + [anon_sym_AMP_GT_GT] = ACTIONS(759), + [anon_sym_LT_AMP] = ACTIONS(759), + [anon_sym_GT_AMP] = ACTIONS(759), + [sym_leading_word] = ACTIONS(571), + [sym_comment] = ACTIONS(73), + }, + [227] = { + [sym_file_descriptor] = ACTIONS(581), + [anon_sym_COLON] = ACTIONS(581), + [anon_sym_DQUOTE] = ACTIONS(581), + [sym_single_quoted_argument] = ACTIONS(761), + [anon_sym_LT] = ACTIONS(761), + [anon_sym_GT] = ACTIONS(761), + [anon_sym_GT_GT] = ACTIONS(761), + [anon_sym_AMP_GT] = ACTIONS(761), + [anon_sym_AMP_GT_GT] = ACTIONS(761), + [anon_sym_LT_AMP] = ACTIONS(761), + [anon_sym_GT_AMP] = ACTIONS(761), + [sym_leading_word] = ACTIONS(583), + [sym_comment] = ACTIONS(73), + }, + [228] = { + [anon_sym_SEMI_SEMI] = ACTIONS(763), + [anon_sym_PIPE] = ACTIONS(763), + [anon_sym_PIPE_AMP] = ACTIONS(763), + [anon_sym_AMP_AMP] = ACTIONS(763), + [anon_sym_PIPE_PIPE] = ACTIONS(763), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(763), + [anon_sym_LF] = ACTIONS(763), + [anon_sym_AMP] = ACTIONS(763), + }, [229] = { - [anon_sym_then] = ACTIONS(759), - [sym_comment] = ACTIONS(71), + [anon_sym_then] = ACTIONS(765), + [sym_comment] = ACTIONS(73), }, [230] = { [sym__terminated_statement] = STATE(68), @@ -11784,85 +11801,85 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_fi] = ACTIONS(761), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_fi] = ACTIONS(767), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [231] = { - [anon_sym_SEMI_SEMI] = ACTIONS(763), - [anon_sym_PIPE] = ACTIONS(763), - [anon_sym_PIPE_AMP] = ACTIONS(763), - [anon_sym_AMP_AMP] = ACTIONS(763), - [anon_sym_PIPE_PIPE] = ACTIONS(763), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(763), - [anon_sym_LF] = ACTIONS(763), - [anon_sym_AMP] = ACTIONS(763), - }, - [232] = { - [anon_sym_fi] = ACTIONS(765), - [sym_comment] = ACTIONS(71), - }, - [233] = { - [sym_elif_clause] = STATE(234), - [sym_else_clause] = STATE(297), - [anon_sym_fi] = ACTIONS(765), - [anon_sym_elif] = ACTIONS(605), - [anon_sym_else] = ACTIONS(607), - [sym_comment] = ACTIONS(71), - }, - [234] = { - [anon_sym_fi] = ACTIONS(767), - [anon_sym_elif] = ACTIONS(767), - [anon_sym_else] = ACTIONS(767), - [sym_comment] = ACTIONS(71), - }, - [235] = { [anon_sym_SEMI_SEMI] = ACTIONS(769), [anon_sym_PIPE] = ACTIONS(769), [anon_sym_PIPE_AMP] = ACTIONS(769), [anon_sym_AMP_AMP] = ACTIONS(769), [anon_sym_PIPE_PIPE] = ACTIONS(769), - [sym_comment] = ACTIONS(145), + [sym_comment] = ACTIONS(147), [anon_sym_SEMI] = ACTIONS(769), [anon_sym_LF] = ACTIONS(769), [anon_sym_AMP] = ACTIONS(769), }, + [232] = { + [anon_sym_fi] = ACTIONS(771), + [sym_comment] = ACTIONS(73), + }, + [233] = { + [sym_elif_clause] = STATE(234), + [sym_else_clause] = STATE(297), + [anon_sym_fi] = ACTIONS(771), + [anon_sym_elif] = ACTIONS(611), + [anon_sym_else] = ACTIONS(613), + [sym_comment] = ACTIONS(73), + }, + [234] = { + [anon_sym_fi] = ACTIONS(773), + [anon_sym_elif] = ACTIONS(773), + [anon_sym_else] = ACTIONS(773), + [sym_comment] = ACTIONS(73), + }, + [235] = { + [anon_sym_SEMI_SEMI] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_PIPE_AMP] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(775), + [anon_sym_PIPE_PIPE] = ACTIONS(775), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(775), + [anon_sym_LF] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + }, [236] = { - [anon_sym_RPAREN] = ACTIONS(771), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(777), + [sym_comment] = ACTIONS(73), }, [237] = { - [anon_sym_RPAREN] = ACTIONS(773), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(779), + [sym_comment] = ACTIONS(73), }, [238] = { - [anon_sym_esac] = ACTIONS(775), - [anon_sym_DQUOTE] = ACTIONS(777), - [sym_single_quoted_argument] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(775), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(777), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(777), - [sym_word] = ACTIONS(779), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(781), + [anon_sym_DQUOTE] = ACTIONS(783), + [sym_single_quoted_argument] = ACTIONS(781), + [anon_sym_DOLLAR] = ACTIONS(781), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(783), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(783), + [sym_word] = ACTIONS(785), + [sym_comment] = ACTIONS(73), }, [239] = { [sym_case_item] = STATE(301), @@ -11870,14 +11887,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(236), [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), - [anon_sym_esac] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [240] = { [sym_case_item] = STATE(238), @@ -11886,76 +11903,76 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), [aux_sym_case_statement_repeat1] = STATE(302), - [anon_sym_esac] = ACTIONS(781), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(787), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [241] = { - [anon_sym_RBRACE] = ACTIONS(783), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(789), + [sym_comment] = ACTIONS(73), }, [242] = { - [anon_sym_RBRACE] = ACTIONS(785), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(791), + [sym_comment] = ACTIONS(73), }, [243] = { [sym_quoted_argument] = STATE(305), [sym_expansion] = STATE(305), [sym_operator_expansion] = STATE(305), [sym_command_substitution] = STATE(305), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(787), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [sym_word] = ACTIONS(789), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(793), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [sym_word] = ACTIONS(795), + [sym_comment] = ACTIONS(73), }, [244] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(308), - [anon_sym_DQUOTE] = ACTIONS(791), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(797), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [245] = { - [sym_file_descriptor] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(249), - [anon_sym_DQUOTE] = ACTIONS(249), - [sym_single_quoted_argument] = ACTIONS(247), - [anon_sym_DOLLAR] = ACTIONS(247), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(249), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(249), - [anon_sym_LT] = ACTIONS(247), - [anon_sym_GT] = ACTIONS(247), - [anon_sym_GT_GT] = ACTIONS(249), - [anon_sym_AMP_GT] = ACTIONS(247), - [anon_sym_AMP_GT_GT] = ACTIONS(249), - [anon_sym_LT_AMP] = ACTIONS(249), - [anon_sym_GT_AMP] = ACTIONS(249), - [anon_sym_LT_LT] = ACTIONS(247), - [anon_sym_LT_LT_DASH] = ACTIONS(249), - [sym_word] = ACTIONS(251), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(251), + [sym_single_quoted_argument] = ACTIONS(249), + [anon_sym_DOLLAR] = ACTIONS(249), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(249), + [anon_sym_AMP_GT_GT] = ACTIONS(251), + [anon_sym_LT_AMP] = ACTIONS(251), + [anon_sym_GT_AMP] = ACTIONS(251), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_LT_LT_DASH] = ACTIONS(251), + [sym_word] = ACTIONS(253), + [sym_comment] = ACTIONS(73), }, [246] = { - [anon_sym_DOLLAR] = ACTIONS(793), - [sym_word] = ACTIONS(795), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(799), + [sym_word] = ACTIONS(801), + [sym_comment] = ACTIONS(73), }, [247] = { - [sym_leading_word] = ACTIONS(797), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(803), + [sym_comment] = ACTIONS(73), }, [248] = { [sym_command] = STATE(312), @@ -11963,39 +11980,39 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [249] = { - [sym_file_descriptor] = ACTIONS(261), - [anon_sym_RPAREN] = ACTIONS(261), - [anon_sym_DQUOTE] = ACTIONS(261), - [sym_single_quoted_argument] = ACTIONS(259), - [anon_sym_DOLLAR] = ACTIONS(259), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(261), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(261), - [anon_sym_LT] = ACTIONS(259), - [anon_sym_GT] = ACTIONS(259), - [anon_sym_GT_GT] = ACTIONS(261), - [anon_sym_AMP_GT] = ACTIONS(259), - [anon_sym_AMP_GT_GT] = ACTIONS(261), - [anon_sym_LT_AMP] = ACTIONS(261), - [anon_sym_GT_AMP] = ACTIONS(261), - [anon_sym_LT_LT] = ACTIONS(259), - [anon_sym_LT_LT_DASH] = ACTIONS(261), - [sym_word] = ACTIONS(263), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(263), + [anon_sym_RPAREN] = ACTIONS(263), + [anon_sym_DQUOTE] = ACTIONS(263), + [sym_single_quoted_argument] = ACTIONS(261), + [anon_sym_DOLLAR] = ACTIONS(261), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), + [anon_sym_LT] = ACTIONS(261), + [anon_sym_GT] = ACTIONS(261), + [anon_sym_GT_GT] = ACTIONS(263), + [anon_sym_AMP_GT] = ACTIONS(261), + [anon_sym_AMP_GT_GT] = ACTIONS(263), + [anon_sym_LT_AMP] = ACTIONS(263), + [anon_sym_GT_AMP] = ACTIONS(263), + [anon_sym_LT_LT] = ACTIONS(261), + [anon_sym_LT_LT_DASH] = ACTIONS(263), + [sym_word] = ACTIONS(265), + [sym_comment] = ACTIONS(73), }, [250] = { [sym_quoted_argument] = STATE(313), @@ -12005,135 +12022,135 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(169), [sym_heredoc_redirect] = STATE(169), [aux_sym_command_repeat2] = STATE(315), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_word] = ACTIONS(803), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_word] = ACTIONS(809), + [sym_comment] = ACTIONS(73), }, [251] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [252] = { - [sym_file_descriptor] = ACTIONS(329), - [anon_sym_RPAREN] = ACTIONS(329), - [anon_sym_LT] = ACTIONS(331), - [anon_sym_GT] = ACTIONS(331), - [anon_sym_GT_GT] = ACTIONS(329), - [anon_sym_AMP_GT] = ACTIONS(331), - [anon_sym_AMP_GT_GT] = ACTIONS(329), - [anon_sym_LT_AMP] = ACTIONS(329), - [anon_sym_GT_AMP] = ACTIONS(329), - [anon_sym_LT_LT] = ACTIONS(331), - [anon_sym_LT_LT_DASH] = ACTIONS(329), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(331), + [anon_sym_LT] = ACTIONS(333), + [anon_sym_GT] = ACTIONS(333), + [anon_sym_GT_GT] = ACTIONS(331), + [anon_sym_AMP_GT] = ACTIONS(333), + [anon_sym_AMP_GT_GT] = ACTIONS(331), + [anon_sym_LT_AMP] = ACTIONS(331), + [anon_sym_GT_AMP] = ACTIONS(331), + [anon_sym_LT_LT] = ACTIONS(333), + [anon_sym_LT_LT_DASH] = ACTIONS(331), + [sym_comment] = ACTIONS(73), }, [253] = { - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(341), - [anon_sym_LT] = ACTIONS(343), - [anon_sym_GT] = ACTIONS(343), - [anon_sym_GT_GT] = ACTIONS(341), - [anon_sym_AMP_GT] = ACTIONS(343), - [anon_sym_AMP_GT_GT] = ACTIONS(341), - [anon_sym_LT_AMP] = ACTIONS(341), - [anon_sym_GT_AMP] = ACTIONS(341), - [anon_sym_LT_LT] = ACTIONS(343), - [anon_sym_LT_LT_DASH] = ACTIONS(341), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(343), + [anon_sym_LT] = ACTIONS(345), + [anon_sym_GT] = ACTIONS(345), + [anon_sym_GT_GT] = ACTIONS(343), + [anon_sym_AMP_GT] = ACTIONS(345), + [anon_sym_AMP_GT_GT] = ACTIONS(343), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_LT_LT] = ACTIONS(345), + [anon_sym_LT_LT_DASH] = ACTIONS(343), + [sym_comment] = ACTIONS(73), }, [254] = { - [sym_file_descriptor] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(515), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(515), - [anon_sym_AMP_GT] = ACTIONS(805), - [anon_sym_AMP_GT_GT] = ACTIONS(515), - [anon_sym_LT_AMP] = ACTIONS(515), - [anon_sym_GT_AMP] = ACTIONS(515), - [anon_sym_LT_LT] = ACTIONS(805), - [anon_sym_LT_LT_DASH] = ACTIONS(515), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_LT] = ACTIONS(811), + [anon_sym_GT] = ACTIONS(811), + [anon_sym_GT_GT] = ACTIONS(519), + [anon_sym_AMP_GT] = ACTIONS(811), + [anon_sym_AMP_GT_GT] = ACTIONS(519), + [anon_sym_LT_AMP] = ACTIONS(519), + [anon_sym_GT_AMP] = ACTIONS(519), + [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_LT_LT_DASH] = ACTIONS(519), + [sym_comment] = ACTIONS(73), }, [255] = { [sym_expansion] = STATE(202), [sym_operator_expansion] = STATE(202), [aux_sym_heredoc_repeat1] = STATE(317), - [sym__heredoc_middle] = ACTIONS(519), - [sym__heredoc_end] = ACTIONS(807), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(523), + [sym__heredoc_end] = ACTIONS(813), + [anon_sym_DOLLAR] = ACTIONS(527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(529), + [sym_comment] = ACTIONS(73), }, [256] = { - [sym_file_descriptor] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(527), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(527), - [anon_sym_AMP_GT] = ACTIONS(809), - [anon_sym_AMP_GT_GT] = ACTIONS(527), - [anon_sym_LT_AMP] = ACTIONS(527), - [anon_sym_GT_AMP] = ACTIONS(527), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_LT_LT_DASH] = ACTIONS(527), - [sym_comment] = ACTIONS(71), - }, - [257] = { [sym_file_descriptor] = ACTIONS(531), [anon_sym_RPAREN] = ACTIONS(531), - [anon_sym_LT] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(811), + [anon_sym_LT] = ACTIONS(815), + [anon_sym_GT] = ACTIONS(815), [anon_sym_GT_GT] = ACTIONS(531), - [anon_sym_AMP_GT] = ACTIONS(811), + [anon_sym_AMP_GT] = ACTIONS(815), [anon_sym_AMP_GT_GT] = ACTIONS(531), [anon_sym_LT_AMP] = ACTIONS(531), [anon_sym_GT_AMP] = ACTIONS(531), - [anon_sym_LT_LT] = ACTIONS(811), + [anon_sym_LT_LT] = ACTIONS(815), [anon_sym_LT_LT_DASH] = ACTIONS(531), - [sym_comment] = ACTIONS(71), + [sym_comment] = ACTIONS(73), + }, + [257] = { + [sym_file_descriptor] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_LT] = ACTIONS(817), + [anon_sym_GT] = ACTIONS(817), + [anon_sym_GT_GT] = ACTIONS(535), + [anon_sym_AMP_GT] = ACTIONS(817), + [anon_sym_AMP_GT_GT] = ACTIONS(535), + [anon_sym_LT_AMP] = ACTIONS(535), + [anon_sym_GT_AMP] = ACTIONS(535), + [anon_sym_LT_LT] = ACTIONS(817), + [anon_sym_LT_LT_DASH] = ACTIONS(535), + [sym_comment] = ACTIONS(73), }, [258] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(545), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_comment] = ACTIONS(145), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(549), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_comment] = ACTIONS(147), }, [259] = { [sym_quoted_argument] = STATE(313), @@ -12143,40 +12160,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(169), [sym_heredoc_redirect] = STATE(169), [aux_sym_command_repeat2] = STATE(318), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_word] = ACTIONS(803), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_word] = ACTIONS(809), + [sym_comment] = ACTIONS(73), }, [260] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(819), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [261] = { [sym_quoted_argument] = STATE(245), @@ -12187,24 +12204,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(169), [aux_sym_bracket_command_repeat1] = STATE(319), [aux_sym_command_repeat2] = STATE(315), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_word] = ACTIONS(647), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(805), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_word] = ACTIONS(653), + [sym_comment] = ACTIONS(73), }, [262] = { [sym_quoted_argument] = STATE(245), @@ -12215,51 +12232,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(169), [aux_sym_bracket_command_repeat1] = STATE(320), [aux_sym_command_repeat2] = STATE(321), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_word] = ACTIONS(647), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(637), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_word] = ACTIONS(653), + [sym_comment] = ACTIONS(73), }, [263] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(821), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [264] = { - [anon_sym_SEMI_SEMI] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(817), - [anon_sym_PIPE_AMP] = ACTIONS(817), - [anon_sym_AMP_AMP] = ACTIONS(817), - [anon_sym_PIPE_PIPE] = ACTIONS(817), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(817), - [anon_sym_LF] = ACTIONS(817), - [anon_sym_AMP] = ACTIONS(817), + [anon_sym_SEMI_SEMI] = ACTIONS(823), + [anon_sym_PIPE] = ACTIONS(823), + [anon_sym_PIPE_AMP] = ACTIONS(823), + [anon_sym_AMP_AMP] = ACTIONS(823), + [anon_sym_PIPE_PIPE] = ACTIONS(823), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(823), + [anon_sym_LF] = ACTIONS(823), + [anon_sym_AMP] = ACTIONS(823), }, [265] = { [sym_case_item] = STATE(301), @@ -12267,14 +12284,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(236), [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), - [anon_sym_esac] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [266] = { [sym_case_item] = STATE(238), @@ -12283,280 +12300,280 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), [aux_sym_case_statement_repeat1] = STATE(323), - [anon_sym_esac] = ACTIONS(819), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(825), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [267] = { - [anon_sym_SEMI_SEMI] = ACTIONS(821), - [anon_sym_PIPE] = ACTIONS(821), - [anon_sym_PIPE_AMP] = ACTIONS(821), - [anon_sym_AMP_AMP] = ACTIONS(821), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LF] = ACTIONS(821), - [anon_sym_AMP] = ACTIONS(821), + [anon_sym_SEMI_SEMI] = ACTIONS(827), + [anon_sym_PIPE] = ACTIONS(827), + [anon_sym_PIPE_AMP] = ACTIONS(827), + [anon_sym_AMP_AMP] = ACTIONS(827), + [anon_sym_PIPE_PIPE] = ACTIONS(827), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(827), + [anon_sym_LF] = ACTIONS(827), + [anon_sym_AMP] = ACTIONS(827), }, [268] = { - [anon_sym_RBRACE] = ACTIONS(823), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(829), + [sym_comment] = ACTIONS(73), }, [269] = { - [anon_sym_RBRACE] = ACTIONS(825), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(831), + [sym_comment] = ACTIONS(73), }, [270] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_single_quoted_argument] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_word] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_single_quoted_argument] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_word] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [271] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_single_quoted_argument] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(617), - [anon_sym_AMP_GT_GT] = ACTIONS(617), - [anon_sym_LT_AMP] = ACTIONS(617), - [anon_sym_GT_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [sym_word] = ACTIONS(617), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PIPE_AMP] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_single_quoted_argument] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_AMP_GT] = ACTIONS(623), + [anon_sym_AMP_GT_GT] = ACTIONS(623), + [anon_sym_LT_AMP] = ACTIONS(623), + [anon_sym_GT_AMP] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [sym_word] = ACTIONS(623), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), }, [272] = { [sym_quoted_argument] = STATE(326), [sym_expansion] = STATE(326), [sym_operator_expansion] = STATE(326), [sym_command_substitution] = STATE(326), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(829), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(833), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(835), + [sym_comment] = ACTIONS(73), }, [273] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_single_quoted_argument] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AMP_GT] = ACTIONS(663), - [anon_sym_AMP_GT_GT] = ACTIONS(663), - [anon_sym_LT_AMP] = ACTIONS(663), - [anon_sym_GT_AMP] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [sym_word] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_single_quoted_argument] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [sym_word] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [274] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [275] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(617), - [anon_sym_AMP_GT_GT] = ACTIONS(617), - [anon_sym_LT_AMP] = ACTIONS(617), - [anon_sym_GT_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PIPE_AMP] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_AMP_GT] = ACTIONS(623), + [anon_sym_AMP_GT_GT] = ACTIONS(623), + [anon_sym_LT_AMP] = ACTIONS(623), + [anon_sym_GT_AMP] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), }, [276] = { [sym_quoted_argument] = STATE(328), [sym_expansion] = STATE(328), [sym_operator_expansion] = STATE(328), [sym_command_substitution] = STATE(328), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(831), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(833), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(837), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(839), + [sym_comment] = ACTIONS(73), }, [277] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AMP_GT] = ACTIONS(663), - [anon_sym_AMP_GT_GT] = ACTIONS(663), - [anon_sym_LT_AMP] = ACTIONS(663), - [anon_sym_GT_AMP] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [278] = { - [sym__heredoc_middle] = ACTIONS(459), - [sym__heredoc_end] = ACTIONS(459), - [anon_sym_DOLLAR] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(459), - [sym_comment] = ACTIONS(71), - }, - [279] = { [sym__heredoc_middle] = ACTIONS(463), [sym__heredoc_end] = ACTIONS(463), [anon_sym_DOLLAR] = ACTIONS(465), [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [sym_comment] = ACTIONS(71), + [sym_comment] = ACTIONS(73), + }, + [279] = { + [sym__heredoc_middle] = ACTIONS(467), + [sym__heredoc_end] = ACTIONS(467), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(467), + [sym_comment] = ACTIONS(73), }, [280] = { - [anon_sym_RBRACE] = ACTIONS(835), - [anon_sym_COLON] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(839), - [anon_sym_COLON_QMARK] = ACTIONS(839), - [anon_sym_COLON_DASH] = ACTIONS(839), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(841), + [anon_sym_COLON] = ACTIONS(843), + [anon_sym_EQ] = ACTIONS(845), + [anon_sym_COLON_QMARK] = ACTIONS(845), + [anon_sym_COLON_DASH] = ACTIONS(845), + [sym_comment] = ACTIONS(73), }, [281] = { - [sym__heredoc_middle] = ACTIONS(841), - [sym__heredoc_end] = ACTIONS(841), - [anon_sym_DOLLAR] = ACTIONS(843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(841), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(847), + [sym__heredoc_end] = ACTIONS(847), + [anon_sym_DOLLAR] = ACTIONS(849), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(847), + [sym_comment] = ACTIONS(73), }, [282] = { - [sym_file_descriptor] = ACTIONS(845), - [anon_sym_SEMI_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_PIPE_AMP] = ACTIONS(847), - [anon_sym_AMP_AMP] = ACTIONS(847), - [anon_sym_PIPE_PIPE] = ACTIONS(847), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(847), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(847), - [anon_sym_LT_AMP] = ACTIONS(847), - [anon_sym_GT_AMP] = ACTIONS(847), - [anon_sym_LT_LT] = ACTIONS(847), - [anon_sym_LT_LT_DASH] = ACTIONS(847), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(847), - [anon_sym_AMP] = ACTIONS(847), + [sym_file_descriptor] = ACTIONS(851), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(853), + [anon_sym_GT] = ACTIONS(853), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_AMP_GT] = ACTIONS(853), + [anon_sym_AMP_GT_GT] = ACTIONS(853), + [anon_sym_LT_AMP] = ACTIONS(853), + [anon_sym_GT_AMP] = ACTIONS(853), + [anon_sym_LT_LT] = ACTIONS(853), + [anon_sym_LT_LT_DASH] = ACTIONS(853), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(853), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(853), }, [283] = { - [anon_sym_RBRACE] = ACTIONS(849), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(855), + [sym_comment] = ACTIONS(73), }, [284] = { - [anon_sym_RBRACE] = ACTIONS(851), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(857), + [sym_comment] = ACTIONS(73), }, [285] = { - [anon_sym_RBRACE] = ACTIONS(853), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(859), + [sym_comment] = ACTIONS(73), }, [286] = { - [anon_sym_RBRACE] = ACTIONS(855), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(861), + [sym_comment] = ACTIONS(73), }, [287] = { - [anon_sym_SEMI_SEMI] = ACTIONS(857), - [anon_sym_PIPE] = ACTIONS(857), - [anon_sym_PIPE_AMP] = ACTIONS(857), - [anon_sym_AMP_AMP] = ACTIONS(857), - [anon_sym_PIPE_PIPE] = ACTIONS(857), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(857), - [anon_sym_LF] = ACTIONS(857), - [anon_sym_AMP] = ACTIONS(857), + [anon_sym_SEMI_SEMI] = ACTIONS(863), + [anon_sym_PIPE] = ACTIONS(863), + [anon_sym_PIPE_AMP] = ACTIONS(863), + [anon_sym_AMP_AMP] = ACTIONS(863), + [anon_sym_PIPE_PIPE] = ACTIONS(863), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(863), + [anon_sym_LF] = ACTIONS(863), + [anon_sym_AMP] = ACTIONS(863), }, [288] = { [sym__terminated_statement] = STATE(68), @@ -12573,155 +12590,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RBRACE] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [289] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_single_quoted_argument] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [sym_leading_word] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_single_quoted_argument] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [sym_leading_word] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [290] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_single_quoted_argument] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(617), - [anon_sym_AMP_GT_GT] = ACTIONS(617), - [anon_sym_LT_AMP] = ACTIONS(617), - [anon_sym_GT_AMP] = ACTIONS(617), - [sym_leading_word] = ACTIONS(617), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PIPE_AMP] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_single_quoted_argument] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_AMP_GT] = ACTIONS(623), + [anon_sym_AMP_GT_GT] = ACTIONS(623), + [anon_sym_LT_AMP] = ACTIONS(623), + [anon_sym_GT_AMP] = ACTIONS(623), + [sym_leading_word] = ACTIONS(623), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), }, [291] = { [sym_quoted_argument] = STATE(337), [sym_expansion] = STATE(337), [sym_operator_expansion] = STATE(337), [sym_command_substitution] = STATE(337), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(861), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(863), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(867), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(869), + [sym_comment] = ACTIONS(73), }, [292] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_single_quoted_argument] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AMP_GT] = ACTIONS(663), - [anon_sym_AMP_GT_GT] = ACTIONS(663), - [anon_sym_LT_AMP] = ACTIONS(663), - [anon_sym_GT_AMP] = ACTIONS(663), - [sym_leading_word] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_single_quoted_argument] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [sym_leading_word] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [293] = { [sym_file_redirect] = STATE(121), [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(865), - [anon_sym_PIPE_AMP] = ACTIONS(865), - [anon_sym_AMP_AMP] = ACTIONS(865), - [anon_sym_PIPE_PIPE] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_LF] = ACTIONS(865), - [anon_sym_AMP] = ACTIONS(865), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(871), + [anon_sym_PIPE_AMP] = ACTIONS(871), + [anon_sym_AMP_AMP] = ACTIONS(871), + [anon_sym_PIPE_PIPE] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_AMP] = ACTIONS(871), }, [294] = { [sym_file_redirect] = STATE(121), [sym_heredoc_redirect] = STATE(121), - [sym_file_descriptor] = ACTIONS(135), - [anon_sym_SEMI_SEMI] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_PIPE_AMP] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(867), - [anon_sym_PIPE_PIPE] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(141), - [anon_sym_GT] = ACTIONS(141), - [anon_sym_GT_GT] = ACTIONS(141), - [anon_sym_AMP_GT] = ACTIONS(141), - [anon_sym_AMP_GT_GT] = ACTIONS(141), - [anon_sym_LT_AMP] = ACTIONS(141), - [anon_sym_GT_AMP] = ACTIONS(141), - [anon_sym_LT_LT] = ACTIONS(143), - [anon_sym_LT_LT_DASH] = ACTIONS(143), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_LF] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), + [sym_file_descriptor] = ACTIONS(137), + [anon_sym_SEMI_SEMI] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(143), + [anon_sym_GT] = ACTIONS(143), + [anon_sym_GT_GT] = ACTIONS(143), + [anon_sym_AMP_GT] = ACTIONS(143), + [anon_sym_AMP_GT_GT] = ACTIONS(143), + [anon_sym_LT_AMP] = ACTIONS(143), + [anon_sym_GT_AMP] = ACTIONS(143), + [anon_sym_LT_LT] = ACTIONS(145), + [anon_sym_LT_LT_DASH] = ACTIONS(145), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(873), + [anon_sym_LF] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), }, [295] = { [sym__terminated_statement] = STATE(15), @@ -12739,44 +12756,44 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(339), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_fi] = ACTIONS(869), - [anon_sym_elif] = ACTIONS(869), - [anon_sym_else] = ACTIONS(869), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_fi] = ACTIONS(875), + [anon_sym_elif] = ACTIONS(875), + [anon_sym_else] = ACTIONS(875), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [296] = { - [anon_sym_SEMI_SEMI] = ACTIONS(871), - [anon_sym_PIPE] = ACTIONS(871), - [anon_sym_PIPE_AMP] = ACTIONS(871), - [anon_sym_AMP_AMP] = ACTIONS(871), - [anon_sym_PIPE_PIPE] = ACTIONS(871), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(871), - [anon_sym_LF] = ACTIONS(871), - [anon_sym_AMP] = ACTIONS(871), + [anon_sym_SEMI_SEMI] = ACTIONS(877), + [anon_sym_PIPE] = ACTIONS(877), + [anon_sym_PIPE_AMP] = ACTIONS(877), + [anon_sym_AMP_AMP] = ACTIONS(877), + [anon_sym_PIPE_PIPE] = ACTIONS(877), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(877), + [anon_sym_LF] = ACTIONS(877), + [anon_sym_AMP] = ACTIONS(877), }, [297] = { - [anon_sym_fi] = ACTIONS(873), - [sym_comment] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(879), + [sym_comment] = ACTIONS(73), }, [298] = { [sym__terminated_statement] = STATE(15), @@ -12794,27 +12811,27 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(342), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_SEMI_SEMI] = ACTIONS(875), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_SEMI_SEMI] = ACTIONS(881), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [299] = { [sym__terminated_statement] = STATE(15), @@ -12832,48 +12849,48 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(344), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_SEMI_SEMI] = ACTIONS(877), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_SEMI_SEMI] = ACTIONS(883), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [300] = { - [anon_sym_SEMI_SEMI] = ACTIONS(879), - [anon_sym_PIPE] = ACTIONS(879), - [anon_sym_PIPE_AMP] = ACTIONS(879), - [anon_sym_AMP_AMP] = ACTIONS(879), - [anon_sym_PIPE_PIPE] = ACTIONS(879), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(879), - [anon_sym_LF] = ACTIONS(879), - [anon_sym_AMP] = ACTIONS(879), + [anon_sym_SEMI_SEMI] = ACTIONS(885), + [anon_sym_PIPE] = ACTIONS(885), + [anon_sym_PIPE_AMP] = ACTIONS(885), + [anon_sym_AMP_AMP] = ACTIONS(885), + [anon_sym_PIPE_PIPE] = ACTIONS(885), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(885), + [anon_sym_LF] = ACTIONS(885), + [anon_sym_AMP] = ACTIONS(885), }, [301] = { - [anon_sym_esac] = ACTIONS(881), - [anon_sym_DQUOTE] = ACTIONS(883), - [sym_single_quoted_argument] = ACTIONS(881), - [anon_sym_DOLLAR] = ACTIONS(881), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(883), - [sym_word] = ACTIONS(885), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(887), + [anon_sym_DQUOTE] = ACTIONS(889), + [sym_single_quoted_argument] = ACTIONS(887), + [anon_sym_DOLLAR] = ACTIONS(887), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(889), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(889), + [sym_word] = ACTIONS(891), + [sym_comment] = ACTIONS(73), }, [302] = { [sym_case_item] = STATE(301), @@ -12881,111 +12898,91 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(236), [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), - [anon_sym_esac] = ACTIONS(887), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(893), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [303] = { - [anon_sym_in] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [anon_sym_in] = ACTIONS(895), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [304] = { - [anon_sym_in] = ACTIONS(891), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [anon_sym_in] = ACTIONS(897), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, [305] = { - [sym_file_descriptor] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(389), - [anon_sym_LT] = ACTIONS(391), - [anon_sym_GT] = ACTIONS(391), - [anon_sym_GT_GT] = ACTIONS(389), - [anon_sym_AMP_GT] = ACTIONS(391), - [anon_sym_AMP_GT_GT] = ACTIONS(389), - [anon_sym_LT_AMP] = ACTIONS(389), - [anon_sym_GT_AMP] = ACTIONS(389), - [anon_sym_LT_LT] = ACTIONS(391), - [anon_sym_LT_LT_DASH] = ACTIONS(389), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(393), + [anon_sym_LT] = ACTIONS(395), + [anon_sym_GT] = ACTIONS(395), + [anon_sym_GT_GT] = ACTIONS(393), + [anon_sym_AMP_GT] = ACTIONS(395), + [anon_sym_AMP_GT_GT] = ACTIONS(393), + [anon_sym_LT_AMP] = ACTIONS(393), + [anon_sym_GT_AMP] = ACTIONS(393), + [anon_sym_LT_LT] = ACTIONS(395), + [anon_sym_LT_LT_DASH] = ACTIONS(393), + [sym_comment] = ACTIONS(73), }, [306] = { - [sym_file_descriptor] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(395), - [anon_sym_LT] = ACTIONS(397), - [anon_sym_GT] = ACTIONS(397), - [anon_sym_GT_GT] = ACTIONS(395), - [anon_sym_AMP_GT] = ACTIONS(397), - [anon_sym_AMP_GT_GT] = ACTIONS(395), - [anon_sym_LT_AMP] = ACTIONS(395), - [anon_sym_GT_AMP] = ACTIONS(395), - [anon_sym_LT_LT] = ACTIONS(397), - [anon_sym_LT_LT_DASH] = ACTIONS(395), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(399), + [anon_sym_LT] = ACTIONS(401), + [anon_sym_GT] = ACTIONS(401), + [anon_sym_GT_GT] = ACTIONS(399), + [anon_sym_AMP_GT] = ACTIONS(401), + [anon_sym_AMP_GT_GT] = ACTIONS(399), + [anon_sym_LT_AMP] = ACTIONS(399), + [anon_sym_GT_AMP] = ACTIONS(399), + [anon_sym_LT_LT] = ACTIONS(401), + [anon_sym_LT_LT_DASH] = ACTIONS(399), + [sym_comment] = ACTIONS(73), }, [307] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(309), - [anon_sym_DQUOTE] = ACTIONS(309), - [sym_single_quoted_argument] = ACTIONS(455), - [anon_sym_DOLLAR] = ACTIONS(455), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(309), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(309), - [anon_sym_LT] = ACTIONS(455), - [anon_sym_GT] = ACTIONS(455), - [anon_sym_GT_GT] = ACTIONS(309), - [anon_sym_AMP_GT] = ACTIONS(455), - [anon_sym_AMP_GT_GT] = ACTIONS(309), - [anon_sym_LT_AMP] = ACTIONS(309), - [anon_sym_GT_AMP] = ACTIONS(309), - [anon_sym_LT_LT] = ACTIONS(455), - [anon_sym_LT_LT_DASH] = ACTIONS(309), - [sym_word] = ACTIONS(311), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(311), + [anon_sym_DQUOTE] = ACTIONS(311), + [sym_single_quoted_argument] = ACTIONS(459), + [anon_sym_DOLLAR] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(311), + [anon_sym_LT] = ACTIONS(459), + [anon_sym_GT] = ACTIONS(459), + [anon_sym_GT_GT] = ACTIONS(311), + [anon_sym_AMP_GT] = ACTIONS(459), + [anon_sym_AMP_GT_GT] = ACTIONS(311), + [anon_sym_LT_AMP] = ACTIONS(311), + [anon_sym_GT_AMP] = ACTIONS(311), + [anon_sym_LT_LT] = ACTIONS(459), + [anon_sym_LT_LT_DASH] = ACTIONS(311), + [sym_word] = ACTIONS(313), + [sym_comment] = ACTIONS(73), }, [308] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(893), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(899), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [309] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(459), - [anon_sym_DQUOTE] = ACTIONS(459), - [sym_single_quoted_argument] = ACTIONS(461), - [anon_sym_DOLLAR] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(459), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(459), - [anon_sym_LT] = ACTIONS(461), - [anon_sym_GT] = ACTIONS(461), - [anon_sym_GT_GT] = ACTIONS(459), - [anon_sym_AMP_GT] = ACTIONS(461), - [anon_sym_AMP_GT_GT] = ACTIONS(459), - [anon_sym_LT_AMP] = ACTIONS(459), - [anon_sym_GT_AMP] = ACTIONS(459), - [anon_sym_LT_LT] = ACTIONS(461), - [anon_sym_LT_LT_DASH] = ACTIONS(459), - [sym_word] = ACTIONS(417), - [sym_comment] = ACTIONS(71), - }, - [310] = { [sym_file_descriptor] = ACTIONS(463), [anon_sym_RPAREN] = ACTIONS(463), [anon_sym_DQUOTE] = ACTIONS(463), @@ -13002,115 +12999,135 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_AMP] = ACTIONS(463), [anon_sym_LT_LT] = ACTIONS(465), [anon_sym_LT_LT_DASH] = ACTIONS(463), - [sym_word] = ACTIONS(419), - [sym_comment] = ACTIONS(71), + [sym_word] = ACTIONS(421), + [sym_comment] = ACTIONS(73), + }, + [310] = { + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(467), + [anon_sym_DQUOTE] = ACTIONS(467), + [sym_single_quoted_argument] = ACTIONS(469), + [anon_sym_DOLLAR] = ACTIONS(469), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(467), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(467), + [anon_sym_LT] = ACTIONS(469), + [anon_sym_GT] = ACTIONS(469), + [anon_sym_GT_GT] = ACTIONS(467), + [anon_sym_AMP_GT] = ACTIONS(469), + [anon_sym_AMP_GT_GT] = ACTIONS(467), + [anon_sym_LT_AMP] = ACTIONS(467), + [anon_sym_GT_AMP] = ACTIONS(467), + [anon_sym_LT_LT] = ACTIONS(469), + [anon_sym_LT_LT_DASH] = ACTIONS(467), + [sym_word] = ACTIONS(423), + [sym_comment] = ACTIONS(73), }, [311] = { - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_COLON] = ACTIONS(897), - [anon_sym_EQ] = ACTIONS(899), - [anon_sym_COLON_QMARK] = ACTIONS(899), - [anon_sym_COLON_DASH] = ACTIONS(899), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(901), + [anon_sym_COLON] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(905), + [anon_sym_COLON_QMARK] = ACTIONS(905), + [anon_sym_COLON_DASH] = ACTIONS(905), + [sym_comment] = ACTIONS(73), }, [312] = { - [anon_sym_RPAREN] = ACTIONS(901), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(907), + [sym_comment] = ACTIONS(73), }, [313] = { - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(479), - [anon_sym_DQUOTE] = ACTIONS(479), - [sym_single_quoted_argument] = ACTIONS(477), - [anon_sym_DOLLAR] = ACTIONS(477), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(479), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), - [anon_sym_LT] = ACTIONS(477), - [anon_sym_GT] = ACTIONS(477), - [anon_sym_GT_GT] = ACTIONS(479), - [anon_sym_AMP_GT] = ACTIONS(477), - [anon_sym_AMP_GT_GT] = ACTIONS(479), - [anon_sym_LT_AMP] = ACTIONS(479), - [anon_sym_GT_AMP] = ACTIONS(479), - [anon_sym_LT_LT] = ACTIONS(477), - [anon_sym_LT_LT_DASH] = ACTIONS(479), - [sym_word] = ACTIONS(481), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(483), + [anon_sym_DQUOTE] = ACTIONS(483), + [sym_single_quoted_argument] = ACTIONS(481), + [anon_sym_DOLLAR] = ACTIONS(481), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(483), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(483), + [anon_sym_LT] = ACTIONS(481), + [anon_sym_GT] = ACTIONS(481), + [anon_sym_GT_GT] = ACTIONS(483), + [anon_sym_AMP_GT] = ACTIONS(481), + [anon_sym_AMP_GT_GT] = ACTIONS(483), + [anon_sym_LT_AMP] = ACTIONS(483), + [anon_sym_GT_AMP] = ACTIONS(483), + [anon_sym_LT_LT] = ACTIONS(481), + [anon_sym_LT_LT_DASH] = ACTIONS(483), + [sym_word] = ACTIONS(485), + [sym_comment] = ACTIONS(73), }, [314] = { - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_DQUOTE] = ACTIONS(485), - [sym_single_quoted_argument] = ACTIONS(483), - [anon_sym_DOLLAR] = ACTIONS(483), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(485), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_GT] = ACTIONS(485), - [anon_sym_AMP_GT] = ACTIONS(483), - [anon_sym_AMP_GT_GT] = ACTIONS(485), - [anon_sym_LT_AMP] = ACTIONS(485), - [anon_sym_GT_AMP] = ACTIONS(485), - [anon_sym_LT_LT] = ACTIONS(483), - [anon_sym_LT_LT_DASH] = ACTIONS(485), - [sym_word] = ACTIONS(487), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(489), + [anon_sym_DQUOTE] = ACTIONS(489), + [sym_single_quoted_argument] = ACTIONS(487), + [anon_sym_DOLLAR] = ACTIONS(487), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(489), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(489), + [anon_sym_LT] = ACTIONS(487), + [anon_sym_GT] = ACTIONS(487), + [anon_sym_GT_GT] = ACTIONS(489), + [anon_sym_AMP_GT] = ACTIONS(487), + [anon_sym_AMP_GT_GT] = ACTIONS(489), + [anon_sym_LT_AMP] = ACTIONS(489), + [anon_sym_GT_AMP] = ACTIONS(489), + [anon_sym_LT_LT] = ACTIONS(487), + [anon_sym_LT_LT_DASH] = ACTIONS(489), + [sym_word] = ACTIONS(491), + [sym_comment] = ACTIONS(73), }, [315] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [316] = { - [sym_file_descriptor] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_LT] = ACTIONS(905), - [anon_sym_GT] = ACTIONS(905), - [anon_sym_GT_GT] = ACTIONS(713), - [anon_sym_AMP_GT] = ACTIONS(905), - [anon_sym_AMP_GT_GT] = ACTIONS(713), - [anon_sym_LT_AMP] = ACTIONS(713), - [anon_sym_GT_AMP] = ACTIONS(713), - [anon_sym_LT_LT] = ACTIONS(905), - [anon_sym_LT_LT_DASH] = ACTIONS(713), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_LT] = ACTIONS(911), + [anon_sym_GT] = ACTIONS(911), + [anon_sym_GT_GT] = ACTIONS(719), + [anon_sym_AMP_GT] = ACTIONS(911), + [anon_sym_AMP_GT_GT] = ACTIONS(719), + [anon_sym_LT_AMP] = ACTIONS(719), + [anon_sym_GT_AMP] = ACTIONS(719), + [anon_sym_LT_LT] = ACTIONS(911), + [anon_sym_LT_LT_DASH] = ACTIONS(719), + [sym_comment] = ACTIONS(73), }, [317] = { [sym_expansion] = STATE(281), [sym_operator_expansion] = STATE(281), - [sym__heredoc_middle] = ACTIONS(723), - [sym__heredoc_end] = ACTIONS(907), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(729), + [sym__heredoc_end] = ACTIONS(913), + [anon_sym_DOLLAR] = ACTIONS(527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(529), + [sym_comment] = ACTIONS(73), }, [318] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(909), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(915), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [319] = { [sym_quoted_argument] = STATE(313), @@ -13120,24 +13137,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(169), [sym_heredoc_redirect] = STATE(169), [aux_sym_command_repeat2] = STATE(351), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(903), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_word] = ACTIONS(803), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(909), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_word] = ACTIONS(809), + [sym_comment] = ACTIONS(73), }, [320] = { [sym_quoted_argument] = STATE(313), @@ -13147,51 +13164,51 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(169), [sym_heredoc_redirect] = STATE(169), [aux_sym_command_repeat2] = STATE(352), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_DQUOTE] = ACTIONS(629), - [sym_single_quoted_argument] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(635), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(637), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_word] = ACTIONS(803), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_DQUOTE] = ACTIONS(635), + [sym_single_quoted_argument] = ACTIONS(807), + [anon_sym_DOLLAR] = ACTIONS(639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(641), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_word] = ACTIONS(809), + [sym_comment] = ACTIONS(73), }, [321] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(911), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [322] = { - [anon_sym_SEMI_SEMI] = ACTIONS(913), - [anon_sym_PIPE] = ACTIONS(913), - [anon_sym_PIPE_AMP] = ACTIONS(913), - [anon_sym_AMP_AMP] = ACTIONS(913), - [anon_sym_PIPE_PIPE] = ACTIONS(913), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(913), - [anon_sym_LF] = ACTIONS(913), - [anon_sym_AMP] = ACTIONS(913), + [anon_sym_SEMI_SEMI] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_PIPE_AMP] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(919), + [anon_sym_PIPE_PIPE] = ACTIONS(919), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(919), + [anon_sym_LF] = ACTIONS(919), + [anon_sym_AMP] = ACTIONS(919), }, [323] = { [sym_case_item] = STATE(301), @@ -13199,141 +13216,141 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(236), [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), - [anon_sym_esac] = ACTIONS(915), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(921), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [324] = { - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_RBRACK] = ACTIONS(919), - [anon_sym_RBRACK_RBRACK] = ACTIONS(919), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym_single_quoted_argument] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(917), - [sym_word] = ACTIONS(889), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_RBRACE] = ACTIONS(923), + [anon_sym_RBRACK] = ACTIONS(925), + [anon_sym_RBRACK_RBRACK] = ACTIONS(925), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym_single_quoted_argument] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(923), + [sym_word] = ACTIONS(895), + [sym_comment] = ACTIONS(73), }, [325] = { - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_RBRACK] = ACTIONS(923), - [anon_sym_RBRACK_RBRACK] = ACTIONS(923), - [anon_sym_DQUOTE] = ACTIONS(921), - [sym_single_quoted_argument] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(921), - [sym_word] = ACTIONS(891), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_RBRACE] = ACTIONS(927), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_RBRACK_RBRACK] = ACTIONS(929), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_single_quoted_argument] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [sym_word] = ACTIONS(897), + [sym_comment] = ACTIONS(73), }, [326] = { - [anon_sym_RBRACE] = ACTIONS(925), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(931), + [sym_comment] = ACTIONS(73), }, [327] = { - [anon_sym_RBRACE] = ACTIONS(927), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(933), + [sym_comment] = ACTIONS(73), }, [328] = { - [anon_sym_RBRACE] = ACTIONS(929), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(935), + [sym_comment] = ACTIONS(73), }, [329] = { - [anon_sym_RBRACE] = ACTIONS(931), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(937), + [sym_comment] = ACTIONS(73), }, [330] = { - [sym__heredoc_middle] = ACTIONS(675), - [sym__heredoc_end] = ACTIONS(675), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(681), + [sym__heredoc_end] = ACTIONS(681), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(681), + [sym_comment] = ACTIONS(73), }, [331] = { [sym_quoted_argument] = STATE(358), [sym_expansion] = STATE(358), [sym_operator_expansion] = STATE(358), [sym_command_substitution] = STATE(358), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(933), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(935), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(939), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(941), + [sym_comment] = ACTIONS(73), }, [332] = { - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__quoted_chars] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(889), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__quoted_chars] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(895), + [sym_comment] = ACTIONS(147), }, [333] = { - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__quoted_chars] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(891), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym__quoted_chars] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(897), + [sym_comment] = ACTIONS(147), }, [334] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_COLON] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym_single_quoted_argument] = ACTIONS(919), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(919), - [anon_sym_AMP_GT] = ACTIONS(919), - [anon_sym_AMP_GT_GT] = ACTIONS(919), - [anon_sym_LT_AMP] = ACTIONS(919), - [anon_sym_GT_AMP] = ACTIONS(919), - [sym_leading_word] = ACTIONS(889), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym_single_quoted_argument] = ACTIONS(925), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(925), + [anon_sym_AMP_GT] = ACTIONS(925), + [anon_sym_AMP_GT_GT] = ACTIONS(925), + [anon_sym_LT_AMP] = ACTIONS(925), + [anon_sym_GT_AMP] = ACTIONS(925), + [sym_leading_word] = ACTIONS(895), + [sym_comment] = ACTIONS(73), }, [335] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_COLON] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(921), - [sym_single_quoted_argument] = ACTIONS(923), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(923), - [anon_sym_AMP_GT] = ACTIONS(923), - [anon_sym_AMP_GT_GT] = ACTIONS(923), - [anon_sym_LT_AMP] = ACTIONS(923), - [anon_sym_GT_AMP] = ACTIONS(923), - [sym_leading_word] = ACTIONS(891), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_COLON] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_single_quoted_argument] = ACTIONS(929), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(929), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(929), + [anon_sym_LT_AMP] = ACTIONS(929), + [anon_sym_GT_AMP] = ACTIONS(929), + [sym_leading_word] = ACTIONS(897), + [sym_comment] = ACTIONS(73), }, [336] = { - [anon_sym_SEMI_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_PIPE_AMP] = ACTIONS(937), - [anon_sym_AMP_AMP] = ACTIONS(937), - [anon_sym_PIPE_PIPE] = ACTIONS(937), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_LF] = ACTIONS(937), - [anon_sym_AMP] = ACTIONS(937), + [anon_sym_SEMI_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_PIPE_AMP] = ACTIONS(943), + [anon_sym_AMP_AMP] = ACTIONS(943), + [anon_sym_PIPE_PIPE] = ACTIONS(943), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_LF] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), }, [337] = { - [anon_sym_RBRACE] = ACTIONS(939), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(945), + [sym_comment] = ACTIONS(73), }, [338] = { - [anon_sym_RBRACE] = ACTIONS(941), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(947), + [sym_comment] = ACTIONS(73), }, [339] = { [sym__terminated_statement] = STATE(68), @@ -13350,50 +13367,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_fi] = ACTIONS(943), - [anon_sym_elif] = ACTIONS(943), - [anon_sym_else] = ACTIONS(943), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_fi] = ACTIONS(949), + [anon_sym_elif] = ACTIONS(949), + [anon_sym_else] = ACTIONS(949), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [340] = { - [anon_sym_SEMI_SEMI] = ACTIONS(945), - [anon_sym_PIPE] = ACTIONS(945), - [anon_sym_PIPE_AMP] = ACTIONS(945), - [anon_sym_AMP_AMP] = ACTIONS(945), - [anon_sym_PIPE_PIPE] = ACTIONS(945), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(945), - [anon_sym_LF] = ACTIONS(945), - [anon_sym_AMP] = ACTIONS(945), + [anon_sym_SEMI_SEMI] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_PIPE_AMP] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(951), + [anon_sym_PIPE_PIPE] = ACTIONS(951), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(951), + [anon_sym_LF] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), }, [341] = { - [anon_sym_esac] = ACTIONS(947), - [anon_sym_DQUOTE] = ACTIONS(949), - [sym_single_quoted_argument] = ACTIONS(947), - [anon_sym_DOLLAR] = ACTIONS(947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(949), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(949), - [sym_word] = ACTIONS(951), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(953), + [anon_sym_DQUOTE] = ACTIONS(955), + [sym_single_quoted_argument] = ACTIONS(953), + [anon_sym_DOLLAR] = ACTIONS(953), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(955), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(955), + [sym_word] = ACTIONS(957), + [sym_comment] = ACTIONS(73), }, [342] = { [sym__terminated_statement] = STATE(68), @@ -13410,37 +13427,37 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_SEMI_SEMI] = ACTIONS(953), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_SEMI_SEMI] = ACTIONS(959), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [343] = { - [anon_sym_esac] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(957), - [sym_single_quoted_argument] = ACTIONS(955), - [anon_sym_DOLLAR] = ACTIONS(955), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(957), - [sym_word] = ACTIONS(959), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(961), + [anon_sym_DQUOTE] = ACTIONS(963), + [sym_single_quoted_argument] = ACTIONS(961), + [anon_sym_DOLLAR] = ACTIONS(961), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(963), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(963), + [sym_word] = ACTIONS(965), + [sym_comment] = ACTIONS(73), }, [344] = { [sym__terminated_statement] = STATE(68), @@ -13457,330 +13474,320 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_SEMI_SEMI] = ACTIONS(961), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_SEMI_SEMI] = ACTIONS(967), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [345] = { - [anon_sym_SEMI_SEMI] = ACTIONS(963), - [anon_sym_PIPE] = ACTIONS(963), - [anon_sym_PIPE_AMP] = ACTIONS(963), - [anon_sym_AMP_AMP] = ACTIONS(963), - [anon_sym_PIPE_PIPE] = ACTIONS(963), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(963), - [anon_sym_LF] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(963), + [anon_sym_SEMI_SEMI] = ACTIONS(969), + [anon_sym_PIPE] = ACTIONS(969), + [anon_sym_PIPE_AMP] = ACTIONS(969), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE_PIPE] = ACTIONS(969), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_LF] = ACTIONS(969), + [anon_sym_AMP] = ACTIONS(969), }, [346] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(543), - [anon_sym_DQUOTE] = ACTIONS(543), - [sym_single_quoted_argument] = ACTIONS(673), - [anon_sym_DOLLAR] = ACTIONS(673), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(543), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(543), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(543), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(543), - [anon_sym_LT_AMP] = ACTIONS(543), - [anon_sym_GT_AMP] = ACTIONS(543), - [anon_sym_LT_LT] = ACTIONS(673), - [anon_sym_LT_LT_DASH] = ACTIONS(543), - [sym_word] = ACTIONS(545), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_DQUOTE] = ACTIONS(547), + [sym_single_quoted_argument] = ACTIONS(679), + [anon_sym_DOLLAR] = ACTIONS(679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(547), + [anon_sym_LT] = ACTIONS(679), + [anon_sym_GT] = ACTIONS(679), + [anon_sym_GT_GT] = ACTIONS(547), + [anon_sym_AMP_GT] = ACTIONS(679), + [anon_sym_AMP_GT_GT] = ACTIONS(547), + [anon_sym_LT_AMP] = ACTIONS(547), + [anon_sym_GT_AMP] = ACTIONS(547), + [anon_sym_LT_LT] = ACTIONS(679), + [anon_sym_LT_LT_DASH] = ACTIONS(547), + [sym_word] = ACTIONS(549), + [sym_comment] = ACTIONS(73), }, [347] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(675), - [anon_sym_DQUOTE] = ACTIONS(675), - [sym_single_quoted_argument] = ACTIONS(677), - [anon_sym_DOLLAR] = ACTIONS(677), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(675), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(675), - [anon_sym_LT] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(677), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_AMP_GT] = ACTIONS(677), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(675), - [anon_sym_GT_AMP] = ACTIONS(675), - [anon_sym_LT_LT] = ACTIONS(677), - [anon_sym_LT_LT_DASH] = ACTIONS(675), - [sym_word] = ACTIONS(617), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(681), + [anon_sym_DQUOTE] = ACTIONS(681), + [sym_single_quoted_argument] = ACTIONS(683), + [anon_sym_DOLLAR] = ACTIONS(683), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(681), + [anon_sym_LT] = ACTIONS(683), + [anon_sym_GT] = ACTIONS(683), + [anon_sym_GT_GT] = ACTIONS(681), + [anon_sym_AMP_GT] = ACTIONS(683), + [anon_sym_AMP_GT_GT] = ACTIONS(681), + [anon_sym_LT_AMP] = ACTIONS(681), + [anon_sym_GT_AMP] = ACTIONS(681), + [anon_sym_LT_LT] = ACTIONS(683), + [anon_sym_LT_LT_DASH] = ACTIONS(681), + [sym_word] = ACTIONS(623), + [sym_comment] = ACTIONS(73), }, [348] = { [sym_quoted_argument] = STATE(364), [sym_expansion] = STATE(364), [sym_operator_expansion] = STATE(364), [sym_command_substitution] = STATE(364), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(967), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(973), + [sym_comment] = ACTIONS(73), }, [349] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(683), - [anon_sym_DQUOTE] = ACTIONS(683), - [sym_single_quoted_argument] = ACTIONS(685), - [anon_sym_DOLLAR] = ACTIONS(685), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(683), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(683), - [anon_sym_LT] = ACTIONS(685), - [anon_sym_GT] = ACTIONS(685), - [anon_sym_GT_GT] = ACTIONS(683), - [anon_sym_AMP_GT] = ACTIONS(685), - [anon_sym_AMP_GT_GT] = ACTIONS(683), - [anon_sym_LT_AMP] = ACTIONS(683), - [anon_sym_GT_AMP] = ACTIONS(683), - [anon_sym_LT_LT] = ACTIONS(685), - [anon_sym_LT_LT_DASH] = ACTIONS(683), - [sym_word] = ACTIONS(663), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_DQUOTE] = ACTIONS(689), + [sym_single_quoted_argument] = ACTIONS(691), + [anon_sym_DOLLAR] = ACTIONS(691), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(689), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(689), + [anon_sym_LT] = ACTIONS(691), + [anon_sym_GT] = ACTIONS(691), + [anon_sym_GT_GT] = ACTIONS(689), + [anon_sym_AMP_GT] = ACTIONS(691), + [anon_sym_AMP_GT_GT] = ACTIONS(689), + [anon_sym_LT_AMP] = ACTIONS(689), + [anon_sym_GT_AMP] = ACTIONS(689), + [anon_sym_LT_LT] = ACTIONS(691), + [anon_sym_LT_LT_DASH] = ACTIONS(689), + [sym_word] = ACTIONS(669), + [sym_comment] = ACTIONS(73), }, [350] = { - [sym_file_descriptor] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(845), - [anon_sym_AMP_GT] = ACTIONS(969), - [anon_sym_AMP_GT_GT] = ACTIONS(845), - [anon_sym_LT_AMP] = ACTIONS(845), - [anon_sym_GT_AMP] = ACTIONS(845), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_LT_LT_DASH] = ACTIONS(845), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(851), + [anon_sym_LT] = ACTIONS(975), + [anon_sym_GT] = ACTIONS(975), + [anon_sym_GT_GT] = ACTIONS(851), + [anon_sym_AMP_GT] = ACTIONS(975), + [anon_sym_AMP_GT_GT] = ACTIONS(851), + [anon_sym_LT_AMP] = ACTIONS(851), + [anon_sym_GT_AMP] = ACTIONS(851), + [anon_sym_LT_LT] = ACTIONS(975), + [anon_sym_LT_LT_DASH] = ACTIONS(851), + [sym_comment] = ACTIONS(73), }, [351] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(977), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [352] = { [sym_file_redirect] = STATE(257), [sym_heredoc_redirect] = STATE(257), - [sym_file_descriptor] = ACTIONS(427), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_LT] = ACTIONS(639), - [anon_sym_GT] = ACTIONS(639), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_AMP_GT] = ACTIONS(639), - [anon_sym_AMP_GT_GT] = ACTIONS(641), - [anon_sym_LT_AMP] = ACTIONS(641), - [anon_sym_GT_AMP] = ACTIONS(641), - [anon_sym_LT_LT] = ACTIONS(643), - [anon_sym_LT_LT_DASH] = ACTIONS(645), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(431), + [anon_sym_RPAREN] = ACTIONS(979), + [anon_sym_LT] = ACTIONS(645), + [anon_sym_GT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(647), + [anon_sym_AMP_GT] = ACTIONS(645), + [anon_sym_AMP_GT_GT] = ACTIONS(647), + [anon_sym_LT_AMP] = ACTIONS(647), + [anon_sym_GT_AMP] = ACTIONS(647), + [anon_sym_LT_LT] = ACTIONS(649), + [anon_sym_LT_LT_DASH] = ACTIONS(651), + [sym_comment] = ACTIONS(73), }, [353] = { - [anon_sym_SEMI_SEMI] = ACTIONS(975), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_PIPE_AMP] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_LF] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), + [anon_sym_SEMI_SEMI] = ACTIONS(981), + [anon_sym_PIPE] = ACTIONS(981), + [anon_sym_PIPE_AMP] = ACTIONS(981), + [anon_sym_AMP_AMP] = ACTIONS(981), + [anon_sym_PIPE_PIPE] = ACTIONS(981), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(981), + [anon_sym_LF] = ACTIONS(981), + [anon_sym_AMP] = ACTIONS(981), }, [354] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym_single_quoted_argument] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(889), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(889), - [sym_word] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym_single_quoted_argument] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_AMP_GT] = ACTIONS(895), + [anon_sym_AMP_GT_GT] = ACTIONS(895), + [anon_sym_LT_AMP] = ACTIONS(895), + [anon_sym_GT_AMP] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_LT_LT_DASH] = ACTIONS(895), + [sym_word] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [355] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_PIPE_AMP] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_single_quoted_argument] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_AMP_GT] = ACTIONS(891), - [anon_sym_AMP_GT_GT] = ACTIONS(891), - [anon_sym_LT_AMP] = ACTIONS(891), - [anon_sym_GT_AMP] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [sym_word] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym_single_quoted_argument] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(897), + [anon_sym_LT_AMP] = ACTIONS(897), + [anon_sym_GT_AMP] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_LT_LT_DASH] = ACTIONS(897), + [sym_word] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, [356] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(889), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_AMP_GT] = ACTIONS(895), + [anon_sym_AMP_GT_GT] = ACTIONS(895), + [anon_sym_LT_AMP] = ACTIONS(895), + [anon_sym_GT_AMP] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_LT_LT_DASH] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [357] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_PIPE_AMP] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_AMP_GT] = ACTIONS(891), - [anon_sym_AMP_GT_GT] = ACTIONS(891), - [anon_sym_LT_AMP] = ACTIONS(891), - [anon_sym_GT_AMP] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(897), + [anon_sym_LT_AMP] = ACTIONS(897), + [anon_sym_GT_AMP] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_LT_LT_DASH] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, [358] = { - [anon_sym_RBRACE] = ACTIONS(977), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(983), + [sym_comment] = ACTIONS(73), }, [359] = { - [anon_sym_RBRACE] = ACTIONS(979), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(985), + [sym_comment] = ACTIONS(73), }, [360] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym_single_quoted_argument] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(889), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [sym_leading_word] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym_single_quoted_argument] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_AMP_GT] = ACTIONS(895), + [anon_sym_AMP_GT_GT] = ACTIONS(895), + [anon_sym_LT_AMP] = ACTIONS(895), + [anon_sym_GT_AMP] = ACTIONS(895), + [sym_leading_word] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [361] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [anon_sym_COLON] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_PIPE_AMP] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_single_quoted_argument] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_AMP_GT] = ACTIONS(891), - [anon_sym_AMP_GT_GT] = ACTIONS(891), - [anon_sym_LT_AMP] = ACTIONS(891), - [anon_sym_GT_AMP] = ACTIONS(891), - [sym_leading_word] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym_single_quoted_argument] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(897), + [anon_sym_LT_AMP] = ACTIONS(897), + [anon_sym_GT_AMP] = ACTIONS(897), + [sym_leading_word] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, [362] = { - [anon_sym_esac] = ACTIONS(981), - [anon_sym_DQUOTE] = ACTIONS(983), - [sym_single_quoted_argument] = ACTIONS(981), - [anon_sym_DOLLAR] = ACTIONS(981), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(983), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(983), - [sym_word] = ACTIONS(985), - [sym_comment] = ACTIONS(71), - }, - [363] = { [anon_sym_esac] = ACTIONS(987), [anon_sym_DQUOTE] = ACTIONS(989), [sym_single_quoted_argument] = ACTIONS(987), @@ -13788,80 +13795,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_LBRACE] = ACTIONS(989), [anon_sym_DOLLAR_LPAREN] = ACTIONS(989), [sym_word] = ACTIONS(991), - [sym_comment] = ACTIONS(71), + [sym_comment] = ACTIONS(73), + }, + [363] = { + [anon_sym_esac] = ACTIONS(993), + [anon_sym_DQUOTE] = ACTIONS(995), + [sym_single_quoted_argument] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(993), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(995), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), + [sym_word] = ACTIONS(997), + [sym_comment] = ACTIONS(73), }, [364] = { - [anon_sym_RBRACE] = ACTIONS(993), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(999), + [sym_comment] = ACTIONS(73), }, [365] = { - [anon_sym_RBRACE] = ACTIONS(995), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1001), + [sym_comment] = ACTIONS(73), }, [366] = { - [sym__heredoc_middle] = ACTIONS(917), - [sym__heredoc_end] = ACTIONS(917), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(917), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(923), + [sym__heredoc_end] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(923), + [sym_comment] = ACTIONS(73), }, [367] = { - [sym__heredoc_middle] = ACTIONS(921), - [sym__heredoc_end] = ACTIONS(921), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(921), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(927), + [sym__heredoc_end] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [sym_comment] = ACTIONS(73), }, [368] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(917), - [anon_sym_DQUOTE] = ACTIONS(917), - [sym_single_quoted_argument] = ACTIONS(919), - [anon_sym_DOLLAR] = ACTIONS(919), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(917), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(917), - [anon_sym_LT] = ACTIONS(919), - [anon_sym_GT] = ACTIONS(919), - [anon_sym_GT_GT] = ACTIONS(917), - [anon_sym_AMP_GT] = ACTIONS(919), - [anon_sym_AMP_GT_GT] = ACTIONS(917), - [anon_sym_LT_AMP] = ACTIONS(917), - [anon_sym_GT_AMP] = ACTIONS(917), - [anon_sym_LT_LT] = ACTIONS(919), - [anon_sym_LT_LT_DASH] = ACTIONS(917), - [sym_word] = ACTIONS(889), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(923), + [anon_sym_DQUOTE] = ACTIONS(923), + [sym_single_quoted_argument] = ACTIONS(925), + [anon_sym_DOLLAR] = ACTIONS(925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(925), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_AMP_GT] = ACTIONS(925), + [anon_sym_AMP_GT_GT] = ACTIONS(923), + [anon_sym_LT_AMP] = ACTIONS(923), + [anon_sym_GT_AMP] = ACTIONS(923), + [anon_sym_LT_LT] = ACTIONS(925), + [anon_sym_LT_LT_DASH] = ACTIONS(923), + [sym_word] = ACTIONS(895), + [sym_comment] = ACTIONS(73), }, [369] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_DQUOTE] = ACTIONS(921), - [sym_single_quoted_argument] = ACTIONS(923), - [anon_sym_DOLLAR] = ACTIONS(923), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(921), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(921), - [anon_sym_LT] = ACTIONS(923), - [anon_sym_GT] = ACTIONS(923), - [anon_sym_GT_GT] = ACTIONS(921), - [anon_sym_AMP_GT] = ACTIONS(923), - [anon_sym_AMP_GT_GT] = ACTIONS(921), - [anon_sym_LT_AMP] = ACTIONS(921), - [anon_sym_GT_AMP] = ACTIONS(921), - [anon_sym_LT_LT] = ACTIONS(923), - [anon_sym_LT_LT_DASH] = ACTIONS(921), - [sym_word] = ACTIONS(891), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(927), + [anon_sym_DQUOTE] = ACTIONS(927), + [sym_single_quoted_argument] = ACTIONS(929), + [anon_sym_DOLLAR] = ACTIONS(929), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(927), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(929), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_AMP_GT] = ACTIONS(929), + [anon_sym_AMP_GT_GT] = ACTIONS(927), + [anon_sym_LT_AMP] = ACTIONS(927), + [anon_sym_GT_AMP] = ACTIONS(927), + [anon_sym_LT_LT] = ACTIONS(929), + [anon_sym_LT_LT_DASH] = ACTIONS(927), + [sym_word] = ACTIONS(897), + [sym_comment] = ACTIONS(73), }, [370] = { - [anon_sym_SEMI_SEMI] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_PIPE_AMP] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(997), - [anon_sym_PIPE_PIPE] = ACTIONS(997), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(997), - [anon_sym_LF] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), + [anon_sym_SEMI_SEMI] = ACTIONS(1003), + [anon_sym_PIPE] = ACTIONS(1003), + [anon_sym_PIPE_AMP] = ACTIONS(1003), + [anon_sym_AMP_AMP] = ACTIONS(1003), + [anon_sym_PIPE_PIPE] = ACTIONS(1003), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1003), + [anon_sym_LF] = ACTIONS(1003), + [anon_sym_AMP] = ACTIONS(1003), }, [371] = { [sym__terminated_statement] = STATE(15), @@ -13882,58 +13899,58 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_program_repeat1] = STATE(412), [aux_sym_if_statement_repeat1] = STATE(159), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_fi] = ACTIONS(1000), - [anon_sym_elif] = ACTIONS(1003), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_fi] = ACTIONS(1006), + [anon_sym_elif] = ACTIONS(1009), + [anon_sym_else] = ACTIONS(1012), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [372] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1009), - [anon_sym_PIPE] = ACTIONS(1009), - [anon_sym_PIPE_AMP] = ACTIONS(1009), - [anon_sym_AMP_AMP] = ACTIONS(1009), - [anon_sym_PIPE_PIPE] = ACTIONS(1009), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_LF] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1009), + [anon_sym_SEMI_SEMI] = ACTIONS(1015), + [anon_sym_PIPE] = ACTIONS(1015), + [anon_sym_PIPE_AMP] = ACTIONS(1015), + [anon_sym_AMP_AMP] = ACTIONS(1015), + [anon_sym_PIPE_PIPE] = ACTIONS(1015), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1015), + [anon_sym_LF] = ACTIONS(1015), + [anon_sym_AMP] = ACTIONS(1015), }, [373] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1014), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1014), - [anon_sym_LF] = ACTIONS(1014), - [anon_sym_AMP] = ACTIONS(1014), + [anon_sym_SEMI_SEMI] = ACTIONS(1020), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_LF] = ACTIONS(1020), + [anon_sym_AMP] = ACTIONS(1020), }, [374] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1016), - [anon_sym_PIPE] = ACTIONS(1016), - [anon_sym_PIPE_AMP] = ACTIONS(1016), - [anon_sym_AMP_AMP] = ACTIONS(1016), - [anon_sym_PIPE_PIPE] = ACTIONS(1016), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1016), - [anon_sym_LF] = ACTIONS(1016), - [anon_sym_AMP] = ACTIONS(1016), + [anon_sym_SEMI_SEMI] = ACTIONS(1022), + [anon_sym_PIPE] = ACTIONS(1022), + [anon_sym_PIPE_AMP] = ACTIONS(1022), + [anon_sym_AMP_AMP] = ACTIONS(1022), + [anon_sym_PIPE_PIPE] = ACTIONS(1022), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1022), + [anon_sym_LF] = ACTIONS(1022), + [anon_sym_AMP] = ACTIONS(1022), }, [375] = { [sym__terminated_statement] = STATE(15), @@ -13952,47 +13969,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(415), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(1023), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_in] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_SEMI_SEMI] = ACTIONS(1026), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_RBRACE] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_RBRACK_RBRACK] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(1035), - [anon_sym_PIPE] = ACTIONS(1038), - [anon_sym_PIPE_AMP] = ACTIONS(1038), - [anon_sym_AMP_AMP] = ACTIONS(1038), - [anon_sym_PIPE_PIPE] = ACTIONS(1038), - [anon_sym_DQUOTE] = ACTIONS(1042), - [sym__quoted_chars] = ACTIONS(663), - [sym_single_quoted_argument] = ACTIONS(1035), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(1045), - [anon_sym_GT] = ACTIONS(1045), - [anon_sym_GT_GT] = ACTIONS(1045), - [anon_sym_AMP_GT] = ACTIONS(1045), - [anon_sym_AMP_GT_GT] = ACTIONS(1045), - [anon_sym_LT_AMP] = ACTIONS(1045), - [anon_sym_GT_AMP] = ACTIONS(1045), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [sym_leading_word] = ACTIONS(1048), - [sym_word] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1038), - [anon_sym_LF] = ACTIONS(1038), - [anon_sym_AMP] = ACTIONS(1038), + [sym_file_descriptor] = ACTIONS(1029), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_in] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(1032), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(1037), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_RBRACE] = ACTIONS(669), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_RBRACK_RBRACK] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(1041), + [anon_sym_PIPE] = ACTIONS(1044), + [anon_sym_PIPE_AMP] = ACTIONS(1044), + [anon_sym_AMP_AMP] = ACTIONS(1044), + [anon_sym_PIPE_PIPE] = ACTIONS(1044), + [anon_sym_DQUOTE] = ACTIONS(1048), + [sym__quoted_chars] = ACTIONS(669), + [sym_single_quoted_argument] = ACTIONS(1041), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_GT_GT] = ACTIONS(1051), + [anon_sym_AMP_GT] = ACTIONS(1051), + [anon_sym_AMP_GT_GT] = ACTIONS(1051), + [anon_sym_LT_AMP] = ACTIONS(1051), + [anon_sym_GT_AMP] = ACTIONS(1051), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [sym_leading_word] = ACTIONS(1054), + [sym_word] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1044), + [anon_sym_LF] = ACTIONS(1044), + [anon_sym_AMP] = ACTIONS(1044), }, [376] = { [sym__terminated_statement] = STATE(15), @@ -14010,64 +14027,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_program_repeat1] = STATE(34), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_RPAREN] = ACTIONS(1051), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(1057), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [377] = { - [sym__heredoc_middle] = ACTIONS(1053), - [sym__heredoc_end] = ACTIONS(1053), - [sym_file_descriptor] = ACTIONS(1053), - [anon_sym_in] = ACTIONS(1057), - [anon_sym_RPAREN] = ACTIONS(1057), - [anon_sym_SEMI_SEMI] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_RBRACK] = ACTIONS(1057), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1057), - [anon_sym_COLON] = ACTIONS(1057), - [anon_sym_PIPE] = ACTIONS(1061), - [anon_sym_PIPE_AMP] = ACTIONS(1061), - [anon_sym_AMP_AMP] = ACTIONS(1061), - [anon_sym_PIPE_PIPE] = ACTIONS(1061), - [anon_sym_DQUOTE] = ACTIONS(1057), - [sym__quoted_chars] = ACTIONS(1057), - [sym_single_quoted_argument] = ACTIONS(1057), - [anon_sym_DOLLAR] = ACTIONS(1057), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1057), - [anon_sym_LT] = ACTIONS(1057), - [anon_sym_GT] = ACTIONS(1057), - [anon_sym_GT_GT] = ACTIONS(1057), - [anon_sym_AMP_GT] = ACTIONS(1057), - [anon_sym_AMP_GT_GT] = ACTIONS(1057), - [anon_sym_LT_AMP] = ACTIONS(1057), - [anon_sym_GT_AMP] = ACTIONS(1057), - [anon_sym_LT_LT] = ACTIONS(1057), - [anon_sym_LT_LT_DASH] = ACTIONS(1057), - [sym_leading_word] = ACTIONS(1057), - [sym_word] = ACTIONS(1057), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_LF] = ACTIONS(1061), - [anon_sym_AMP] = ACTIONS(1061), + [sym__heredoc_middle] = ACTIONS(1059), + [sym__heredoc_end] = ACTIONS(1059), + [sym_file_descriptor] = ACTIONS(1059), + [anon_sym_in] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(1063), + [anon_sym_SEMI_SEMI] = ACTIONS(1067), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_RBRACK] = ACTIONS(1063), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1063), + [anon_sym_COLON] = ACTIONS(1063), + [anon_sym_PIPE] = ACTIONS(1067), + [anon_sym_PIPE_AMP] = ACTIONS(1067), + [anon_sym_AMP_AMP] = ACTIONS(1067), + [anon_sym_PIPE_PIPE] = ACTIONS(1067), + [anon_sym_DQUOTE] = ACTIONS(1063), + [sym__quoted_chars] = ACTIONS(1063), + [sym_single_quoted_argument] = ACTIONS(1063), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1063), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1063), + [anon_sym_LT] = ACTIONS(1063), + [anon_sym_GT] = ACTIONS(1063), + [anon_sym_GT_GT] = ACTIONS(1063), + [anon_sym_AMP_GT] = ACTIONS(1063), + [anon_sym_AMP_GT_GT] = ACTIONS(1063), + [anon_sym_LT_AMP] = ACTIONS(1063), + [anon_sym_GT_AMP] = ACTIONS(1063), + [anon_sym_LT_LT] = ACTIONS(1063), + [anon_sym_LT_LT_DASH] = ACTIONS(1063), + [sym_leading_word] = ACTIONS(1063), + [sym_word] = ACTIONS(1063), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1067), + [anon_sym_LF] = ACTIONS(1067), + [anon_sym_AMP] = ACTIONS(1067), }, [378] = { [sym_quoted_argument] = STATE(419), @@ -14077,142 +14094,143 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(422), [sym_heredoc_redirect] = STATE(422), [aux_sym_command_repeat2] = STATE(423), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1069), - [anon_sym_SEMI_SEMI] = ACTIONS(1069), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1069), - [anon_sym_PIPE_AMP] = ACTIONS(1069), - [anon_sym_AMP_AMP] = ACTIONS(1069), - [anon_sym_PIPE_PIPE] = ACTIONS(1069), - [anon_sym_DQUOTE] = ACTIONS(1074), - [sym_single_quoted_argument] = ACTIONS(1076), - [anon_sym_DOLLAR] = ACTIONS(1078), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1082), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_word] = ACTIONS(1088), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1069), - [anon_sym_LF] = ACTIONS(1069), - [anon_sym_AMP] = ACTIONS(1069), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1075), + [anon_sym_SEMI_SEMI] = ACTIONS(1075), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1075), + [anon_sym_PIPE_AMP] = ACTIONS(1075), + [anon_sym_AMP_AMP] = ACTIONS(1075), + [anon_sym_PIPE_PIPE] = ACTIONS(1075), + [anon_sym_DQUOTE] = ACTIONS(1080), + [sym_single_quoted_argument] = ACTIONS(1082), + [anon_sym_DOLLAR] = ACTIONS(1084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1086), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1088), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_word] = ACTIONS(1094), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1075), + [anon_sym_LF] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1075), }, [379] = { [sym_quoted_argument] = STATE(425), [sym_expansion] = STATE(425), [sym_operator_expansion] = STATE(425), [sym_command_substitution] = STATE(425), - [anon_sym_DQUOTE] = ACTIONS(1090), - [sym_single_quoted_argument] = ACTIONS(1092), - [anon_sym_DOLLAR] = ACTIONS(1094), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1096), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1098), - [sym_word] = ACTIONS(1100), - [sym_comment] = ACTIONS(71), + [sym__empty_value] = ACTIONS(353), + [anon_sym_DQUOTE] = ACTIONS(1096), + [sym_single_quoted_argument] = ACTIONS(1098), + [anon_sym_DOLLAR] = ACTIONS(1100), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1102), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1104), + [sym_word] = ACTIONS(1106), + [sym_comment] = ACTIONS(73), }, [380] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(410), - [sym_file_descriptor] = ACTIONS(1102), - [anon_sym_in] = ACTIONS(1105), - [anon_sym_RPAREN] = ACTIONS(1105), - [anon_sym_SEMI_SEMI] = ACTIONS(1105), - [anon_sym_RBRACE] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1105), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1105), - [anon_sym_COLON] = ACTIONS(1105), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1105), - [anon_sym_PIPE] = ACTIONS(1105), - [anon_sym_PIPE_AMP] = ACTIONS(1105), - [anon_sym_AMP_AMP] = ACTIONS(1105), - [anon_sym_PIPE_PIPE] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(1108), - [sym__quoted_chars] = ACTIONS(1112), - [sym_single_quoted_argument] = ACTIONS(1105), - [anon_sym_DOLLAR] = ACTIONS(1114), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1118), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1122), - [anon_sym_LT] = ACTIONS(1105), - [anon_sym_GT] = ACTIONS(1105), - [anon_sym_GT_GT] = ACTIONS(1105), - [anon_sym_AMP_GT] = ACTIONS(1105), - [anon_sym_AMP_GT_GT] = ACTIONS(1105), - [anon_sym_LT_AMP] = ACTIONS(1105), - [anon_sym_GT_AMP] = ACTIONS(1105), - [anon_sym_LT_LT] = ACTIONS(1105), - [anon_sym_LT_LT_DASH] = ACTIONS(1105), - [sym_leading_word] = ACTIONS(1105), - [sym_word] = ACTIONS(1105), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1105), - [anon_sym_LF] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(1105), + [sym_file_descriptor] = ACTIONS(1108), + [anon_sym_in] = ACTIONS(1111), + [anon_sym_RPAREN] = ACTIONS(1111), + [anon_sym_SEMI_SEMI] = ACTIONS(1111), + [anon_sym_RBRACE] = ACTIONS(1111), + [anon_sym_RBRACK] = ACTIONS(1111), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1111), + [anon_sym_COLON] = ACTIONS(1111), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1111), + [anon_sym_PIPE] = ACTIONS(1111), + [anon_sym_PIPE_AMP] = ACTIONS(1111), + [anon_sym_AMP_AMP] = ACTIONS(1111), + [anon_sym_PIPE_PIPE] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(1114), + [sym__quoted_chars] = ACTIONS(1118), + [sym_single_quoted_argument] = ACTIONS(1111), + [anon_sym_DOLLAR] = ACTIONS(1120), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1124), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1128), + [anon_sym_LT] = ACTIONS(1111), + [anon_sym_GT] = ACTIONS(1111), + [anon_sym_GT_GT] = ACTIONS(1111), + [anon_sym_AMP_GT] = ACTIONS(1111), + [anon_sym_AMP_GT_GT] = ACTIONS(1111), + [anon_sym_LT_AMP] = ACTIONS(1111), + [anon_sym_GT_AMP] = ACTIONS(1111), + [anon_sym_LT_LT] = ACTIONS(1111), + [anon_sym_LT_LT_DASH] = ACTIONS(1111), + [sym_leading_word] = ACTIONS(1111), + [sym_word] = ACTIONS(1111), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1111), + [anon_sym_LF] = ACTIONS(1111), + [anon_sym_AMP] = ACTIONS(1111), }, [381] = { - [sym__heredoc_middle] = ACTIONS(459), - [sym__heredoc_end] = ACTIONS(459), - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_in] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_RBRACK] = ACTIONS(417), - [anon_sym_RBRACK_RBRACK] = ACTIONS(417), - [anon_sym_COLON] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym__quoted_chars] = ACTIONS(417), - [sym_single_quoted_argument] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(1126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_leading_word] = ACTIONS(417), - [sym_word] = ACTIONS(1129), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym__heredoc_middle] = ACTIONS(463), + [sym__heredoc_end] = ACTIONS(463), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_in] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(421), + [anon_sym_RBRACK_RBRACK] = ACTIONS(421), + [anon_sym_COLON] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(421), + [sym__quoted_chars] = ACTIONS(421), + [sym_single_quoted_argument] = ACTIONS(421), + [anon_sym_DOLLAR] = ACTIONS(1132), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [sym_leading_word] = ACTIONS(421), + [sym_word] = ACTIONS(1135), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), }, [382] = { [sym_quoted_argument] = STATE(434), [sym_expansion] = STATE(434), [sym_operator_expansion] = STATE(434), [sym_command_substitution] = STATE(434), - [anon_sym_DQUOTE] = ACTIONS(1132), - [sym_single_quoted_argument] = ACTIONS(1134), - [anon_sym_DOLLAR] = ACTIONS(1136), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1140), - [sym_word] = ACTIONS(1142), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_single_quoted_argument] = ACTIONS(1140), + [anon_sym_DOLLAR] = ACTIONS(1142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1146), + [sym_word] = ACTIONS(1148), + [sym_comment] = ACTIONS(73), }, [383] = { [sym_heredoc] = STATE(403), - [sym__simple_heredoc] = ACTIONS(1144), - [sym__heredoc_beginning] = ACTIONS(1146), - [sym_comment] = ACTIONS(71), + [sym__simple_heredoc] = ACTIONS(1150), + [sym__heredoc_beginning] = ACTIONS(1152), + [sym_comment] = ACTIONS(73), }, [384] = { [sym_case_item] = STATE(238), @@ -14221,246 +14239,283 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), [aux_sym_case_statement_repeat1] = STATE(406), - [sym_file_descriptor] = ACTIONS(363), - [ts_builtin_sym_end] = ACTIONS(363), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(365), - [anon_sym_done] = ACTIONS(365), - [anon_sym_if] = ACTIONS(365), - [anon_sym_then] = ACTIONS(365), - [anon_sym_fi] = ACTIONS(365), - [anon_sym_elif] = ACTIONS(365), - [anon_sym_else] = ACTIONS(365), - [anon_sym_case] = ACTIONS(365), - [anon_sym_in] = ACTIONS(1148), - [anon_sym_esac] = ACTIONS(1150), - [anon_sym_RPAREN] = ACTIONS(363), - [anon_sym_SEMI_SEMI] = ACTIONS(363), - [anon_sym_function] = ACTIONS(365), - [anon_sym_LPAREN] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(363), - [anon_sym_LBRACK] = ACTIONS(365), - [anon_sym_LBRACK_LBRACK] = ACTIONS(365), - [anon_sym_COLON] = ACTIONS(365), - [anon_sym_DQUOTE] = ACTIONS(1152), - [sym_single_quoted_argument] = ACTIONS(1155), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [anon_sym_LT] = ACTIONS(365), - [anon_sym_GT] = ACTIONS(365), - [anon_sym_GT_GT] = ACTIONS(365), - [anon_sym_AMP_GT] = ACTIONS(365), - [anon_sym_AMP_GT_GT] = ACTIONS(365), - [anon_sym_LT_AMP] = ACTIONS(365), - [anon_sym_GT_AMP] = ACTIONS(365), - [sym_leading_word] = ACTIONS(367), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(367), + [ts_builtin_sym_end] = ACTIONS(367), + [anon_sym_while] = ACTIONS(369), + [anon_sym_do] = ACTIONS(369), + [anon_sym_done] = ACTIONS(369), + [anon_sym_if] = ACTIONS(369), + [anon_sym_then] = ACTIONS(369), + [anon_sym_fi] = ACTIONS(369), + [anon_sym_elif] = ACTIONS(369), + [anon_sym_else] = ACTIONS(369), + [anon_sym_case] = ACTIONS(369), + [anon_sym_in] = ACTIONS(1154), + [anon_sym_esac] = ACTIONS(1156), + [anon_sym_RPAREN] = ACTIONS(367), + [anon_sym_SEMI_SEMI] = ACTIONS(367), + [anon_sym_function] = ACTIONS(369), + [anon_sym_LPAREN] = ACTIONS(367), + [anon_sym_RBRACE] = ACTIONS(367), + [anon_sym_LBRACK] = ACTIONS(369), + [anon_sym_LBRACK_LBRACK] = ACTIONS(369), + [anon_sym_COLON] = ACTIONS(369), + [anon_sym_DQUOTE] = ACTIONS(1158), + [sym_single_quoted_argument] = ACTIONS(1161), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [anon_sym_LT] = ACTIONS(369), + [anon_sym_GT] = ACTIONS(369), + [anon_sym_GT_GT] = ACTIONS(369), + [anon_sym_AMP_GT] = ACTIONS(369), + [anon_sym_AMP_GT_GT] = ACTIONS(369), + [anon_sym_LT_AMP] = ACTIONS(369), + [anon_sym_GT_AMP] = ACTIONS(369), + [sym_leading_word] = ACTIONS(371), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [385] = { - [sym_file_descriptor] = ACTIONS(515), - [anon_sym_RPAREN] = ACTIONS(517), - [anon_sym_SEMI_SEMI] = ACTIONS(517), - [anon_sym_PIPE] = ACTIONS(517), - [anon_sym_PIPE_AMP] = ACTIONS(517), - [anon_sym_AMP_AMP] = ACTIONS(517), - [anon_sym_PIPE_PIPE] = ACTIONS(517), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_GT] = ACTIONS(517), - [anon_sym_GT_GT] = ACTIONS(517), - [anon_sym_AMP_GT] = ACTIONS(517), - [anon_sym_AMP_GT_GT] = ACTIONS(517), - [anon_sym_LT_AMP] = ACTIONS(517), - [anon_sym_GT_AMP] = ACTIONS(517), - [anon_sym_LT_LT] = ACTIONS(517), - [anon_sym_LT_LT_DASH] = ACTIONS(517), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(517), - [anon_sym_LF] = ACTIONS(517), - [anon_sym_AMP] = ACTIONS(517), + [sym_file_descriptor] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_SEMI_SEMI] = ACTIONS(521), + [anon_sym_PIPE] = ACTIONS(521), + [anon_sym_PIPE_AMP] = ACTIONS(521), + [anon_sym_AMP_AMP] = ACTIONS(521), + [anon_sym_PIPE_PIPE] = ACTIONS(521), + [anon_sym_LT] = ACTIONS(521), + [anon_sym_GT] = ACTIONS(521), + [anon_sym_GT_GT] = ACTIONS(521), + [anon_sym_AMP_GT] = ACTIONS(521), + [anon_sym_AMP_GT_GT] = ACTIONS(521), + [anon_sym_LT_AMP] = ACTIONS(521), + [anon_sym_GT_AMP] = ACTIONS(521), + [anon_sym_LT_LT] = ACTIONS(521), + [anon_sym_LT_LT_DASH] = ACTIONS(521), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(521), + [anon_sym_LF] = ACTIONS(521), + [anon_sym_AMP] = ACTIONS(521), }, [386] = { [sym_expansion] = STATE(202), [sym_operator_expansion] = STATE(202), [aux_sym_heredoc_repeat1] = STATE(411), - [sym__heredoc_middle] = ACTIONS(519), - [sym__heredoc_end] = ACTIONS(1158), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(523), + [sym__heredoc_end] = ACTIONS(1164), + [anon_sym_DOLLAR] = ACTIONS(527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(529), + [sym_comment] = ACTIONS(73), }, [387] = { - [sym__heredoc_middle] = ACTIONS(1160), - [sym__heredoc_end] = ACTIONS(1160), - [anon_sym_DOLLAR] = ACTIONS(1163), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1160), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(1166), + [sym__heredoc_end] = ACTIONS(1166), + [anon_sym_DOLLAR] = ACTIONS(1169), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1166), + [sym_comment] = ACTIONS(73), }, [388] = { - [sym_file_descriptor] = ACTIONS(1166), - [anon_sym_RPAREN] = ACTIONS(1169), - [anon_sym_SEMI_SEMI] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1169), - [anon_sym_PIPE_AMP] = ACTIONS(1169), - [anon_sym_AMP_AMP] = ACTIONS(1169), - [anon_sym_PIPE_PIPE] = ACTIONS(1169), - [anon_sym_LT] = ACTIONS(1169), - [anon_sym_GT] = ACTIONS(1169), - [anon_sym_GT_GT] = ACTIONS(1169), - [anon_sym_AMP_GT] = ACTIONS(1169), - [anon_sym_AMP_GT_GT] = ACTIONS(1169), - [anon_sym_LT_AMP] = ACTIONS(1169), - [anon_sym_GT_AMP] = ACTIONS(1169), - [anon_sym_LT_LT] = ACTIONS(1169), - [anon_sym_LT_LT_DASH] = ACTIONS(1169), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_LF] = ACTIONS(1169), - [anon_sym_AMP] = ACTIONS(1169), + [sym_file_descriptor] = ACTIONS(1172), + [anon_sym_RPAREN] = ACTIONS(1175), + [anon_sym_SEMI_SEMI] = ACTIONS(1175), + [anon_sym_PIPE] = ACTIONS(1175), + [anon_sym_PIPE_AMP] = ACTIONS(1175), + [anon_sym_AMP_AMP] = ACTIONS(1175), + [anon_sym_PIPE_PIPE] = ACTIONS(1175), + [anon_sym_LT] = ACTIONS(1175), + [anon_sym_GT] = ACTIONS(1175), + [anon_sym_GT_GT] = ACTIONS(1175), + [anon_sym_AMP_GT] = ACTIONS(1175), + [anon_sym_AMP_GT_GT] = ACTIONS(1175), + [anon_sym_LT_AMP] = ACTIONS(1175), + [anon_sym_GT_AMP] = ACTIONS(1175), + [anon_sym_LT_LT] = ACTIONS(1175), + [anon_sym_LT_LT_DASH] = ACTIONS(1175), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1175), + [anon_sym_LF] = ACTIONS(1175), + [anon_sym_AMP] = ACTIONS(1175), }, [389] = { - [anon_sym_LT] = ACTIONS(1172), - [anon_sym_GT] = ACTIONS(1172), - [anon_sym_GT_GT] = ACTIONS(1174), - [anon_sym_AMP_GT] = ACTIONS(1172), - [anon_sym_AMP_GT_GT] = ACTIONS(1174), - [anon_sym_LT_AMP] = ACTIONS(1174), - [anon_sym_GT_AMP] = ACTIONS(1174), - [sym_comment] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(1178), + [anon_sym_GT] = ACTIONS(1178), + [anon_sym_GT_GT] = ACTIONS(1180), + [anon_sym_AMP_GT] = ACTIONS(1178), + [anon_sym_AMP_GT_GT] = ACTIONS(1180), + [anon_sym_LT_AMP] = ACTIONS(1180), + [anon_sym_GT_AMP] = ACTIONS(1180), + [sym_comment] = ACTIONS(73), }, [390] = { [sym_do_group] = STATE(75), - [sym_file_descriptor] = ACTIONS(1176), - [ts_builtin_sym_end] = ACTIONS(1176), - [anon_sym_while] = ACTIONS(1179), - [anon_sym_do] = ACTIONS(1182), - [anon_sym_done] = ACTIONS(1179), - [anon_sym_if] = ACTIONS(1179), - [anon_sym_then] = ACTIONS(1184), - [anon_sym_fi] = ACTIONS(1179), - [anon_sym_elif] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1179), - [anon_sym_case] = ACTIONS(1179), - [anon_sym_RPAREN] = ACTIONS(1176), - [anon_sym_SEMI_SEMI] = ACTIONS(1176), - [anon_sym_function] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1176), - [anon_sym_RBRACE] = ACTIONS(1176), - [anon_sym_LBRACK] = ACTIONS(1179), - [anon_sym_LBRACK_LBRACK] = ACTIONS(1179), - [anon_sym_COLON] = ACTIONS(1176), - [anon_sym_DQUOTE] = ACTIONS(1176), - [sym_single_quoted_argument] = ACTIONS(1179), - [anon_sym_LT] = ACTIONS(1179), - [anon_sym_GT] = ACTIONS(1179), - [anon_sym_GT_GT] = ACTIONS(1179), - [anon_sym_AMP_GT] = ACTIONS(1179), - [anon_sym_AMP_GT_GT] = ACTIONS(1179), - [anon_sym_LT_AMP] = ACTIONS(1179), - [anon_sym_GT_AMP] = ACTIONS(1179), - [sym_leading_word] = ACTIONS(1186), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(1182), + [ts_builtin_sym_end] = ACTIONS(1182), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(1188), + [anon_sym_done] = ACTIONS(1185), + [anon_sym_if] = ACTIONS(1185), + [anon_sym_then] = ACTIONS(1190), + [anon_sym_fi] = ACTIONS(1185), + [anon_sym_elif] = ACTIONS(1185), + [anon_sym_else] = ACTIONS(1185), + [anon_sym_case] = ACTIONS(1185), + [anon_sym_RPAREN] = ACTIONS(1182), + [anon_sym_SEMI_SEMI] = ACTIONS(1182), + [anon_sym_function] = ACTIONS(1185), + [anon_sym_LPAREN] = ACTIONS(1182), + [anon_sym_RBRACE] = ACTIONS(1182), + [anon_sym_LBRACK] = ACTIONS(1185), + [anon_sym_LBRACK_LBRACK] = ACTIONS(1185), + [anon_sym_COLON] = ACTIONS(1182), + [anon_sym_DQUOTE] = ACTIONS(1182), + [sym_single_quoted_argument] = ACTIONS(1185), + [anon_sym_LT] = ACTIONS(1185), + [anon_sym_GT] = ACTIONS(1185), + [anon_sym_GT_GT] = ACTIONS(1185), + [anon_sym_AMP_GT] = ACTIONS(1185), + [anon_sym_AMP_GT_GT] = ACTIONS(1185), + [anon_sym_LT_AMP] = ACTIONS(1185), + [anon_sym_GT_AMP] = ACTIONS(1185), + [sym_leading_word] = ACTIONS(1192), + [sym_comment] = ACTIONS(73), }, [391] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1189), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_PIPE_AMP] = ACTIONS(1193), - [anon_sym_AMP_AMP] = ACTIONS(1197), - [anon_sym_PIPE_PIPE] = ACTIONS(1197), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), + [anon_sym_SEMI_SEMI] = ACTIONS(1195), + [anon_sym_PIPE] = ACTIONS(1199), + [anon_sym_PIPE_AMP] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(1203), + [anon_sym_PIPE_PIPE] = ACTIONS(1203), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LF] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), }, [392] = { - [anon_sym_fi] = ACTIONS(1201), - [anon_sym_elif] = ACTIONS(1201), - [anon_sym_else] = ACTIONS(1201), - [sym_comment] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(1207), + [anon_sym_elif] = ACTIONS(1207), + [anon_sym_else] = ACTIONS(1207), + [sym_comment] = ACTIONS(73), }, [393] = { - [anon_sym_fi] = ACTIONS(1204), - [sym_comment] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(1210), + [sym_comment] = ACTIONS(73), }, [394] = { - [anon_sym_esac] = ACTIONS(1206), - [anon_sym_DQUOTE] = ACTIONS(1209), - [sym_single_quoted_argument] = ACTIONS(1206), - [anon_sym_DOLLAR] = ACTIONS(1206), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1209), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1209), - [sym_word] = ACTIONS(1212), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(1215), + [sym_single_quoted_argument] = ACTIONS(1212), + [anon_sym_DOLLAR] = ACTIONS(1212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1215), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1215), + [sym_word] = ACTIONS(1218), + [sym_comment] = ACTIONS(73), }, [395] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1215), - [anon_sym_PIPE] = ACTIONS(1215), - [anon_sym_PIPE_AMP] = ACTIONS(1215), - [anon_sym_AMP_AMP] = ACTIONS(1215), - [anon_sym_PIPE_PIPE] = ACTIONS(1215), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_LF] = ACTIONS(1215), - [anon_sym_AMP] = ACTIONS(1215), + [anon_sym_SEMI_SEMI] = ACTIONS(1221), + [anon_sym_PIPE] = ACTIONS(1221), + [anon_sym_PIPE_AMP] = ACTIONS(1221), + [anon_sym_AMP_AMP] = ACTIONS(1221), + [anon_sym_PIPE_PIPE] = ACTIONS(1221), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1221), + [anon_sym_LF] = ACTIONS(1221), + [anon_sym_AMP] = ACTIONS(1221), }, [396] = { - [anon_sym_RPAREN] = ACTIONS(1218), - [anon_sym_SEMI_SEMI] = ACTIONS(1220), - [anon_sym_PIPE] = ACTIONS(1224), - [anon_sym_PIPE_AMP] = ACTIONS(1224), - [anon_sym_AMP_AMP] = ACTIONS(1228), - [anon_sym_PIPE_PIPE] = ACTIONS(1228), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1220), - [anon_sym_LF] = ACTIONS(1220), - [anon_sym_AMP] = ACTIONS(1220), + [anon_sym_RPAREN] = ACTIONS(1224), + [anon_sym_SEMI_SEMI] = ACTIONS(1226), + [anon_sym_PIPE] = ACTIONS(1230), + [anon_sym_PIPE_AMP] = ACTIONS(1230), + [anon_sym_AMP_AMP] = ACTIONS(1234), + [anon_sym_PIPE_PIPE] = ACTIONS(1234), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1226), + [anon_sym_LF] = ACTIONS(1226), + [anon_sym_AMP] = ACTIONS(1226), }, [397] = { - [sym_file_descriptor] = ACTIONS(1232), - [anon_sym_SEMI_SEMI] = ACTIONS(1189), - [anon_sym_COLON] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1193), - [anon_sym_PIPE_AMP] = ACTIONS(1193), - [anon_sym_AMP_AMP] = ACTIONS(1197), - [anon_sym_PIPE_PIPE] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_single_quoted_argument] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1235), - [anon_sym_GT] = ACTIONS(1235), - [anon_sym_GT_GT] = ACTIONS(1235), - [anon_sym_AMP_GT] = ACTIONS(1235), - [anon_sym_AMP_GT_GT] = ACTIONS(1235), - [anon_sym_LT_AMP] = ACTIONS(1235), - [anon_sym_GT_AMP] = ACTIONS(1235), - [sym_leading_word] = ACTIONS(1235), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1189), - [anon_sym_LF] = ACTIONS(1189), - [anon_sym_AMP] = ACTIONS(1189), + [sym_file_descriptor] = ACTIONS(1238), + [anon_sym_SEMI_SEMI] = ACTIONS(1195), + [anon_sym_COLON] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1199), + [anon_sym_PIPE_AMP] = ACTIONS(1199), + [anon_sym_AMP_AMP] = ACTIONS(1203), + [anon_sym_PIPE_PIPE] = ACTIONS(1203), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_single_quoted_argument] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1241), + [anon_sym_GT] = ACTIONS(1241), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_AMP_GT] = ACTIONS(1241), + [anon_sym_AMP_GT_GT] = ACTIONS(1241), + [anon_sym_LT_AMP] = ACTIONS(1241), + [anon_sym_GT_AMP] = ACTIONS(1241), + [sym_leading_word] = ACTIONS(1241), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1195), + [anon_sym_LF] = ACTIONS(1195), + [anon_sym_AMP] = ACTIONS(1195), }, [398] = { [sym_file_redirect] = STATE(422), [sym_heredoc_redirect] = STATE(422), [aux_sym_command_repeat2] = STATE(423), - [sym_file_descriptor] = ACTIONS(1238), - [anon_sym_in] = ACTIONS(217), - [anon_sym_RPAREN] = ACTIONS(1245), - [anon_sym_SEMI_SEMI] = ACTIONS(1253), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1267), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1072), - [anon_sym_PIPE] = ACTIONS(1271), - [anon_sym_PIPE_AMP] = ACTIONS(1271), - [anon_sym_AMP_AMP] = ACTIONS(1271), - [anon_sym_PIPE_PIPE] = ACTIONS(1271), - [anon_sym_DQUOTE] = ACTIONS(1279), - [sym_single_quoted_argument] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1264), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1264), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1264), + [sym_file_descriptor] = ACTIONS(1244), + [anon_sym_in] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1251), + [anon_sym_SEMI_SEMI] = ACTIONS(1259), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_RBRACK] = ACTIONS(1270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1270), + [anon_sym_COLON] = ACTIONS(1273), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1078), + [anon_sym_PIPE] = ACTIONS(1277), + [anon_sym_PIPE_AMP] = ACTIONS(1277), + [anon_sym_AMP_AMP] = ACTIONS(1277), + [anon_sym_PIPE_PIPE] = ACTIONS(1277), + [anon_sym_DQUOTE] = ACTIONS(1285), + [sym_single_quoted_argument] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1270), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(1291), + [anon_sym_GT] = ACTIONS(1291), + [anon_sym_GT_GT] = ACTIONS(1291), + [anon_sym_AMP_GT] = ACTIONS(1291), + [anon_sym_AMP_GT_GT] = ACTIONS(1291), + [anon_sym_LT_AMP] = ACTIONS(1291), + [anon_sym_GT_AMP] = ACTIONS(1291), + [anon_sym_LT_LT] = ACTIONS(1298), + [anon_sym_LT_LT_DASH] = ACTIONS(1298), + [sym_leading_word] = ACTIONS(1273), + [sym_word] = ACTIONS(1270), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1259), + [anon_sym_LF] = ACTIONS(1259), + [anon_sym_AMP] = ACTIONS(1259), + }, + [399] = { + [sym__heredoc_middle] = ACTIONS(1166), + [sym__heredoc_end] = ACTIONS(1166), + [sym_file_descriptor] = ACTIONS(1304), + [anon_sym_in] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1310), + [anon_sym_SEMI_SEMI] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_RBRACK] = ACTIONS(1270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1270), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_PIPE_AMP] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym__quoted_chars] = ACTIONS(1331), + [sym_single_quoted_argument] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1334), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1341), [anon_sym_LT] = ACTIONS(1285), [anon_sym_GT] = ACTIONS(1285), [anon_sym_GT_GT] = ACTIONS(1285), @@ -14468,156 +14523,119 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_GT_GT] = ACTIONS(1285), [anon_sym_LT_AMP] = ACTIONS(1285), [anon_sym_GT_AMP] = ACTIONS(1285), - [anon_sym_LT_LT] = ACTIONS(1292), - [anon_sym_LT_LT_DASH] = ACTIONS(1292), - [sym_leading_word] = ACTIONS(1267), - [sym_word] = ACTIONS(1264), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1253), - [anon_sym_LF] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - }, - [399] = { - [sym__heredoc_middle] = ACTIONS(1160), - [sym__heredoc_end] = ACTIONS(1160), - [sym_file_descriptor] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(217), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__quoted_chars] = ACTIONS(1325), - [sym_single_quoted_argument] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1328), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(1279), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [anon_sym_LT_LT] = ACTIONS(1340), - [anon_sym_LT_LT_DASH] = ACTIONS(1340), - [sym_leading_word] = ACTIONS(1267), - [sym_word] = ACTIONS(1264), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [sym_leading_word] = ACTIONS(1273), + [sym_word] = ACTIONS(1270), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_LF] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), }, [400] = { - [sym_file_descriptor] = ACTIONS(1298), - [anon_sym_in] = ACTIONS(217), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_SEMI_SEMI] = ACTIONS(1310), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_RBRACK] = ACTIONS(1264), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1267), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_PIPE_AMP] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [anon_sym_DQUOTE] = ACTIONS(1317), - [sym__quoted_chars] = ACTIONS(1325), - [sym_single_quoted_argument] = ACTIONS(1279), - [anon_sym_DOLLAR] = ACTIONS(1335), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1335), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1335), - [anon_sym_LT] = ACTIONS(1279), - [anon_sym_GT] = ACTIONS(1279), - [anon_sym_GT_GT] = ACTIONS(1279), - [anon_sym_AMP_GT] = ACTIONS(1279), - [anon_sym_AMP_GT_GT] = ACTIONS(1279), - [anon_sym_LT_AMP] = ACTIONS(1279), - [anon_sym_GT_AMP] = ACTIONS(1279), - [anon_sym_LT_LT] = ACTIONS(1340), - [anon_sym_LT_LT_DASH] = ACTIONS(1340), - [sym_leading_word] = ACTIONS(1267), - [sym_word] = ACTIONS(1264), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1310), - [anon_sym_LF] = ACTIONS(1310), - [anon_sym_AMP] = ACTIONS(1310), + [sym_file_descriptor] = ACTIONS(1304), + [anon_sym_in] = ACTIONS(219), + [anon_sym_RPAREN] = ACTIONS(1310), + [anon_sym_SEMI_SEMI] = ACTIONS(1316), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_RBRACK] = ACTIONS(1270), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1270), + [anon_sym_COLON] = ACTIONS(1273), + [anon_sym_PIPE] = ACTIONS(1285), + [anon_sym_PIPE_AMP] = ACTIONS(1285), + [anon_sym_AMP_AMP] = ACTIONS(1285), + [anon_sym_PIPE_PIPE] = ACTIONS(1285), + [anon_sym_DQUOTE] = ACTIONS(1323), + [sym__quoted_chars] = ACTIONS(1331), + [sym_single_quoted_argument] = ACTIONS(1285), + [anon_sym_DOLLAR] = ACTIONS(1341), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1341), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1341), + [anon_sym_LT] = ACTIONS(1285), + [anon_sym_GT] = ACTIONS(1285), + [anon_sym_GT_GT] = ACTIONS(1285), + [anon_sym_AMP_GT] = ACTIONS(1285), + [anon_sym_AMP_GT_GT] = ACTIONS(1285), + [anon_sym_LT_AMP] = ACTIONS(1285), + [anon_sym_GT_AMP] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(1346), + [anon_sym_LT_LT_DASH] = ACTIONS(1346), + [sym_leading_word] = ACTIONS(1273), + [sym_word] = ACTIONS(1270), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1316), + [anon_sym_LF] = ACTIONS(1316), + [anon_sym_AMP] = ACTIONS(1316), }, [401] = { - [sym_file_descriptor] = ACTIONS(1345), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_SEMI_SEMI] = ACTIONS(1350), - [anon_sym_COLON] = ACTIONS(1235), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_PIPE_AMP] = ACTIONS(1350), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1235), - [sym_single_quoted_argument] = ACTIONS(1235), - [anon_sym_LT] = ACTIONS(1353), - [anon_sym_GT] = ACTIONS(1353), - [anon_sym_GT_GT] = ACTIONS(1353), - [anon_sym_AMP_GT] = ACTIONS(1353), - [anon_sym_AMP_GT_GT] = ACTIONS(1353), - [anon_sym_LT_AMP] = ACTIONS(1353), - [anon_sym_GT_AMP] = ACTIONS(1353), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_LT_LT_DASH] = ACTIONS(1350), - [sym_leading_word] = ACTIONS(1235), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), + [sym_file_descriptor] = ACTIONS(1351), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_COLON] = ACTIONS(1241), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_DQUOTE] = ACTIONS(1241), + [sym_single_quoted_argument] = ACTIONS(1241), + [anon_sym_LT] = ACTIONS(1359), + [anon_sym_GT] = ACTIONS(1359), + [anon_sym_GT_GT] = ACTIONS(1359), + [anon_sym_AMP_GT] = ACTIONS(1359), + [anon_sym_AMP_GT_GT] = ACTIONS(1359), + [anon_sym_LT_AMP] = ACTIONS(1359), + [anon_sym_GT_AMP] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [sym_leading_word] = ACTIONS(1241), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), }, [402] = { - [sym_file_descriptor] = ACTIONS(1358), - [anon_sym_RPAREN] = ACTIONS(1350), - [anon_sym_SEMI_SEMI] = ACTIONS(1350), - [anon_sym_PIPE] = ACTIONS(1350), - [anon_sym_PIPE_AMP] = ACTIONS(1350), - [anon_sym_AMP_AMP] = ACTIONS(1350), - [anon_sym_PIPE_PIPE] = ACTIONS(1350), - [anon_sym_LT] = ACTIONS(1350), - [anon_sym_GT] = ACTIONS(1350), - [anon_sym_GT_GT] = ACTIONS(1350), - [anon_sym_AMP_GT] = ACTIONS(1350), - [anon_sym_AMP_GT_GT] = ACTIONS(1350), - [anon_sym_LT_AMP] = ACTIONS(1350), - [anon_sym_GT_AMP] = ACTIONS(1350), - [anon_sym_LT_LT] = ACTIONS(1350), - [anon_sym_LT_LT_DASH] = ACTIONS(1350), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1350), - [anon_sym_LF] = ACTIONS(1350), - [anon_sym_AMP] = ACTIONS(1350), + [sym_file_descriptor] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1356), + [anon_sym_SEMI_SEMI] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_PIPE_AMP] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1356), + [anon_sym_PIPE_PIPE] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_AMP_GT] = ACTIONS(1356), + [anon_sym_AMP_GT_GT] = ACTIONS(1356), + [anon_sym_LT_AMP] = ACTIONS(1356), + [anon_sym_GT_AMP] = ACTIONS(1356), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_LT_LT_DASH] = ACTIONS(1356), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1356), + [anon_sym_LF] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), }, [403] = { - [sym_file_descriptor] = ACTIONS(527), - [anon_sym_RPAREN] = ACTIONS(529), - [anon_sym_SEMI_SEMI] = ACTIONS(529), - [anon_sym_PIPE] = ACTIONS(529), - [anon_sym_PIPE_AMP] = ACTIONS(529), - [anon_sym_AMP_AMP] = ACTIONS(529), - [anon_sym_PIPE_PIPE] = ACTIONS(529), - [anon_sym_LT] = ACTIONS(529), - [anon_sym_GT] = ACTIONS(529), - [anon_sym_GT_GT] = ACTIONS(529), - [anon_sym_AMP_GT] = ACTIONS(529), - [anon_sym_AMP_GT_GT] = ACTIONS(529), - [anon_sym_LT_AMP] = ACTIONS(529), - [anon_sym_GT_AMP] = ACTIONS(529), - [anon_sym_LT_LT] = ACTIONS(529), - [anon_sym_LT_LT_DASH] = ACTIONS(529), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(529), - [anon_sym_LF] = ACTIONS(529), - [anon_sym_AMP] = ACTIONS(529), + [sym_file_descriptor] = ACTIONS(531), + [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_SEMI_SEMI] = ACTIONS(533), + [anon_sym_PIPE] = ACTIONS(533), + [anon_sym_PIPE_AMP] = ACTIONS(533), + [anon_sym_AMP_AMP] = ACTIONS(533), + [anon_sym_PIPE_PIPE] = ACTIONS(533), + [anon_sym_LT] = ACTIONS(533), + [anon_sym_GT] = ACTIONS(533), + [anon_sym_GT_GT] = ACTIONS(533), + [anon_sym_AMP_GT] = ACTIONS(533), + [anon_sym_AMP_GT_GT] = ACTIONS(533), + [anon_sym_LT_AMP] = ACTIONS(533), + [anon_sym_GT_AMP] = ACTIONS(533), + [anon_sym_LT_LT] = ACTIONS(533), + [anon_sym_LT_LT_DASH] = ACTIONS(533), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(533), + [anon_sym_LF] = ACTIONS(533), + [anon_sym_AMP] = ACTIONS(533), }, [404] = { [sym__terminated_statement] = STATE(68), @@ -14637,42 +14655,42 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_if_statement_repeat1] = STATE(233), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [ts_builtin_sym_end] = ACTIONS(197), - [anon_sym_while] = ACTIONS(79), - [anon_sym_done] = ACTIONS(593), - [anon_sym_if] = ACTIONS(81), - [anon_sym_fi] = ACTIONS(1361), - [anon_sym_elif] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(83), - [anon_sym_RPAREN] = ACTIONS(243), - [anon_sym_SEMI_SEMI] = ACTIONS(1371), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_RBRACE] = ACTIONS(859), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [ts_builtin_sym_end] = ACTIONS(199), + [anon_sym_while] = ACTIONS(81), + [anon_sym_done] = ACTIONS(599), + [anon_sym_if] = ACTIONS(83), + [anon_sym_fi] = ACTIONS(1367), + [anon_sym_elif] = ACTIONS(1371), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(85), + [anon_sym_RPAREN] = ACTIONS(245), + [anon_sym_SEMI_SEMI] = ACTIONS(1377), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_RBRACE] = ACTIONS(865), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [405] = { [sym_elif_clause] = STATE(234), [sym_else_clause] = STATE(448), - [anon_sym_fi] = ACTIONS(1373), - [anon_sym_elif] = ACTIONS(605), - [anon_sym_else] = ACTIONS(607), - [sym_comment] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(1379), + [anon_sym_elif] = ACTIONS(611), + [anon_sym_else] = ACTIONS(613), + [sym_comment] = ACTIONS(73), }, [406] = { [sym_case_item] = STATE(301), @@ -14680,14 +14698,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(236), [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), - [anon_sym_esac] = ACTIONS(1375), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [407] = { [sym_quoted_argument] = STATE(451), @@ -14697,96 +14715,96 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(422), [sym_heredoc_redirect] = STATE(422), [aux_sym_command_repeat2] = STATE(456), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1377), - [anon_sym_SEMI_SEMI] = ACTIONS(1377), - [anon_sym_RBRACK] = ACTIONS(1382), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1382), - [anon_sym_PIPE] = ACTIONS(1377), - [anon_sym_PIPE_AMP] = ACTIONS(1377), - [anon_sym_AMP_AMP] = ACTIONS(1377), - [anon_sym_PIPE_PIPE] = ACTIONS(1377), - [anon_sym_DQUOTE] = ACTIONS(1384), - [sym_single_quoted_argument] = ACTIONS(1386), - [anon_sym_DOLLAR] = ACTIONS(1388), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1390), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_word] = ACTIONS(1394), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1377), - [anon_sym_LF] = ACTIONS(1377), - [anon_sym_AMP] = ACTIONS(1377), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1383), + [anon_sym_SEMI_SEMI] = ACTIONS(1383), + [anon_sym_RBRACK] = ACTIONS(1388), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1383), + [anon_sym_PIPE_AMP] = ACTIONS(1383), + [anon_sym_AMP_AMP] = ACTIONS(1383), + [anon_sym_PIPE_PIPE] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(1390), + [sym_single_quoted_argument] = ACTIONS(1392), + [anon_sym_DOLLAR] = ACTIONS(1394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1398), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_word] = ACTIONS(1400), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1383), + [anon_sym_LF] = ACTIONS(1383), + [anon_sym_AMP] = ACTIONS(1383), }, [408] = { [sym_environment_variable_assignment] = STATE(71), [sym_quoted_argument] = STATE(457), [sym_file_redirect] = STATE(71), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(1396), - [anon_sym_DQUOTE] = ACTIONS(1398), - [sym_single_quoted_argument] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(1402), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(1402), + [anon_sym_DQUOTE] = ACTIONS(1404), + [sym_single_quoted_argument] = ACTIONS(1406), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(1408), + [sym_comment] = ACTIONS(73), }, [409] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_SEMI_SEMI] = ACTIONS(1404), - [anon_sym_PIPE] = ACTIONS(1404), - [anon_sym_PIPE_AMP] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_PIPE_PIPE] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1404), - [anon_sym_LF] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1404), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1410), + [anon_sym_SEMI_SEMI] = ACTIONS(1410), + [anon_sym_PIPE] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1410), + [anon_sym_AMP_AMP] = ACTIONS(1410), + [anon_sym_PIPE_PIPE] = ACTIONS(1410), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1410), + [anon_sym_LF] = ACTIONS(1410), + [anon_sym_AMP] = ACTIONS(1410), }, [410] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(1415), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1421), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [411] = { [sym_expansion] = STATE(281), [sym_operator_expansion] = STATE(281), - [sym__heredoc_middle] = ACTIONS(723), - [sym__heredoc_end] = ACTIONS(1417), - [anon_sym_DOLLAR] = ACTIONS(523), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(525), - [sym_comment] = ACTIONS(71), + [sym__heredoc_middle] = ACTIONS(729), + [sym__heredoc_end] = ACTIONS(1423), + [anon_sym_DOLLAR] = ACTIONS(527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(529), + [sym_comment] = ACTIONS(73), }, [412] = { [sym__terminated_statement] = STATE(68), @@ -14806,29 +14824,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(18), [aux_sym_if_statement_repeat1] = STATE(233), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_fi] = ACTIONS(1419), - [anon_sym_elif] = ACTIONS(1365), - [anon_sym_else] = ACTIONS(1368), - [anon_sym_case] = ACTIONS(83), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_fi] = ACTIONS(1425), + [anon_sym_elif] = ACTIONS(1371), + [anon_sym_else] = ACTIONS(1374), + [anon_sym_case] = ACTIONS(85), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [413] = { [sym_case_item] = STATE(238), @@ -14837,24 +14855,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), [aux_sym_case_statement_repeat1] = STATE(406), - [anon_sym_esac] = ACTIONS(1150), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(1156), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [414] = { - [anon_sym_esac] = ACTIONS(1422), - [anon_sym_DQUOTE] = ACTIONS(1425), - [sym_single_quoted_argument] = ACTIONS(1422), - [anon_sym_DOLLAR] = ACTIONS(1422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1425), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1425), - [sym_word] = ACTIONS(1428), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(1431), + [sym_single_quoted_argument] = ACTIONS(1428), + [anon_sym_DOLLAR] = ACTIONS(1428), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1431), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1431), + [sym_word] = ACTIONS(1434), + [sym_comment] = ACTIONS(73), }, [415] = { [sym__terminated_statement] = STATE(68), @@ -14871,50 +14889,50 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(10), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(20), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_while] = ACTIONS(79), - [anon_sym_if] = ACTIONS(81), - [anon_sym_case] = ACTIONS(83), - [anon_sym_SEMI_SEMI] = ACTIONS(1371), - [anon_sym_function] = ACTIONS(85), - [anon_sym_LPAREN] = ACTIONS(87), - [anon_sym_LBRACK] = ACTIONS(89), - [anon_sym_LBRACK_LBRACK] = ACTIONS(91), - [anon_sym_COLON] = ACTIONS(93), - [anon_sym_DQUOTE] = ACTIONS(95), - [sym_single_quoted_argument] = ACTIONS(97), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(101), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_while] = ACTIONS(81), + [anon_sym_if] = ACTIONS(83), + [anon_sym_case] = ACTIONS(85), + [anon_sym_SEMI_SEMI] = ACTIONS(1377), + [anon_sym_function] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LBRACK] = ACTIONS(91), + [anon_sym_LBRACK_LBRACK] = ACTIONS(93), + [anon_sym_COLON] = ACTIONS(95), + [anon_sym_DQUOTE] = ACTIONS(97), + [sym_single_quoted_argument] = ACTIONS(99), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(103), + [sym_comment] = ACTIONS(73), }, [416] = { [sym_compound_command] = STATE(395), - [anon_sym_SEMI_SEMI] = ACTIONS(241), - [anon_sym_LBRACE] = ACTIONS(1033), - [anon_sym_PIPE] = ACTIONS(241), - [anon_sym_PIPE_AMP] = ACTIONS(241), - [anon_sym_AMP_AMP] = ACTIONS(241), - [anon_sym_PIPE_PIPE] = ACTIONS(241), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_LF] = ACTIONS(241), - [anon_sym_AMP] = ACTIONS(241), + [anon_sym_SEMI_SEMI] = ACTIONS(243), + [anon_sym_LBRACE] = ACTIONS(1039), + [anon_sym_PIPE] = ACTIONS(243), + [anon_sym_PIPE_AMP] = ACTIONS(243), + [anon_sym_AMP_AMP] = ACTIONS(243), + [anon_sym_PIPE_PIPE] = ACTIONS(243), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(243), + [anon_sym_LF] = ACTIONS(243), + [anon_sym_AMP] = ACTIONS(243), }, [417] = { - [anon_sym_LT] = ACTIONS(1431), - [anon_sym_GT] = ACTIONS(1431), - [anon_sym_GT_GT] = ACTIONS(1433), - [anon_sym_AMP_GT] = ACTIONS(1431), - [anon_sym_AMP_GT_GT] = ACTIONS(1433), - [anon_sym_LT_AMP] = ACTIONS(1433), - [anon_sym_GT_AMP] = ACTIONS(1433), - [sym_comment] = ACTIONS(71), + [anon_sym_LT] = ACTIONS(1437), + [anon_sym_GT] = ACTIONS(1437), + [anon_sym_GT_GT] = ACTIONS(1439), + [anon_sym_AMP_GT] = ACTIONS(1437), + [anon_sym_AMP_GT_GT] = ACTIONS(1439), + [anon_sym_LT_AMP] = ACTIONS(1439), + [anon_sym_GT_AMP] = ACTIONS(1439), + [sym_comment] = ACTIONS(73), }, [418] = { [sym_quoted_argument] = STATE(465), @@ -14925,144 +14943,144 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(422), [aux_sym_bracket_command_repeat1] = STATE(470), [aux_sym_command_repeat2] = STATE(471), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_SEMI_SEMI] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_PIPE_AMP] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_single_quoted_argument] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_word] = ACTIONS(1448), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_LF] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_SEMI_SEMI] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_PIPE_AMP] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_single_quoted_argument] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_word] = ACTIONS(1454), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), }, [419] = { - [anon_sym_RBRACE] = ACTIONS(1450), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1456), + [sym_comment] = ACTIONS(73), }, [420] = { [sym_quoted_argument] = STATE(473), [sym_expansion] = STATE(473), [sym_operator_expansion] = STATE(473), [sym_command_substitution] = STATE(473), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_single_quoted_argument] = ACTIONS(1454), - [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), - [sym_word] = ACTIONS(1462), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_single_quoted_argument] = ACTIONS(1460), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [sym_word] = ACTIONS(1468), + [sym_comment] = ACTIONS(73), }, [421] = { - [anon_sym_RBRACE] = ACTIONS(1464), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1470), + [sym_comment] = ACTIONS(73), }, [422] = { - [sym_file_descriptor] = ACTIONS(305), - [anon_sym_RPAREN] = ACTIONS(307), - [anon_sym_SEMI_SEMI] = ACTIONS(307), - [anon_sym_PIPE] = ACTIONS(307), - [anon_sym_PIPE_AMP] = ACTIONS(307), - [anon_sym_AMP_AMP] = ACTIONS(307), - [anon_sym_PIPE_PIPE] = ACTIONS(307), - [anon_sym_LT] = ACTIONS(307), - [anon_sym_GT] = ACTIONS(307), - [anon_sym_GT_GT] = ACTIONS(307), - [anon_sym_AMP_GT] = ACTIONS(307), - [anon_sym_AMP_GT_GT] = ACTIONS(307), - [anon_sym_LT_AMP] = ACTIONS(307), - [anon_sym_GT_AMP] = ACTIONS(307), - [anon_sym_LT_LT] = ACTIONS(307), - [anon_sym_LT_LT_DASH] = ACTIONS(307), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(307), - [anon_sym_LF] = ACTIONS(307), - [anon_sym_AMP] = ACTIONS(307), + [sym_file_descriptor] = ACTIONS(307), + [anon_sym_RPAREN] = ACTIONS(309), + [anon_sym_SEMI_SEMI] = ACTIONS(309), + [anon_sym_PIPE] = ACTIONS(309), + [anon_sym_PIPE_AMP] = ACTIONS(309), + [anon_sym_AMP_AMP] = ACTIONS(309), + [anon_sym_PIPE_PIPE] = ACTIONS(309), + [anon_sym_LT] = ACTIONS(309), + [anon_sym_GT] = ACTIONS(309), + [anon_sym_GT_GT] = ACTIONS(309), + [anon_sym_AMP_GT] = ACTIONS(309), + [anon_sym_AMP_GT_GT] = ACTIONS(309), + [anon_sym_LT_AMP] = ACTIONS(309), + [anon_sym_GT_AMP] = ACTIONS(309), + [anon_sym_LT_LT] = ACTIONS(309), + [anon_sym_LT_LT_DASH] = ACTIONS(309), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(309), + [anon_sym_LF] = ACTIONS(309), + [anon_sym_AMP] = ACTIONS(309), }, [423] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1435), - [anon_sym_SEMI_SEMI] = ACTIONS(1435), - [anon_sym_PIPE] = ACTIONS(1435), - [anon_sym_PIPE_AMP] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1435), - [anon_sym_PIPE_PIPE] = ACTIONS(1435), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1435), - [anon_sym_LF] = ACTIONS(1435), - [anon_sym_AMP] = ACTIONS(1435), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_SEMI_SEMI] = ACTIONS(1441), + [anon_sym_PIPE] = ACTIONS(1441), + [anon_sym_PIPE_AMP] = ACTIONS(1441), + [anon_sym_AMP_AMP] = ACTIONS(1441), + [anon_sym_PIPE_PIPE] = ACTIONS(1441), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1441), + [anon_sym_LF] = ACTIONS(1441), + [anon_sym_AMP] = ACTIONS(1441), }, [424] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(480), - [anon_sym_DQUOTE] = ACTIONS(1466), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1472), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [425] = { - [sym_file_descriptor] = ACTIONS(567), - [anon_sym_SEMI_SEMI] = ACTIONS(569), - [anon_sym_RBRACE] = ACTIONS(1262), - [anon_sym_COLON] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_PIPE_AMP] = ACTIONS(569), - [anon_sym_AMP_AMP] = ACTIONS(569), - [anon_sym_PIPE_PIPE] = ACTIONS(569), - [anon_sym_DQUOTE] = ACTIONS(569), - [sym_single_quoted_argument] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_GT] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(569), - [anon_sym_AMP_GT] = ACTIONS(569), - [anon_sym_AMP_GT_GT] = ACTIONS(569), - [anon_sym_LT_AMP] = ACTIONS(569), - [anon_sym_GT_AMP] = ACTIONS(569), - [sym_leading_word] = ACTIONS(569), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(569), - [anon_sym_LF] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(569), + [sym_file_descriptor] = ACTIONS(569), + [anon_sym_SEMI_SEMI] = ACTIONS(571), + [anon_sym_RBRACE] = ACTIONS(1268), + [anon_sym_COLON] = ACTIONS(571), + [anon_sym_PIPE] = ACTIONS(571), + [anon_sym_PIPE_AMP] = ACTIONS(571), + [anon_sym_AMP_AMP] = ACTIONS(571), + [anon_sym_PIPE_PIPE] = ACTIONS(571), + [anon_sym_DQUOTE] = ACTIONS(571), + [sym_single_quoted_argument] = ACTIONS(571), + [anon_sym_LT] = ACTIONS(571), + [anon_sym_GT] = ACTIONS(571), + [anon_sym_GT_GT] = ACTIONS(571), + [anon_sym_AMP_GT] = ACTIONS(571), + [anon_sym_AMP_GT_GT] = ACTIONS(571), + [anon_sym_LT_AMP] = ACTIONS(571), + [anon_sym_GT_AMP] = ACTIONS(571), + [sym_leading_word] = ACTIONS(571), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(571), + [anon_sym_LF] = ACTIONS(571), + [anon_sym_AMP] = ACTIONS(571), }, [426] = { - [anon_sym_DOLLAR] = ACTIONS(1468), - [sym_word] = ACTIONS(1470), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(1474), + [sym_word] = ACTIONS(1476), + [sym_comment] = ACTIONS(73), }, [427] = { - [sym_leading_word] = ACTIONS(1472), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(1478), + [sym_comment] = ACTIONS(73), }, [428] = { [sym_command] = STATE(484), @@ -15070,199 +15088,199 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [429] = { - [sym_file_descriptor] = ACTIONS(577), - [anon_sym_SEMI_SEMI] = ACTIONS(579), - [anon_sym_RBRACE] = ACTIONS(1474), - [anon_sym_COLON] = ACTIONS(579), - [anon_sym_PIPE] = ACTIONS(579), - [anon_sym_PIPE_AMP] = ACTIONS(579), - [anon_sym_AMP_AMP] = ACTIONS(579), - [anon_sym_PIPE_PIPE] = ACTIONS(579), - [anon_sym_DQUOTE] = ACTIONS(579), - [sym_single_quoted_argument] = ACTIONS(579), - [anon_sym_LT] = ACTIONS(579), - [anon_sym_GT] = ACTIONS(579), - [anon_sym_GT_GT] = ACTIONS(579), - [anon_sym_AMP_GT] = ACTIONS(579), - [anon_sym_AMP_GT_GT] = ACTIONS(579), - [anon_sym_LT_AMP] = ACTIONS(579), - [anon_sym_GT_AMP] = ACTIONS(579), - [sym_leading_word] = ACTIONS(579), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(579), - [anon_sym_LF] = ACTIONS(579), - [anon_sym_AMP] = ACTIONS(579), + [sym_file_descriptor] = ACTIONS(581), + [anon_sym_SEMI_SEMI] = ACTIONS(583), + [anon_sym_RBRACE] = ACTIONS(1480), + [anon_sym_COLON] = ACTIONS(583), + [anon_sym_PIPE] = ACTIONS(583), + [anon_sym_PIPE_AMP] = ACTIONS(583), + [anon_sym_AMP_AMP] = ACTIONS(583), + [anon_sym_PIPE_PIPE] = ACTIONS(583), + [anon_sym_DQUOTE] = ACTIONS(583), + [sym_single_quoted_argument] = ACTIONS(583), + [anon_sym_LT] = ACTIONS(583), + [anon_sym_GT] = ACTIONS(583), + [anon_sym_GT_GT] = ACTIONS(583), + [anon_sym_AMP_GT] = ACTIONS(583), + [anon_sym_AMP_GT_GT] = ACTIONS(583), + [anon_sym_LT_AMP] = ACTIONS(583), + [anon_sym_GT_AMP] = ACTIONS(583), + [sym_leading_word] = ACTIONS(583), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(583), + [anon_sym_LF] = ACTIONS(583), + [anon_sym_AMP] = ACTIONS(583), }, [430] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_in] = ACTIONS(311), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(311), - [anon_sym_RBRACK_RBRACK] = ACTIONS(311), - [anon_sym_COLON] = ACTIONS(311), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_single_quoted_argument] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_leading_word] = ACTIONS(311), - [sym_word] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_in] = ACTIONS(313), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_RBRACK_RBRACK] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(313), + [sym_single_quoted_argument] = ACTIONS(313), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_leading_word] = ACTIONS(313), + [sym_word] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [431] = { - [sym__heredoc_middle] = ACTIONS(459), - [sym__heredoc_end] = ACTIONS(459), - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_in] = ACTIONS(417), - [anon_sym_RPAREN] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_RBRACK] = ACTIONS(417), - [anon_sym_RBRACK_RBRACK] = ACTIONS(417), - [anon_sym_COLON] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym__quoted_chars] = ACTIONS(417), - [sym_single_quoted_argument] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_leading_word] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), - }, - [432] = { [sym__heredoc_middle] = ACTIONS(463), [sym__heredoc_end] = ACTIONS(463), [sym_file_descriptor] = ACTIONS(463), - [anon_sym_in] = ACTIONS(419), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_RBRACK_RBRACK] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [sym__quoted_chars] = ACTIONS(419), - [sym_single_quoted_argument] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [sym_leading_word] = ACTIONS(419), - [sym_word] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [anon_sym_in] = ACTIONS(421), + [anon_sym_RPAREN] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(421), + [anon_sym_RBRACK_RBRACK] = ACTIONS(421), + [anon_sym_COLON] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(421), + [sym__quoted_chars] = ACTIONS(421), + [sym_single_quoted_argument] = ACTIONS(421), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [sym_leading_word] = ACTIONS(421), + [sym_word] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), + }, + [432] = { + [sym__heredoc_middle] = ACTIONS(467), + [sym__heredoc_end] = ACTIONS(467), + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_in] = ACTIONS(423), + [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_RBRACK] = ACTIONS(423), + [anon_sym_RBRACK_RBRACK] = ACTIONS(423), + [anon_sym_COLON] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_PIPE_AMP] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(423), + [sym__quoted_chars] = ACTIONS(423), + [sym_single_quoted_argument] = ACTIONS(423), + [anon_sym_DOLLAR] = ACTIONS(423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(423), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_LT_LT_DASH] = ACTIONS(423), + [sym_leading_word] = ACTIONS(423), + [sym_word] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [433] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(486), - [anon_sym_DQUOTE] = ACTIONS(1476), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1482), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [434] = { - [sym_file_descriptor] = ACTIONS(1478), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_SEMI_SEMI] = ACTIONS(1481), - [anon_sym_COLON] = ACTIONS(1481), - [anon_sym_PIPE] = ACTIONS(1481), - [anon_sym_PIPE_AMP] = ACTIONS(1481), - [anon_sym_AMP_AMP] = ACTIONS(1481), - [anon_sym_PIPE_PIPE] = ACTIONS(1481), - [anon_sym_DQUOTE] = ACTIONS(1481), - [sym_single_quoted_argument] = ACTIONS(1481), - [anon_sym_LT] = ACTIONS(1481), - [anon_sym_GT] = ACTIONS(1481), - [anon_sym_GT_GT] = ACTIONS(1481), - [anon_sym_AMP_GT] = ACTIONS(1481), - [anon_sym_AMP_GT_GT] = ACTIONS(1481), - [anon_sym_LT_AMP] = ACTIONS(1481), - [anon_sym_GT_AMP] = ACTIONS(1481), - [anon_sym_LT_LT] = ACTIONS(1481), - [anon_sym_LT_LT_DASH] = ACTIONS(1481), - [sym_leading_word] = ACTIONS(1481), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1481), - [anon_sym_LF] = ACTIONS(1481), - [anon_sym_AMP] = ACTIONS(1481), + [sym_file_descriptor] = ACTIONS(1484), + [anon_sym_RPAREN] = ACTIONS(1487), + [anon_sym_SEMI_SEMI] = ACTIONS(1487), + [anon_sym_COLON] = ACTIONS(1487), + [anon_sym_PIPE] = ACTIONS(1487), + [anon_sym_PIPE_AMP] = ACTIONS(1487), + [anon_sym_AMP_AMP] = ACTIONS(1487), + [anon_sym_PIPE_PIPE] = ACTIONS(1487), + [anon_sym_DQUOTE] = ACTIONS(1487), + [sym_single_quoted_argument] = ACTIONS(1487), + [anon_sym_LT] = ACTIONS(1487), + [anon_sym_GT] = ACTIONS(1487), + [anon_sym_GT_GT] = ACTIONS(1487), + [anon_sym_AMP_GT] = ACTIONS(1487), + [anon_sym_AMP_GT_GT] = ACTIONS(1487), + [anon_sym_LT_AMP] = ACTIONS(1487), + [anon_sym_GT_AMP] = ACTIONS(1487), + [anon_sym_LT_LT] = ACTIONS(1487), + [anon_sym_LT_LT_DASH] = ACTIONS(1487), + [sym_leading_word] = ACTIONS(1487), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1487), + [anon_sym_LF] = ACTIONS(1487), + [anon_sym_AMP] = ACTIONS(1487), }, [435] = { - [anon_sym_DOLLAR] = ACTIONS(1484), - [sym_word] = ACTIONS(1486), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(1490), + [sym_word] = ACTIONS(1492), + [sym_comment] = ACTIONS(73), }, [436] = { - [sym_leading_word] = ACTIONS(1488), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(1494), + [sym_comment] = ACTIONS(73), }, [437] = { [sym_command] = STATE(490), @@ -15270,268 +15288,268 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [438] = { - [sym_file_descriptor] = ACTIONS(1490), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_SEMI_SEMI] = ACTIONS(1493), - [anon_sym_COLON] = ACTIONS(1493), - [anon_sym_PIPE] = ACTIONS(1493), - [anon_sym_PIPE_AMP] = ACTIONS(1493), - [anon_sym_AMP_AMP] = ACTIONS(1493), - [anon_sym_PIPE_PIPE] = ACTIONS(1493), - [anon_sym_DQUOTE] = ACTIONS(1493), - [sym_single_quoted_argument] = ACTIONS(1493), - [anon_sym_LT] = ACTIONS(1493), - [anon_sym_GT] = ACTIONS(1493), - [anon_sym_GT_GT] = ACTIONS(1493), - [anon_sym_AMP_GT] = ACTIONS(1493), - [anon_sym_AMP_GT_GT] = ACTIONS(1493), - [anon_sym_LT_AMP] = ACTIONS(1493), - [anon_sym_GT_AMP] = ACTIONS(1493), - [anon_sym_LT_LT] = ACTIONS(1493), - [anon_sym_LT_LT_DASH] = ACTIONS(1493), - [sym_leading_word] = ACTIONS(1493), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1493), - [anon_sym_LF] = ACTIONS(1493), - [anon_sym_AMP] = ACTIONS(1493), + [sym_file_descriptor] = ACTIONS(1496), + [anon_sym_RPAREN] = ACTIONS(1499), + [anon_sym_SEMI_SEMI] = ACTIONS(1499), + [anon_sym_COLON] = ACTIONS(1499), + [anon_sym_PIPE] = ACTIONS(1499), + [anon_sym_PIPE_AMP] = ACTIONS(1499), + [anon_sym_AMP_AMP] = ACTIONS(1499), + [anon_sym_PIPE_PIPE] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym_single_quoted_argument] = ACTIONS(1499), + [anon_sym_LT] = ACTIONS(1499), + [anon_sym_GT] = ACTIONS(1499), + [anon_sym_GT_GT] = ACTIONS(1499), + [anon_sym_AMP_GT] = ACTIONS(1499), + [anon_sym_AMP_GT_GT] = ACTIONS(1499), + [anon_sym_LT_AMP] = ACTIONS(1499), + [anon_sym_GT_AMP] = ACTIONS(1499), + [anon_sym_LT_LT] = ACTIONS(1499), + [anon_sym_LT_LT_DASH] = ACTIONS(1499), + [sym_leading_word] = ACTIONS(1499), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1499), + [anon_sym_LF] = ACTIONS(1499), + [anon_sym_AMP] = ACTIONS(1499), }, [439] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1496), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1496), - [anon_sym_LF] = ACTIONS(1496), - [anon_sym_AMP] = ACTIONS(1496), + [anon_sym_SEMI_SEMI] = ACTIONS(1502), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1502), + [anon_sym_LF] = ACTIONS(1502), + [anon_sym_AMP] = ACTIONS(1502), }, [440] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1498), - [anon_sym_PIPE] = ACTIONS(1498), - [anon_sym_PIPE_AMP] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_PIPE_PIPE] = ACTIONS(1498), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1498), - [anon_sym_LF] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1498), + [anon_sym_SEMI_SEMI] = ACTIONS(1504), + [anon_sym_PIPE] = ACTIONS(1504), + [anon_sym_PIPE_AMP] = ACTIONS(1504), + [anon_sym_AMP_AMP] = ACTIONS(1504), + [anon_sym_PIPE_PIPE] = ACTIONS(1504), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1504), + [anon_sym_LF] = ACTIONS(1504), + [anon_sym_AMP] = ACTIONS(1504), }, [441] = { - [sym_file_descriptor] = ACTIONS(713), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_SEMI_SEMI] = ACTIONS(715), - [anon_sym_PIPE] = ACTIONS(715), - [anon_sym_PIPE_AMP] = ACTIONS(715), - [anon_sym_AMP_AMP] = ACTIONS(715), - [anon_sym_PIPE_PIPE] = ACTIONS(715), - [anon_sym_LT] = ACTIONS(715), - [anon_sym_GT] = ACTIONS(715), - [anon_sym_GT_GT] = ACTIONS(715), - [anon_sym_AMP_GT] = ACTIONS(715), - [anon_sym_AMP_GT_GT] = ACTIONS(715), - [anon_sym_LT_AMP] = ACTIONS(715), - [anon_sym_GT_AMP] = ACTIONS(715), - [anon_sym_LT_LT] = ACTIONS(715), - [anon_sym_LT_LT_DASH] = ACTIONS(715), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(715), - [anon_sym_LF] = ACTIONS(715), - [anon_sym_AMP] = ACTIONS(715), + [sym_file_descriptor] = ACTIONS(719), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_SEMI_SEMI] = ACTIONS(721), + [anon_sym_PIPE] = ACTIONS(721), + [anon_sym_PIPE_AMP] = ACTIONS(721), + [anon_sym_AMP_AMP] = ACTIONS(721), + [anon_sym_PIPE_PIPE] = ACTIONS(721), + [anon_sym_LT] = ACTIONS(721), + [anon_sym_GT] = ACTIONS(721), + [anon_sym_GT_GT] = ACTIONS(721), + [anon_sym_AMP_GT] = ACTIONS(721), + [anon_sym_AMP_GT_GT] = ACTIONS(721), + [anon_sym_LT_AMP] = ACTIONS(721), + [anon_sym_GT_AMP] = ACTIONS(721), + [anon_sym_LT_LT] = ACTIONS(721), + [anon_sym_LT_LT_DASH] = ACTIONS(721), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(721), + [anon_sym_LF] = ACTIONS(721), + [anon_sym_AMP] = ACTIONS(721), }, [442] = { [sym_quoted_argument] = STATE(492), [sym_expansion] = STATE(492), [sym_operator_expansion] = STATE(492), [sym_command_substitution] = STATE(492), - [anon_sym_DQUOTE] = ACTIONS(1132), - [sym_single_quoted_argument] = ACTIONS(1503), - [anon_sym_DOLLAR] = ACTIONS(1136), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1138), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1140), - [sym_word] = ACTIONS(1505), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(1138), + [sym_single_quoted_argument] = ACTIONS(1509), + [anon_sym_DOLLAR] = ACTIONS(1142), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1144), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1146), + [sym_word] = ACTIONS(1511), + [sym_comment] = ACTIONS(73), }, [443] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1507), - [anon_sym_PIPE] = ACTIONS(1507), - [anon_sym_PIPE_AMP] = ACTIONS(1507), - [anon_sym_AMP_AMP] = ACTIONS(1507), - [anon_sym_PIPE_PIPE] = ACTIONS(1507), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1507), - [anon_sym_LF] = ACTIONS(1507), - [anon_sym_AMP] = ACTIONS(1507), + [anon_sym_SEMI_SEMI] = ACTIONS(1513), + [anon_sym_PIPE] = ACTIONS(1513), + [anon_sym_PIPE_AMP] = ACTIONS(1513), + [anon_sym_AMP_AMP] = ACTIONS(1513), + [anon_sym_PIPE_PIPE] = ACTIONS(1513), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1513), + [anon_sym_LF] = ACTIONS(1513), + [anon_sym_AMP] = ACTIONS(1513), }, [444] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_in] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_RBRACK_RBRACK] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym__quoted_chars] = ACTIONS(663), - [sym_single_quoted_argument] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AMP_GT] = ACTIONS(663), - [anon_sym_AMP_GT_GT] = ACTIONS(663), - [anon_sym_LT_AMP] = ACTIONS(663), - [anon_sym_GT_AMP] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [sym_leading_word] = ACTIONS(663), - [sym_word] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_in] = ACTIONS(669), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_RBRACK_RBRACK] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym__quoted_chars] = ACTIONS(669), + [sym_single_quoted_argument] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [sym_leading_word] = ACTIONS(669), + [sym_word] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [445] = { - [sym__heredoc_middle] = ACTIONS(917), - [sym__heredoc_end] = ACTIONS(917), - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_in] = ACTIONS(889), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_RBRACK] = ACTIONS(889), - [anon_sym_RBRACK_RBRACK] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym__quoted_chars] = ACTIONS(889), - [sym_single_quoted_argument] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(889), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(889), - [sym_leading_word] = ACTIONS(889), - [sym_word] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [sym__heredoc_middle] = ACTIONS(923), + [sym__heredoc_end] = ACTIONS(923), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_in] = ACTIONS(895), + [anon_sym_RPAREN] = ACTIONS(895), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_RBRACK] = ACTIONS(895), + [anon_sym_RBRACK_RBRACK] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym__quoted_chars] = ACTIONS(895), + [sym_single_quoted_argument] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_AMP_GT] = ACTIONS(895), + [anon_sym_AMP_GT_GT] = ACTIONS(895), + [anon_sym_LT_AMP] = ACTIONS(895), + [anon_sym_GT_AMP] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_LT_LT_DASH] = ACTIONS(895), + [sym_leading_word] = ACTIONS(895), + [sym_word] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [446] = { - [anon_sym_esac] = ACTIONS(1511), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym_single_quoted_argument] = ACTIONS(1511), - [anon_sym_DOLLAR] = ACTIONS(1511), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1514), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1514), - [sym_word] = ACTIONS(1517), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(1517), + [anon_sym_DQUOTE] = ACTIONS(1520), + [sym_single_quoted_argument] = ACTIONS(1517), + [anon_sym_DOLLAR] = ACTIONS(1517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1520), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1520), + [sym_word] = ACTIONS(1523), + [sym_comment] = ACTIONS(73), }, [447] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_PIPE_AMP] = ACTIONS(1520), - [anon_sym_AMP_AMP] = ACTIONS(1520), - [anon_sym_PIPE_PIPE] = ACTIONS(1520), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1520), - [anon_sym_LF] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1520), + [anon_sym_SEMI_SEMI] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1526), + [anon_sym_PIPE_AMP] = ACTIONS(1526), + [anon_sym_AMP_AMP] = ACTIONS(1526), + [anon_sym_PIPE_PIPE] = ACTIONS(1526), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1526), + [anon_sym_LF] = ACTIONS(1526), + [anon_sym_AMP] = ACTIONS(1526), }, [448] = { - [anon_sym_fi] = ACTIONS(1523), - [sym_comment] = ACTIONS(71), + [anon_sym_fi] = ACTIONS(1529), + [sym_comment] = ACTIONS(73), }, [449] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1525), - [anon_sym_PIPE] = ACTIONS(1525), - [anon_sym_PIPE_AMP] = ACTIONS(1525), - [anon_sym_AMP_AMP] = ACTIONS(1525), - [anon_sym_PIPE_PIPE] = ACTIONS(1525), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_LF] = ACTIONS(1525), - [anon_sym_AMP] = ACTIONS(1525), + [anon_sym_SEMI_SEMI] = ACTIONS(1531), + [anon_sym_PIPE] = ACTIONS(1531), + [anon_sym_PIPE_AMP] = ACTIONS(1531), + [anon_sym_AMP_AMP] = ACTIONS(1531), + [anon_sym_PIPE_PIPE] = ACTIONS(1531), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1531), + [anon_sym_LF] = ACTIONS(1531), + [anon_sym_AMP] = ACTIONS(1531), }, [450] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(496), - [anon_sym_DQUOTE] = ACTIONS(1530), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1536), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [451] = { - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_SEMI_SEMI] = ACTIONS(481), - [anon_sym_RBRACK] = ACTIONS(481), - [anon_sym_RBRACK_RBRACK] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_PIPE_AMP] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [sym_single_quoted_argument] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(481), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_AMP_GT] = ACTIONS(481), - [anon_sym_AMP_GT_GT] = ACTIONS(481), - [anon_sym_LT_AMP] = ACTIONS(481), - [anon_sym_GT_AMP] = ACTIONS(481), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_LT_LT_DASH] = ACTIONS(481), - [sym_word] = ACTIONS(481), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LF] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_SEMI_SEMI] = ACTIONS(485), + [anon_sym_RBRACK] = ACTIONS(485), + [anon_sym_RBRACK_RBRACK] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(485), + [anon_sym_PIPE_AMP] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_single_quoted_argument] = ACTIONS(485), + [anon_sym_DOLLAR] = ACTIONS(485), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(485), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(485), + [anon_sym_GT] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_AMP_GT] = ACTIONS(485), + [anon_sym_AMP_GT_GT] = ACTIONS(485), + [anon_sym_LT_AMP] = ACTIONS(485), + [anon_sym_GT_AMP] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_LT_LT_DASH] = ACTIONS(485), + [sym_word] = ACTIONS(485), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LF] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), }, [452] = { - [anon_sym_DOLLAR] = ACTIONS(1532), - [sym_word] = ACTIONS(1534), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(1538), + [sym_word] = ACTIONS(1540), + [sym_comment] = ACTIONS(73), }, [453] = { - [sym_leading_word] = ACTIONS(1536), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(1542), + [sym_comment] = ACTIONS(73), }, [454] = { [sym_command] = STATE(500), @@ -15539,279 +15557,279 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [455] = { - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(487), - [anon_sym_SEMI_SEMI] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(487), - [anon_sym_RBRACK_RBRACK] = ACTIONS(487), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_PIPE_AMP] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(487), - [anon_sym_PIPE_PIPE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(487), - [sym_single_quoted_argument] = ACTIONS(487), - [anon_sym_DOLLAR] = ACTIONS(487), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(487), - [anon_sym_LT_LT_DASH] = ACTIONS(487), - [sym_word] = ACTIONS(487), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(487), - [anon_sym_LF] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(487), + [sym_file_descriptor] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(491), + [anon_sym_SEMI_SEMI] = ACTIONS(491), + [anon_sym_RBRACK] = ACTIONS(491), + [anon_sym_RBRACK_RBRACK] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(491), + [sym_single_quoted_argument] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(491), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_GT_GT] = ACTIONS(491), + [anon_sym_AMP_GT] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(491), + [anon_sym_LT_AMP] = ACTIONS(491), + [anon_sym_GT_AMP] = ACTIONS(491), + [anon_sym_LT_LT] = ACTIONS(491), + [anon_sym_LT_LT_DASH] = ACTIONS(491), + [sym_word] = ACTIONS(491), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LF] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(491), }, [456] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_SEMI_SEMI] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_PIPE_AMP] = ACTIONS(1538), - [anon_sym_AMP_AMP] = ACTIONS(1538), - [anon_sym_PIPE_PIPE] = ACTIONS(1538), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1538), - [anon_sym_LF] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1538), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1544), + [anon_sym_SEMI_SEMI] = ACTIONS(1544), + [anon_sym_PIPE] = ACTIONS(1544), + [anon_sym_PIPE_AMP] = ACTIONS(1544), + [anon_sym_AMP_AMP] = ACTIONS(1544), + [anon_sym_PIPE_PIPE] = ACTIONS(1544), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1544), + [anon_sym_LF] = ACTIONS(1544), + [anon_sym_AMP] = ACTIONS(1544), }, [457] = { [sym_file_redirect] = STATE(422), [sym_heredoc_redirect] = STATE(422), [aux_sym_command_repeat2] = STATE(502), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(275), - [anon_sym_SEMI_SEMI] = ACTIONS(275), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1543), - [anon_sym_PIPE] = ACTIONS(275), - [anon_sym_PIPE_AMP] = ACTIONS(275), - [anon_sym_AMP_AMP] = ACTIONS(275), - [anon_sym_PIPE_PIPE] = ACTIONS(275), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(275), - [anon_sym_LF] = ACTIONS(275), - [anon_sym_AMP] = ACTIONS(275), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(277), + [anon_sym_SEMI_SEMI] = ACTIONS(277), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1549), + [anon_sym_PIPE] = ACTIONS(277), + [anon_sym_PIPE_AMP] = ACTIONS(277), + [anon_sym_AMP_AMP] = ACTIONS(277), + [anon_sym_PIPE_PIPE] = ACTIONS(277), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(277), + [anon_sym_LF] = ACTIONS(277), + [anon_sym_AMP] = ACTIONS(277), }, [458] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(504), - [anon_sym_DQUOTE] = ACTIONS(1545), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1551), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [459] = { [sym_file_redirect] = STATE(422), [sym_heredoc_redirect] = STATE(422), [aux_sym_command_repeat2] = STATE(506), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(377), - [anon_sym_SEMI_SEMI] = ACTIONS(377), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1547), - [anon_sym_PIPE] = ACTIONS(377), - [anon_sym_PIPE_AMP] = ACTIONS(377), - [anon_sym_AMP_AMP] = ACTIONS(377), - [anon_sym_PIPE_PIPE] = ACTIONS(377), - [anon_sym_EQ] = ACTIONS(381), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(377), - [anon_sym_LF] = ACTIONS(377), - [anon_sym_AMP] = ACTIONS(377), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(381), + [anon_sym_SEMI_SEMI] = ACTIONS(381), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(1553), + [anon_sym_PIPE] = ACTIONS(381), + [anon_sym_PIPE_AMP] = ACTIONS(381), + [anon_sym_AMP_AMP] = ACTIONS(381), + [anon_sym_PIPE_PIPE] = ACTIONS(381), + [anon_sym_EQ] = ACTIONS(385), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_LF] = ACTIONS(381), + [anon_sym_AMP] = ACTIONS(381), }, [460] = { - [sym_file_descriptor] = ACTIONS(531), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_SEMI_SEMI] = ACTIONS(533), - [anon_sym_PIPE] = ACTIONS(533), - [anon_sym_PIPE_AMP] = ACTIONS(533), - [anon_sym_AMP_AMP] = ACTIONS(533), - [anon_sym_PIPE_PIPE] = ACTIONS(533), - [anon_sym_LT] = ACTIONS(533), - [anon_sym_GT] = ACTIONS(533), - [anon_sym_GT_GT] = ACTIONS(533), - [anon_sym_AMP_GT] = ACTIONS(533), - [anon_sym_AMP_GT_GT] = ACTIONS(533), - [anon_sym_LT_AMP] = ACTIONS(533), - [anon_sym_GT_AMP] = ACTIONS(533), - [anon_sym_LT_LT] = ACTIONS(533), - [anon_sym_LT_LT_DASH] = ACTIONS(533), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(533), - [anon_sym_LF] = ACTIONS(533), - [anon_sym_AMP] = ACTIONS(533), + [sym_file_descriptor] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_SEMI_SEMI] = ACTIONS(537), + [anon_sym_PIPE] = ACTIONS(537), + [anon_sym_PIPE_AMP] = ACTIONS(537), + [anon_sym_AMP_AMP] = ACTIONS(537), + [anon_sym_PIPE_PIPE] = ACTIONS(537), + [anon_sym_LT] = ACTIONS(537), + [anon_sym_GT] = ACTIONS(537), + [anon_sym_GT_GT] = ACTIONS(537), + [anon_sym_AMP_GT] = ACTIONS(537), + [anon_sym_AMP_GT_GT] = ACTIONS(537), + [anon_sym_LT_AMP] = ACTIONS(537), + [anon_sym_GT_AMP] = ACTIONS(537), + [anon_sym_LT_LT] = ACTIONS(537), + [anon_sym_LT_LT_DASH] = ACTIONS(537), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(537), + [anon_sym_LF] = ACTIONS(537), + [anon_sym_AMP] = ACTIONS(537), }, [461] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_in] = ACTIONS(545), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_RBRACK_RBRACK] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(545), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_single_quoted_argument] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_leading_word] = ACTIONS(545), - [sym_word] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_in] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_RBRACK_RBRACK] = ACTIONS(549), + [anon_sym_COLON] = ACTIONS(549), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_single_quoted_argument] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_leading_word] = ACTIONS(549), + [sym_word] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [462] = { - [sym_file_descriptor] = ACTIONS(845), - [anon_sym_RPAREN] = ACTIONS(847), - [anon_sym_SEMI_SEMI] = ACTIONS(847), - [anon_sym_PIPE] = ACTIONS(847), - [anon_sym_PIPE_AMP] = ACTIONS(847), - [anon_sym_AMP_AMP] = ACTIONS(847), - [anon_sym_PIPE_PIPE] = ACTIONS(847), - [anon_sym_LT] = ACTIONS(847), - [anon_sym_GT] = ACTIONS(847), - [anon_sym_GT_GT] = ACTIONS(847), - [anon_sym_AMP_GT] = ACTIONS(847), - [anon_sym_AMP_GT_GT] = ACTIONS(847), - [anon_sym_LT_AMP] = ACTIONS(847), - [anon_sym_GT_AMP] = ACTIONS(847), - [anon_sym_LT_LT] = ACTIONS(847), - [anon_sym_LT_LT_DASH] = ACTIONS(847), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(847), - [anon_sym_LF] = ACTIONS(847), - [anon_sym_AMP] = ACTIONS(847), + [sym_file_descriptor] = ACTIONS(851), + [anon_sym_RPAREN] = ACTIONS(853), + [anon_sym_SEMI_SEMI] = ACTIONS(853), + [anon_sym_PIPE] = ACTIONS(853), + [anon_sym_PIPE_AMP] = ACTIONS(853), + [anon_sym_AMP_AMP] = ACTIONS(853), + [anon_sym_PIPE_PIPE] = ACTIONS(853), + [anon_sym_LT] = ACTIONS(853), + [anon_sym_GT] = ACTIONS(853), + [anon_sym_GT_GT] = ACTIONS(853), + [anon_sym_AMP_GT] = ACTIONS(853), + [anon_sym_AMP_GT_GT] = ACTIONS(853), + [anon_sym_LT_AMP] = ACTIONS(853), + [anon_sym_GT_AMP] = ACTIONS(853), + [anon_sym_LT_LT] = ACTIONS(853), + [anon_sym_LT_LT_DASH] = ACTIONS(853), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(853), + [anon_sym_LF] = ACTIONS(853), + [anon_sym_AMP] = ACTIONS(853), }, [463] = { [sym_quoted_argument] = STATE(507), [sym_expansion] = STATE(507), [sym_operator_expansion] = STATE(507), [sym_command_substitution] = STATE(507), - [anon_sym_DQUOTE] = ACTIONS(1452), - [sym_single_quoted_argument] = ACTIONS(1549), - [anon_sym_DOLLAR] = ACTIONS(1456), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1458), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1460), - [sym_word] = ACTIONS(1551), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(1458), + [sym_single_quoted_argument] = ACTIONS(1555), + [anon_sym_DOLLAR] = ACTIONS(1462), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1464), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1466), + [sym_word] = ACTIONS(1557), + [sym_comment] = ACTIONS(73), }, [464] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(510), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1559), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [465] = { - [sym_file_descriptor] = ACTIONS(249), - [anon_sym_RPAREN] = ACTIONS(251), - [anon_sym_SEMI_SEMI] = ACTIONS(251), - [anon_sym_PIPE] = ACTIONS(251), - [anon_sym_PIPE_AMP] = ACTIONS(251), - [anon_sym_AMP_AMP] = ACTIONS(251), - [anon_sym_PIPE_PIPE] = ACTIONS(251), - [anon_sym_DQUOTE] = ACTIONS(251), - [sym_single_quoted_argument] = ACTIONS(251), - [anon_sym_DOLLAR] = ACTIONS(251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(251), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(251), - [anon_sym_LT] = ACTIONS(251), - [anon_sym_GT] = ACTIONS(251), - [anon_sym_GT_GT] = ACTIONS(251), - [anon_sym_AMP_GT] = ACTIONS(251), - [anon_sym_AMP_GT_GT] = ACTIONS(251), - [anon_sym_LT_AMP] = ACTIONS(251), - [anon_sym_GT_AMP] = ACTIONS(251), - [anon_sym_LT_LT] = ACTIONS(251), - [anon_sym_LT_LT_DASH] = ACTIONS(251), - [sym_word] = ACTIONS(251), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(251), - [anon_sym_LF] = ACTIONS(251), - [anon_sym_AMP] = ACTIONS(251), + [sym_file_descriptor] = ACTIONS(251), + [anon_sym_RPAREN] = ACTIONS(253), + [anon_sym_SEMI_SEMI] = ACTIONS(253), + [anon_sym_PIPE] = ACTIONS(253), + [anon_sym_PIPE_AMP] = ACTIONS(253), + [anon_sym_AMP_AMP] = ACTIONS(253), + [anon_sym_PIPE_PIPE] = ACTIONS(253), + [anon_sym_DQUOTE] = ACTIONS(253), + [sym_single_quoted_argument] = ACTIONS(253), + [anon_sym_DOLLAR] = ACTIONS(253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(253), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(253), + [anon_sym_LT] = ACTIONS(253), + [anon_sym_GT] = ACTIONS(253), + [anon_sym_GT_GT] = ACTIONS(253), + [anon_sym_AMP_GT] = ACTIONS(253), + [anon_sym_AMP_GT_GT] = ACTIONS(253), + [anon_sym_LT_AMP] = ACTIONS(253), + [anon_sym_GT_AMP] = ACTIONS(253), + [anon_sym_LT_LT] = ACTIONS(253), + [anon_sym_LT_LT_DASH] = ACTIONS(253), + [sym_word] = ACTIONS(253), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(253), + [anon_sym_LF] = ACTIONS(253), + [anon_sym_AMP] = ACTIONS(253), }, [466] = { - [anon_sym_DOLLAR] = ACTIONS(1555), - [sym_word] = ACTIONS(1557), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(1561), + [sym_word] = ACTIONS(1563), + [sym_comment] = ACTIONS(73), }, [467] = { - [sym_leading_word] = ACTIONS(1559), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(1565), + [sym_comment] = ACTIONS(73), }, [468] = { [sym_command] = STATE(514), @@ -15819,47 +15837,47 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [469] = { - [sym_file_descriptor] = ACTIONS(261), - [anon_sym_RPAREN] = ACTIONS(263), - [anon_sym_SEMI_SEMI] = ACTIONS(263), - [anon_sym_PIPE] = ACTIONS(263), - [anon_sym_PIPE_AMP] = ACTIONS(263), - [anon_sym_AMP_AMP] = ACTIONS(263), - [anon_sym_PIPE_PIPE] = ACTIONS(263), - [anon_sym_DQUOTE] = ACTIONS(263), - [sym_single_quoted_argument] = ACTIONS(263), - [anon_sym_DOLLAR] = ACTIONS(263), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(263), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(263), - [anon_sym_LT] = ACTIONS(263), - [anon_sym_GT] = ACTIONS(263), - [anon_sym_GT_GT] = ACTIONS(263), - [anon_sym_AMP_GT] = ACTIONS(263), - [anon_sym_AMP_GT_GT] = ACTIONS(263), - [anon_sym_LT_AMP] = ACTIONS(263), - [anon_sym_GT_AMP] = ACTIONS(263), - [anon_sym_LT_LT] = ACTIONS(263), - [anon_sym_LT_LT_DASH] = ACTIONS(263), - [sym_word] = ACTIONS(263), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(263), - [anon_sym_LF] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(263), + [sym_file_descriptor] = ACTIONS(263), + [anon_sym_RPAREN] = ACTIONS(265), + [anon_sym_SEMI_SEMI] = ACTIONS(265), + [anon_sym_PIPE] = ACTIONS(265), + [anon_sym_PIPE_AMP] = ACTIONS(265), + [anon_sym_AMP_AMP] = ACTIONS(265), + [anon_sym_PIPE_PIPE] = ACTIONS(265), + [anon_sym_DQUOTE] = ACTIONS(265), + [sym_single_quoted_argument] = ACTIONS(265), + [anon_sym_DOLLAR] = ACTIONS(265), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(265), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(265), + [anon_sym_LT] = ACTIONS(265), + [anon_sym_GT] = ACTIONS(265), + [anon_sym_GT_GT] = ACTIONS(265), + [anon_sym_AMP_GT] = ACTIONS(265), + [anon_sym_AMP_GT_GT] = ACTIONS(265), + [anon_sym_LT_AMP] = ACTIONS(265), + [anon_sym_GT_AMP] = ACTIONS(265), + [anon_sym_LT_LT] = ACTIONS(265), + [anon_sym_LT_LT_DASH] = ACTIONS(265), + [sym_word] = ACTIONS(265), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(265), + [anon_sym_LF] = ACTIONS(265), + [anon_sym_AMP] = ACTIONS(265), }, [470] = { [sym_quoted_argument] = STATE(515), @@ -15869,99 +15887,99 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(422), [sym_heredoc_redirect] = STATE(422), [aux_sym_command_repeat2] = STATE(517), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_single_quoted_argument] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_word] = ACTIONS(1566), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_SEMI_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_AMP] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_single_quoted_argument] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_word] = ACTIONS(1572), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_LF] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1567), }, [471] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1561), - [anon_sym_SEMI_SEMI] = ACTIONS(1561), - [anon_sym_PIPE] = ACTIONS(1561), - [anon_sym_PIPE_AMP] = ACTIONS(1561), - [anon_sym_AMP_AMP] = ACTIONS(1561), - [anon_sym_PIPE_PIPE] = ACTIONS(1561), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1561), - [anon_sym_LF] = ACTIONS(1561), - [anon_sym_AMP] = ACTIONS(1561), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1567), + [anon_sym_SEMI_SEMI] = ACTIONS(1567), + [anon_sym_PIPE] = ACTIONS(1567), + [anon_sym_PIPE_AMP] = ACTIONS(1567), + [anon_sym_AMP_AMP] = ACTIONS(1567), + [anon_sym_PIPE_PIPE] = ACTIONS(1567), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1567), + [anon_sym_LF] = ACTIONS(1567), + [anon_sym_AMP] = ACTIONS(1567), }, [472] = { [sym_expansion] = STATE(50), [sym_operator_expansion] = STATE(50), [sym_command_substitution] = STATE(50), [aux_sym_quoted_argument_repeat1] = STATE(519), - [anon_sym_DQUOTE] = ACTIONS(1568), - [sym__quoted_chars] = ACTIONS(149), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1574), + [sym__quoted_chars] = ACTIONS(151), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [473] = { - [sym_file_descriptor] = ACTIONS(329), - [anon_sym_RPAREN] = ACTIONS(333), - [anon_sym_SEMI_SEMI] = ACTIONS(333), - [anon_sym_PIPE] = ACTIONS(333), - [anon_sym_PIPE_AMP] = ACTIONS(333), - [anon_sym_AMP_AMP] = ACTIONS(333), - [anon_sym_PIPE_PIPE] = ACTIONS(333), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(333), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(333), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_LT_LT] = ACTIONS(333), - [anon_sym_LT_LT_DASH] = ACTIONS(333), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(333), - [anon_sym_LF] = ACTIONS(333), - [anon_sym_AMP] = ACTIONS(333), + [sym_file_descriptor] = ACTIONS(331), + [anon_sym_RPAREN] = ACTIONS(335), + [anon_sym_SEMI_SEMI] = ACTIONS(335), + [anon_sym_PIPE] = ACTIONS(335), + [anon_sym_PIPE_AMP] = ACTIONS(335), + [anon_sym_AMP_AMP] = ACTIONS(335), + [anon_sym_PIPE_PIPE] = ACTIONS(335), + [anon_sym_LT] = ACTIONS(335), + [anon_sym_GT] = ACTIONS(335), + [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_AMP_GT] = ACTIONS(335), + [anon_sym_AMP_GT_GT] = ACTIONS(335), + [anon_sym_LT_AMP] = ACTIONS(335), + [anon_sym_GT_AMP] = ACTIONS(335), + [anon_sym_LT_LT] = ACTIONS(335), + [anon_sym_LT_LT_DASH] = ACTIONS(335), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(335), + [anon_sym_LF] = ACTIONS(335), + [anon_sym_AMP] = ACTIONS(335), }, [474] = { - [anon_sym_DOLLAR] = ACTIONS(1570), - [sym_word] = ACTIONS(1572), - [sym_comment] = ACTIONS(71), + [anon_sym_DOLLAR] = ACTIONS(1576), + [sym_word] = ACTIONS(1578), + [sym_comment] = ACTIONS(73), }, [475] = { - [sym_leading_word] = ACTIONS(1574), - [sym_comment] = ACTIONS(71), + [sym_leading_word] = ACTIONS(1580), + [sym_comment] = ACTIONS(73), }, [476] = { [sym_command] = STATE(523), @@ -15969,274 +15987,274 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_quoted_argument] = STATE(85), [sym_file_redirect] = STATE(18), [aux_sym_command_repeat1] = STATE(89), - [sym_file_descriptor] = ACTIONS(75), - [anon_sym_COLON] = ACTIONS(227), - [anon_sym_DQUOTE] = ACTIONS(229), - [sym_single_quoted_argument] = ACTIONS(231), - [anon_sym_LT] = ACTIONS(99), - [anon_sym_GT] = ACTIONS(99), - [anon_sym_GT_GT] = ACTIONS(99), - [anon_sym_AMP_GT] = ACTIONS(99), - [anon_sym_AMP_GT_GT] = ACTIONS(99), - [anon_sym_LT_AMP] = ACTIONS(99), - [anon_sym_GT_AMP] = ACTIONS(99), - [sym_leading_word] = ACTIONS(233), - [sym_comment] = ACTIONS(71), + [sym_file_descriptor] = ACTIONS(77), + [anon_sym_COLON] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(231), + [sym_single_quoted_argument] = ACTIONS(233), + [anon_sym_LT] = ACTIONS(101), + [anon_sym_GT] = ACTIONS(101), + [anon_sym_GT_GT] = ACTIONS(101), + [anon_sym_AMP_GT] = ACTIONS(101), + [anon_sym_AMP_GT_GT] = ACTIONS(101), + [anon_sym_LT_AMP] = ACTIONS(101), + [anon_sym_GT_AMP] = ACTIONS(101), + [sym_leading_word] = ACTIONS(235), + [sym_comment] = ACTIONS(73), }, [477] = { - [sym_file_descriptor] = ACTIONS(341), - [anon_sym_RPAREN] = ACTIONS(345), - [anon_sym_SEMI_SEMI] = ACTIONS(345), - [anon_sym_PIPE] = ACTIONS(345), - [anon_sym_PIPE_AMP] = ACTIONS(345), - [anon_sym_AMP_AMP] = ACTIONS(345), - [anon_sym_PIPE_PIPE] = ACTIONS(345), - [anon_sym_LT] = ACTIONS(345), - [anon_sym_GT] = ACTIONS(345), - [anon_sym_GT_GT] = ACTIONS(345), - [anon_sym_AMP_GT] = ACTIONS(345), - [anon_sym_AMP_GT_GT] = ACTIONS(345), - [anon_sym_LT_AMP] = ACTIONS(345), - [anon_sym_GT_AMP] = ACTIONS(345), - [anon_sym_LT_LT] = ACTIONS(345), - [anon_sym_LT_LT_DASH] = ACTIONS(345), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(345), - [anon_sym_LF] = ACTIONS(345), - [anon_sym_AMP] = ACTIONS(345), + [sym_file_descriptor] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(347), + [anon_sym_SEMI_SEMI] = ACTIONS(347), + [anon_sym_PIPE] = ACTIONS(347), + [anon_sym_PIPE_AMP] = ACTIONS(347), + [anon_sym_AMP_AMP] = ACTIONS(347), + [anon_sym_PIPE_PIPE] = ACTIONS(347), + [anon_sym_LT] = ACTIONS(347), + [anon_sym_GT] = ACTIONS(347), + [anon_sym_GT_GT] = ACTIONS(347), + [anon_sym_AMP_GT] = ACTIONS(347), + [anon_sym_AMP_GT_GT] = ACTIONS(347), + [anon_sym_LT_AMP] = ACTIONS(347), + [anon_sym_GT_AMP] = ACTIONS(347), + [anon_sym_LT_LT] = ACTIONS(347), + [anon_sym_LT_LT_DASH] = ACTIONS(347), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(347), + [anon_sym_LF] = ACTIONS(347), + [anon_sym_AMP] = ACTIONS(347), }, [478] = { - [sym__heredoc_middle] = ACTIONS(921), - [sym__heredoc_end] = ACTIONS(921), - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_in] = ACTIONS(891), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(891), - [anon_sym_RBRACK_RBRACK] = ACTIONS(891), - [anon_sym_COLON] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_PIPE_AMP] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym__quoted_chars] = ACTIONS(891), - [sym_single_quoted_argument] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_AMP_GT] = ACTIONS(891), - [anon_sym_AMP_GT_GT] = ACTIONS(891), - [anon_sym_LT_AMP] = ACTIONS(891), - [anon_sym_GT_AMP] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [sym_leading_word] = ACTIONS(891), - [sym_word] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [sym__heredoc_middle] = ACTIONS(927), + [sym__heredoc_end] = ACTIONS(927), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_in] = ACTIONS(897), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_RBRACK_RBRACK] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym__quoted_chars] = ACTIONS(897), + [sym_single_quoted_argument] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(897), + [anon_sym_LT_AMP] = ACTIONS(897), + [anon_sym_GT_AMP] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_LT_LT_DASH] = ACTIONS(897), + [sym_leading_word] = ACTIONS(897), + [sym_word] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, [479] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [anon_sym_RBRACE] = ACTIONS(311), - [anon_sym_COLON] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_single_quoted_argument] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [sym_leading_word] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_RBRACE] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(313), + [sym_single_quoted_argument] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [sym_leading_word] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [480] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(1576), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1582), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [481] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_COLON] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym_single_quoted_argument] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [sym_leading_word] = ACTIONS(417), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_RBRACE] = ACTIONS(421), + [anon_sym_COLON] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(421), + [sym_single_quoted_argument] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [sym_leading_word] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), }, [482] = { - [sym_file_descriptor] = ACTIONS(463), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [sym_single_quoted_argument] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [sym_leading_word] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [anon_sym_RBRACE] = ACTIONS(423), + [anon_sym_COLON] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_PIPE_AMP] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(423), + [sym_single_quoted_argument] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(423), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [sym_leading_word] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [483] = { - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_COLON] = ACTIONS(1580), - [anon_sym_EQ] = ACTIONS(1582), - [anon_sym_COLON_QMARK] = ACTIONS(1582), - [anon_sym_COLON_DASH] = ACTIONS(1582), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1584), + [anon_sym_COLON] = ACTIONS(1586), + [anon_sym_EQ] = ACTIONS(1588), + [anon_sym_COLON_QMARK] = ACTIONS(1588), + [anon_sym_COLON_DASH] = ACTIONS(1588), + [sym_comment] = ACTIONS(73), }, [484] = { - [anon_sym_RPAREN] = ACTIONS(1584), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(1590), + [sym_comment] = ACTIONS(73), }, [485] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [anon_sym_COLON] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_single_quoted_argument] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_leading_word] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_COLON] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(313), + [sym_single_quoted_argument] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_leading_word] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [486] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(1586), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1592), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [487] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_COLON] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym_single_quoted_argument] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_leading_word] = ACTIONS(417), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_COLON] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(421), + [sym_single_quoted_argument] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [sym_leading_word] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), }, [488] = { - [sym_file_descriptor] = ACTIONS(463), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_COLON] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [sym_single_quoted_argument] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [sym_leading_word] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [anon_sym_COLON] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_PIPE_AMP] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(423), + [sym_single_quoted_argument] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(423), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_LT_LT_DASH] = ACTIONS(423), + [sym_leading_word] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [489] = { - [anon_sym_RBRACE] = ACTIONS(1588), - [anon_sym_COLON] = ACTIONS(1590), - [anon_sym_EQ] = ACTIONS(1592), - [anon_sym_COLON_QMARK] = ACTIONS(1592), - [anon_sym_COLON_DASH] = ACTIONS(1592), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1594), + [anon_sym_COLON] = ACTIONS(1596), + [anon_sym_EQ] = ACTIONS(1598), + [anon_sym_COLON_QMARK] = ACTIONS(1598), + [anon_sym_COLON_DASH] = ACTIONS(1598), + [sym_comment] = ACTIONS(73), }, [490] = { - [anon_sym_RPAREN] = ACTIONS(1594), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(1600), + [sym_comment] = ACTIONS(73), }, [491] = { [sym_case_item] = STATE(238), @@ -16245,190 +16263,190 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), [aux_sym_case_statement_repeat1] = STATE(533), - [anon_sym_esac] = ACTIONS(1596), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(1602), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [492] = { - [sym_file_descriptor] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_SEMI_SEMI] = ACTIONS(393), - [anon_sym_COLON] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_PIPE_AMP] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_DQUOTE] = ACTIONS(393), - [sym_single_quoted_argument] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(393), - [anon_sym_LT_AMP] = ACTIONS(393), - [anon_sym_GT_AMP] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_LT_LT_DASH] = ACTIONS(393), - [sym_leading_word] = ACTIONS(393), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_LF] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(393), + [sym_file_descriptor] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(397), + [anon_sym_COLON] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_PIPE_AMP] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_DQUOTE] = ACTIONS(397), + [sym_single_quoted_argument] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_AMP_GT] = ACTIONS(397), + [anon_sym_AMP_GT_GT] = ACTIONS(397), + [anon_sym_LT_AMP] = ACTIONS(397), + [anon_sym_GT_AMP] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_LT_LT_DASH] = ACTIONS(397), + [sym_leading_word] = ACTIONS(397), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LF] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), }, [493] = { - [sym_file_descriptor] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_SEMI_SEMI] = ACTIONS(399), - [anon_sym_COLON] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_PIPE_AMP] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_DQUOTE] = ACTIONS(399), - [sym_single_quoted_argument] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_AMP_GT] = ACTIONS(399), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(399), - [anon_sym_GT_AMP] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_LT_LT_DASH] = ACTIONS(399), - [sym_leading_word] = ACTIONS(399), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LF] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(399), + [sym_file_descriptor] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_COLON] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_PIPE_AMP] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_DQUOTE] = ACTIONS(403), + [sym_single_quoted_argument] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_AMP_GT] = ACTIONS(403), + [anon_sym_AMP_GT_GT] = ACTIONS(403), + [anon_sym_LT_AMP] = ACTIONS(403), + [anon_sym_GT_AMP] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(403), + [sym_leading_word] = ACTIONS(403), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LF] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), }, [494] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1598), - [anon_sym_PIPE] = ACTIONS(1598), - [anon_sym_PIPE_AMP] = ACTIONS(1598), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_PIPE_PIPE] = ACTIONS(1598), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1598), - [anon_sym_LF] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1598), + [anon_sym_SEMI_SEMI] = ACTIONS(1604), + [anon_sym_PIPE] = ACTIONS(1604), + [anon_sym_PIPE_AMP] = ACTIONS(1604), + [anon_sym_AMP_AMP] = ACTIONS(1604), + [anon_sym_PIPE_PIPE] = ACTIONS(1604), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1604), + [anon_sym_LF] = ACTIONS(1604), + [anon_sym_AMP] = ACTIONS(1604), }, [495] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [anon_sym_RBRACK] = ACTIONS(311), - [anon_sym_RBRACK_RBRACK] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_single_quoted_argument] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_word] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_RBRACK] = ACTIONS(313), + [anon_sym_RBRACK_RBRACK] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(313), + [sym_single_quoted_argument] = ACTIONS(313), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_word] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [496] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(1601), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [497] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_RBRACK] = ACTIONS(417), - [anon_sym_RBRACK_RBRACK] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym_single_quoted_argument] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_RBRACK] = ACTIONS(421), + [anon_sym_RBRACK_RBRACK] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(421), + [sym_single_quoted_argument] = ACTIONS(421), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [sym_word] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), }, [498] = { - [sym_file_descriptor] = ACTIONS(463), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_RBRACK] = ACTIONS(419), - [anon_sym_RBRACK_RBRACK] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [sym_single_quoted_argument] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [sym_word] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [anon_sym_RBRACK] = ACTIONS(423), + [anon_sym_RBRACK_RBRACK] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_PIPE_AMP] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(423), + [sym_single_quoted_argument] = ACTIONS(423), + [anon_sym_DOLLAR] = ACTIONS(423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(423), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_LT_LT_DASH] = ACTIONS(423), + [sym_word] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [499] = { - [anon_sym_RBRACE] = ACTIONS(1603), - [anon_sym_COLON] = ACTIONS(1605), - [anon_sym_EQ] = ACTIONS(1607), - [anon_sym_COLON_QMARK] = ACTIONS(1607), - [anon_sym_COLON_DASH] = ACTIONS(1607), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1609), + [anon_sym_COLON] = ACTIONS(1611), + [anon_sym_EQ] = ACTIONS(1613), + [anon_sym_COLON_QMARK] = ACTIONS(1613), + [anon_sym_COLON_DASH] = ACTIONS(1613), + [sym_comment] = ACTIONS(73), }, [500] = { - [anon_sym_RPAREN] = ACTIONS(1609), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(1615), + [sym_comment] = ACTIONS(73), }, [501] = { [sym_quoted_argument] = STATE(465), @@ -16439,90 +16457,90 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(422), [aux_sym_bracket_command_repeat1] = STATE(538), [aux_sym_command_repeat2] = STATE(539), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_single_quoted_argument] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_word] = ACTIONS(1448), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_LF] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(501), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_single_quoted_argument] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_word] = ACTIONS(1454), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), }, [502] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_SEMI_SEMI] = ACTIONS(501), - [anon_sym_PIPE] = ACTIONS(501), - [anon_sym_PIPE_AMP] = ACTIONS(501), - [anon_sym_AMP_AMP] = ACTIONS(501), - [anon_sym_PIPE_PIPE] = ACTIONS(501), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(501), - [anon_sym_LF] = ACTIONS(501), - [anon_sym_AMP] = ACTIONS(501), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(505), + [anon_sym_SEMI_SEMI] = ACTIONS(505), + [anon_sym_PIPE] = ACTIONS(505), + [anon_sym_PIPE_AMP] = ACTIONS(505), + [anon_sym_AMP_AMP] = ACTIONS(505), + [anon_sym_PIPE_PIPE] = ACTIONS(505), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(505), + [anon_sym_LF] = ACTIONS(505), + [anon_sym_AMP] = ACTIONS(505), }, [503] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [504] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(1611), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1617), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [505] = { [sym_quoted_argument] = STATE(465), @@ -16533,563 +16551,563 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_heredoc_redirect] = STATE(422), [aux_sym_bracket_command_repeat1] = STATE(541), [aux_sym_command_repeat2] = STATE(542), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_SEMI_SEMI] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_PIPE_AMP] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_single_quoted_argument] = ACTIONS(1440), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_word] = ACTIONS(1448), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_single_quoted_argument] = ACTIONS(1446), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_word] = ACTIONS(1454), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), }, [506] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_SEMI_SEMI] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_PIPE_AMP] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(589), + [anon_sym_SEMI_SEMI] = ACTIONS(589), + [anon_sym_PIPE] = ACTIONS(589), + [anon_sym_PIPE_AMP] = ACTIONS(589), + [anon_sym_AMP_AMP] = ACTIONS(589), + [anon_sym_PIPE_PIPE] = ACTIONS(589), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(589), + [anon_sym_LF] = ACTIONS(589), + [anon_sym_AMP] = ACTIONS(589), }, [507] = { - [sym_file_descriptor] = ACTIONS(389), - [anon_sym_RPAREN] = ACTIONS(393), - [anon_sym_SEMI_SEMI] = ACTIONS(393), - [anon_sym_PIPE] = ACTIONS(393), - [anon_sym_PIPE_AMP] = ACTIONS(393), - [anon_sym_AMP_AMP] = ACTIONS(393), - [anon_sym_PIPE_PIPE] = ACTIONS(393), - [anon_sym_LT] = ACTIONS(393), - [anon_sym_GT] = ACTIONS(393), - [anon_sym_GT_GT] = ACTIONS(393), - [anon_sym_AMP_GT] = ACTIONS(393), - [anon_sym_AMP_GT_GT] = ACTIONS(393), - [anon_sym_LT_AMP] = ACTIONS(393), - [anon_sym_GT_AMP] = ACTIONS(393), - [anon_sym_LT_LT] = ACTIONS(393), - [anon_sym_LT_LT_DASH] = ACTIONS(393), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(393), - [anon_sym_LF] = ACTIONS(393), - [anon_sym_AMP] = ACTIONS(393), + [sym_file_descriptor] = ACTIONS(393), + [anon_sym_RPAREN] = ACTIONS(397), + [anon_sym_SEMI_SEMI] = ACTIONS(397), + [anon_sym_PIPE] = ACTIONS(397), + [anon_sym_PIPE_AMP] = ACTIONS(397), + [anon_sym_AMP_AMP] = ACTIONS(397), + [anon_sym_PIPE_PIPE] = ACTIONS(397), + [anon_sym_LT] = ACTIONS(397), + [anon_sym_GT] = ACTIONS(397), + [anon_sym_GT_GT] = ACTIONS(397), + [anon_sym_AMP_GT] = ACTIONS(397), + [anon_sym_AMP_GT_GT] = ACTIONS(397), + [anon_sym_LT_AMP] = ACTIONS(397), + [anon_sym_GT_AMP] = ACTIONS(397), + [anon_sym_LT_LT] = ACTIONS(397), + [anon_sym_LT_LT_DASH] = ACTIONS(397), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(397), + [anon_sym_LF] = ACTIONS(397), + [anon_sym_AMP] = ACTIONS(397), }, [508] = { - [sym_file_descriptor] = ACTIONS(395), - [anon_sym_RPAREN] = ACTIONS(399), - [anon_sym_SEMI_SEMI] = ACTIONS(399), - [anon_sym_PIPE] = ACTIONS(399), - [anon_sym_PIPE_AMP] = ACTIONS(399), - [anon_sym_AMP_AMP] = ACTIONS(399), - [anon_sym_PIPE_PIPE] = ACTIONS(399), - [anon_sym_LT] = ACTIONS(399), - [anon_sym_GT] = ACTIONS(399), - [anon_sym_GT_GT] = ACTIONS(399), - [anon_sym_AMP_GT] = ACTIONS(399), - [anon_sym_AMP_GT_GT] = ACTIONS(399), - [anon_sym_LT_AMP] = ACTIONS(399), - [anon_sym_GT_AMP] = ACTIONS(399), - [anon_sym_LT_LT] = ACTIONS(399), - [anon_sym_LT_LT_DASH] = ACTIONS(399), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(399), - [anon_sym_LF] = ACTIONS(399), - [anon_sym_AMP] = ACTIONS(399), + [sym_file_descriptor] = ACTIONS(399), + [anon_sym_RPAREN] = ACTIONS(403), + [anon_sym_SEMI_SEMI] = ACTIONS(403), + [anon_sym_PIPE] = ACTIONS(403), + [anon_sym_PIPE_AMP] = ACTIONS(403), + [anon_sym_AMP_AMP] = ACTIONS(403), + [anon_sym_PIPE_PIPE] = ACTIONS(403), + [anon_sym_LT] = ACTIONS(403), + [anon_sym_GT] = ACTIONS(403), + [anon_sym_GT_GT] = ACTIONS(403), + [anon_sym_AMP_GT] = ACTIONS(403), + [anon_sym_AMP_GT_GT] = ACTIONS(403), + [anon_sym_LT_AMP] = ACTIONS(403), + [anon_sym_GT_AMP] = ACTIONS(403), + [anon_sym_LT_LT] = ACTIONS(403), + [anon_sym_LT_LT_DASH] = ACTIONS(403), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(403), + [anon_sym_LF] = ACTIONS(403), + [anon_sym_AMP] = ACTIONS(403), }, [509] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_DQUOTE] = ACTIONS(311), - [sym_single_quoted_argument] = ACTIONS(311), - [anon_sym_DOLLAR] = ACTIONS(311), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(311), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_word] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(313), + [sym_single_quoted_argument] = ACTIONS(313), + [anon_sym_DOLLAR] = ACTIONS(313), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(313), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_word] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [510] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(1613), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1619), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [511] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_DQUOTE] = ACTIONS(417), - [sym_single_quoted_argument] = ACTIONS(417), - [anon_sym_DOLLAR] = ACTIONS(417), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_word] = ACTIONS(417), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_DQUOTE] = ACTIONS(421), + [sym_single_quoted_argument] = ACTIONS(421), + [anon_sym_DOLLAR] = ACTIONS(421), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(421), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [sym_word] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), }, [512] = { - [sym_file_descriptor] = ACTIONS(463), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_DQUOTE] = ACTIONS(419), - [sym_single_quoted_argument] = ACTIONS(419), - [anon_sym_DOLLAR] = ACTIONS(419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(419), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [sym_word] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_PIPE_AMP] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_DQUOTE] = ACTIONS(423), + [sym_single_quoted_argument] = ACTIONS(423), + [anon_sym_DOLLAR] = ACTIONS(423), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(423), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(423), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_LT_LT_DASH] = ACTIONS(423), + [sym_word] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [513] = { - [anon_sym_RBRACE] = ACTIONS(1615), - [anon_sym_COLON] = ACTIONS(1617), - [anon_sym_EQ] = ACTIONS(1619), - [anon_sym_COLON_QMARK] = ACTIONS(1619), - [anon_sym_COLON_DASH] = ACTIONS(1619), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1621), + [anon_sym_COLON] = ACTIONS(1623), + [anon_sym_EQ] = ACTIONS(1625), + [anon_sym_COLON_QMARK] = ACTIONS(1625), + [anon_sym_COLON_DASH] = ACTIONS(1625), + [sym_comment] = ACTIONS(73), }, [514] = { - [anon_sym_RPAREN] = ACTIONS(1621), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(1627), + [sym_comment] = ACTIONS(73), }, [515] = { - [sym_file_descriptor] = ACTIONS(479), - [anon_sym_RPAREN] = ACTIONS(481), - [anon_sym_SEMI_SEMI] = ACTIONS(481), - [anon_sym_PIPE] = ACTIONS(481), - [anon_sym_PIPE_AMP] = ACTIONS(481), - [anon_sym_AMP_AMP] = ACTIONS(481), - [anon_sym_PIPE_PIPE] = ACTIONS(481), - [anon_sym_DQUOTE] = ACTIONS(481), - [sym_single_quoted_argument] = ACTIONS(481), - [anon_sym_DOLLAR] = ACTIONS(481), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(481), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(481), - [anon_sym_LT] = ACTIONS(481), - [anon_sym_GT] = ACTIONS(481), - [anon_sym_GT_GT] = ACTIONS(481), - [anon_sym_AMP_GT] = ACTIONS(481), - [anon_sym_AMP_GT_GT] = ACTIONS(481), - [anon_sym_LT_AMP] = ACTIONS(481), - [anon_sym_GT_AMP] = ACTIONS(481), - [anon_sym_LT_LT] = ACTIONS(481), - [anon_sym_LT_LT_DASH] = ACTIONS(481), - [sym_word] = ACTIONS(481), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_LF] = ACTIONS(481), - [anon_sym_AMP] = ACTIONS(481), + [sym_file_descriptor] = ACTIONS(483), + [anon_sym_RPAREN] = ACTIONS(485), + [anon_sym_SEMI_SEMI] = ACTIONS(485), + [anon_sym_PIPE] = ACTIONS(485), + [anon_sym_PIPE_AMP] = ACTIONS(485), + [anon_sym_AMP_AMP] = ACTIONS(485), + [anon_sym_PIPE_PIPE] = ACTIONS(485), + [anon_sym_DQUOTE] = ACTIONS(485), + [sym_single_quoted_argument] = ACTIONS(485), + [anon_sym_DOLLAR] = ACTIONS(485), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(485), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(485), + [anon_sym_LT] = ACTIONS(485), + [anon_sym_GT] = ACTIONS(485), + [anon_sym_GT_GT] = ACTIONS(485), + [anon_sym_AMP_GT] = ACTIONS(485), + [anon_sym_AMP_GT_GT] = ACTIONS(485), + [anon_sym_LT_AMP] = ACTIONS(485), + [anon_sym_GT_AMP] = ACTIONS(485), + [anon_sym_LT_LT] = ACTIONS(485), + [anon_sym_LT_LT_DASH] = ACTIONS(485), + [sym_word] = ACTIONS(485), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(485), + [anon_sym_LF] = ACTIONS(485), + [anon_sym_AMP] = ACTIONS(485), }, [516] = { - [sym_file_descriptor] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(487), - [anon_sym_SEMI_SEMI] = ACTIONS(487), - [anon_sym_PIPE] = ACTIONS(487), - [anon_sym_PIPE_AMP] = ACTIONS(487), - [anon_sym_AMP_AMP] = ACTIONS(487), - [anon_sym_PIPE_PIPE] = ACTIONS(487), - [anon_sym_DQUOTE] = ACTIONS(487), - [sym_single_quoted_argument] = ACTIONS(487), - [anon_sym_DOLLAR] = ACTIONS(487), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(487), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(487), - [anon_sym_LT] = ACTIONS(487), - [anon_sym_GT] = ACTIONS(487), - [anon_sym_GT_GT] = ACTIONS(487), - [anon_sym_AMP_GT] = ACTIONS(487), - [anon_sym_AMP_GT_GT] = ACTIONS(487), - [anon_sym_LT_AMP] = ACTIONS(487), - [anon_sym_GT_AMP] = ACTIONS(487), - [anon_sym_LT_LT] = ACTIONS(487), - [anon_sym_LT_LT_DASH] = ACTIONS(487), - [sym_word] = ACTIONS(487), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(487), - [anon_sym_LF] = ACTIONS(487), - [anon_sym_AMP] = ACTIONS(487), + [sym_file_descriptor] = ACTIONS(489), + [anon_sym_RPAREN] = ACTIONS(491), + [anon_sym_SEMI_SEMI] = ACTIONS(491), + [anon_sym_PIPE] = ACTIONS(491), + [anon_sym_PIPE_AMP] = ACTIONS(491), + [anon_sym_AMP_AMP] = ACTIONS(491), + [anon_sym_PIPE_PIPE] = ACTIONS(491), + [anon_sym_DQUOTE] = ACTIONS(491), + [sym_single_quoted_argument] = ACTIONS(491), + [anon_sym_DOLLAR] = ACTIONS(491), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(491), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(491), + [anon_sym_LT] = ACTIONS(491), + [anon_sym_GT] = ACTIONS(491), + [anon_sym_GT_GT] = ACTIONS(491), + [anon_sym_AMP_GT] = ACTIONS(491), + [anon_sym_AMP_GT_GT] = ACTIONS(491), + [anon_sym_LT_AMP] = ACTIONS(491), + [anon_sym_GT_AMP] = ACTIONS(491), + [anon_sym_LT_LT] = ACTIONS(491), + [anon_sym_LT_LT_DASH] = ACTIONS(491), + [sym_word] = ACTIONS(491), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(491), + [anon_sym_LF] = ACTIONS(491), + [anon_sym_AMP] = ACTIONS(491), }, [517] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_SEMI_SEMI] = ACTIONS(1623), - [anon_sym_PIPE] = ACTIONS(1623), - [anon_sym_PIPE_AMP] = ACTIONS(1623), - [anon_sym_AMP_AMP] = ACTIONS(1623), - [anon_sym_PIPE_PIPE] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_LF] = ACTIONS(1623), - [anon_sym_AMP] = ACTIONS(1623), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(1629), + [anon_sym_SEMI_SEMI] = ACTIONS(1629), + [anon_sym_PIPE] = ACTIONS(1629), + [anon_sym_PIPE_AMP] = ACTIONS(1629), + [anon_sym_AMP_AMP] = ACTIONS(1629), + [anon_sym_PIPE_PIPE] = ACTIONS(1629), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1629), + [anon_sym_LF] = ACTIONS(1629), + [anon_sym_AMP] = ACTIONS(1629), }, [518] = { - [sym_file_descriptor] = ACTIONS(309), - [anon_sym_RPAREN] = ACTIONS(311), - [anon_sym_SEMI_SEMI] = ACTIONS(311), - [anon_sym_PIPE] = ACTIONS(311), - [anon_sym_PIPE_AMP] = ACTIONS(311), - [anon_sym_AMP_AMP] = ACTIONS(311), - [anon_sym_PIPE_PIPE] = ACTIONS(311), - [anon_sym_LT] = ACTIONS(311), - [anon_sym_GT] = ACTIONS(311), - [anon_sym_GT_GT] = ACTIONS(311), - [anon_sym_AMP_GT] = ACTIONS(311), - [anon_sym_AMP_GT_GT] = ACTIONS(311), - [anon_sym_LT_AMP] = ACTIONS(311), - [anon_sym_GT_AMP] = ACTIONS(311), - [anon_sym_LT_LT] = ACTIONS(311), - [anon_sym_LT_LT_DASH] = ACTIONS(311), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(311), - [anon_sym_LF] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(311), + [sym_file_descriptor] = ACTIONS(311), + [anon_sym_RPAREN] = ACTIONS(313), + [anon_sym_SEMI_SEMI] = ACTIONS(313), + [anon_sym_PIPE] = ACTIONS(313), + [anon_sym_PIPE_AMP] = ACTIONS(313), + [anon_sym_AMP_AMP] = ACTIONS(313), + [anon_sym_PIPE_PIPE] = ACTIONS(313), + [anon_sym_LT] = ACTIONS(313), + [anon_sym_GT] = ACTIONS(313), + [anon_sym_GT_GT] = ACTIONS(313), + [anon_sym_AMP_GT] = ACTIONS(313), + [anon_sym_AMP_GT_GT] = ACTIONS(313), + [anon_sym_LT_AMP] = ACTIONS(313), + [anon_sym_GT_AMP] = ACTIONS(313), + [anon_sym_LT_LT] = ACTIONS(313), + [anon_sym_LT_LT_DASH] = ACTIONS(313), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(313), + [anon_sym_LF] = ACTIONS(313), + [anon_sym_AMP] = ACTIONS(313), }, [519] = { [sym_expansion] = STATE(127), [sym_operator_expansion] = STATE(127), [sym_command_substitution] = STATE(127), - [anon_sym_DQUOTE] = ACTIONS(1626), - [sym__quoted_chars] = ACTIONS(325), - [anon_sym_DOLLAR] = ACTIONS(151), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(153), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(155), - [sym_comment] = ACTIONS(145), + [anon_sym_DQUOTE] = ACTIONS(1632), + [sym__quoted_chars] = ACTIONS(327), + [anon_sym_DOLLAR] = ACTIONS(153), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(155), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(157), + [sym_comment] = ACTIONS(147), }, [520] = { - [sym_file_descriptor] = ACTIONS(459), - [anon_sym_RPAREN] = ACTIONS(417), - [anon_sym_SEMI_SEMI] = ACTIONS(417), - [anon_sym_PIPE] = ACTIONS(417), - [anon_sym_PIPE_AMP] = ACTIONS(417), - [anon_sym_AMP_AMP] = ACTIONS(417), - [anon_sym_PIPE_PIPE] = ACTIONS(417), - [anon_sym_LT] = ACTIONS(417), - [anon_sym_GT] = ACTIONS(417), - [anon_sym_GT_GT] = ACTIONS(417), - [anon_sym_AMP_GT] = ACTIONS(417), - [anon_sym_AMP_GT_GT] = ACTIONS(417), - [anon_sym_LT_AMP] = ACTIONS(417), - [anon_sym_GT_AMP] = ACTIONS(417), - [anon_sym_LT_LT] = ACTIONS(417), - [anon_sym_LT_LT_DASH] = ACTIONS(417), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(417), - [anon_sym_LF] = ACTIONS(417), - [anon_sym_AMP] = ACTIONS(417), + [sym_file_descriptor] = ACTIONS(463), + [anon_sym_RPAREN] = ACTIONS(421), + [anon_sym_SEMI_SEMI] = ACTIONS(421), + [anon_sym_PIPE] = ACTIONS(421), + [anon_sym_PIPE_AMP] = ACTIONS(421), + [anon_sym_AMP_AMP] = ACTIONS(421), + [anon_sym_PIPE_PIPE] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(421), + [anon_sym_GT] = ACTIONS(421), + [anon_sym_GT_GT] = ACTIONS(421), + [anon_sym_AMP_GT] = ACTIONS(421), + [anon_sym_AMP_GT_GT] = ACTIONS(421), + [anon_sym_LT_AMP] = ACTIONS(421), + [anon_sym_GT_AMP] = ACTIONS(421), + [anon_sym_LT_LT] = ACTIONS(421), + [anon_sym_LT_LT_DASH] = ACTIONS(421), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(421), + [anon_sym_LF] = ACTIONS(421), + [anon_sym_AMP] = ACTIONS(421), }, [521] = { - [sym_file_descriptor] = ACTIONS(463), - [anon_sym_RPAREN] = ACTIONS(419), - [anon_sym_SEMI_SEMI] = ACTIONS(419), - [anon_sym_PIPE] = ACTIONS(419), - [anon_sym_PIPE_AMP] = ACTIONS(419), - [anon_sym_AMP_AMP] = ACTIONS(419), - [anon_sym_PIPE_PIPE] = ACTIONS(419), - [anon_sym_LT] = ACTIONS(419), - [anon_sym_GT] = ACTIONS(419), - [anon_sym_GT_GT] = ACTIONS(419), - [anon_sym_AMP_GT] = ACTIONS(419), - [anon_sym_AMP_GT_GT] = ACTIONS(419), - [anon_sym_LT_AMP] = ACTIONS(419), - [anon_sym_GT_AMP] = ACTIONS(419), - [anon_sym_LT_LT] = ACTIONS(419), - [anon_sym_LT_LT_DASH] = ACTIONS(419), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(419), - [anon_sym_LF] = ACTIONS(419), - [anon_sym_AMP] = ACTIONS(419), + [sym_file_descriptor] = ACTIONS(467), + [anon_sym_RPAREN] = ACTIONS(423), + [anon_sym_SEMI_SEMI] = ACTIONS(423), + [anon_sym_PIPE] = ACTIONS(423), + [anon_sym_PIPE_AMP] = ACTIONS(423), + [anon_sym_AMP_AMP] = ACTIONS(423), + [anon_sym_PIPE_PIPE] = ACTIONS(423), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(423), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(423), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_LT_LT] = ACTIONS(423), + [anon_sym_LT_LT_DASH] = ACTIONS(423), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(423), + [anon_sym_LF] = ACTIONS(423), + [anon_sym_AMP] = ACTIONS(423), }, [522] = { - [anon_sym_RBRACE] = ACTIONS(1628), - [anon_sym_COLON] = ACTIONS(1630), - [anon_sym_EQ] = ACTIONS(1632), - [anon_sym_COLON_QMARK] = ACTIONS(1632), - [anon_sym_COLON_DASH] = ACTIONS(1632), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1634), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_COLON_QMARK] = ACTIONS(1638), + [anon_sym_COLON_DASH] = ACTIONS(1638), + [sym_comment] = ACTIONS(73), }, [523] = { - [anon_sym_RPAREN] = ACTIONS(1634), - [sym_comment] = ACTIONS(71), + [anon_sym_RPAREN] = ACTIONS(1640), + [sym_comment] = ACTIONS(73), }, [524] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_RBRACE] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_single_quoted_argument] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [sym_leading_word] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_RBRACE] = ACTIONS(549), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_single_quoted_argument] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [sym_leading_word] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [525] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_RBRACE] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_single_quoted_argument] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(617), - [anon_sym_AMP_GT_GT] = ACTIONS(617), - [anon_sym_LT_AMP] = ACTIONS(617), - [anon_sym_GT_AMP] = ACTIONS(617), - [sym_leading_word] = ACTIONS(617), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [anon_sym_RBRACE] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PIPE_AMP] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_single_quoted_argument] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_AMP_GT] = ACTIONS(623), + [anon_sym_AMP_GT_GT] = ACTIONS(623), + [anon_sym_LT_AMP] = ACTIONS(623), + [anon_sym_GT_AMP] = ACTIONS(623), + [sym_leading_word] = ACTIONS(623), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), }, [526] = { [sym_quoted_argument] = STATE(551), [sym_expansion] = STATE(551), [sym_operator_expansion] = STATE(551), [sym_command_substitution] = STATE(551), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(1636), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(1638), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(1642), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(1644), + [sym_comment] = ACTIONS(73), }, [527] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_RBRACE] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_single_quoted_argument] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AMP_GT] = ACTIONS(663), - [anon_sym_AMP_GT_GT] = ACTIONS(663), - [anon_sym_LT_AMP] = ACTIONS(663), - [anon_sym_GT_AMP] = ACTIONS(663), - [sym_leading_word] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_RBRACE] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_single_quoted_argument] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [sym_leading_word] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [528] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_COLON] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_single_quoted_argument] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_leading_word] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_COLON] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_single_quoted_argument] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_leading_word] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [529] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_COLON] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_single_quoted_argument] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(617), - [anon_sym_AMP_GT_GT] = ACTIONS(617), - [anon_sym_LT_AMP] = ACTIONS(617), - [anon_sym_GT_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [sym_leading_word] = ACTIONS(617), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [anon_sym_COLON] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PIPE_AMP] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_single_quoted_argument] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_AMP_GT] = ACTIONS(623), + [anon_sym_AMP_GT_GT] = ACTIONS(623), + [anon_sym_LT_AMP] = ACTIONS(623), + [anon_sym_GT_AMP] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [sym_leading_word] = ACTIONS(623), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), }, [530] = { [sym_quoted_argument] = STATE(553), [sym_expansion] = STATE(553), [sym_operator_expansion] = STATE(553), [sym_command_substitution] = STATE(553), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(1640), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(1642), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(1646), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(1648), + [sym_comment] = ACTIONS(73), }, [531] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_COLON] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_single_quoted_argument] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AMP_GT] = ACTIONS(663), - [anon_sym_AMP_GT_GT] = ACTIONS(663), - [anon_sym_LT_AMP] = ACTIONS(663), - [anon_sym_GT_AMP] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [sym_leading_word] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_COLON] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_single_quoted_argument] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [sym_leading_word] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [532] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_PIPE_AMP] = ACTIONS(1644), - [anon_sym_AMP_AMP] = ACTIONS(1644), - [anon_sym_PIPE_PIPE] = ACTIONS(1644), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1644), - [anon_sym_LF] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1644), + [anon_sym_SEMI_SEMI] = ACTIONS(1650), + [anon_sym_PIPE] = ACTIONS(1650), + [anon_sym_PIPE_AMP] = ACTIONS(1650), + [anon_sym_AMP_AMP] = ACTIONS(1650), + [anon_sym_PIPE_PIPE] = ACTIONS(1650), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1650), + [anon_sym_LF] = ACTIONS(1650), + [anon_sym_AMP] = ACTIONS(1650), }, [533] = { [sym_case_item] = STATE(301), @@ -17097,117 +17115,117 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(236), [sym_operator_expansion] = STATE(236), [sym_command_substitution] = STATE(236), - [anon_sym_esac] = ACTIONS(1647), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(611), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(613), - [sym_comment] = ACTIONS(71), + [anon_sym_esac] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(617), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(619), + [sym_comment] = ACTIONS(73), }, [534] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_RBRACK_RBRACK] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_single_quoted_argument] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_word] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_RBRACK] = ACTIONS(549), + [anon_sym_RBRACK_RBRACK] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_single_quoted_argument] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_word] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [535] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_RBRACK] = ACTIONS(617), - [anon_sym_RBRACK_RBRACK] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_single_quoted_argument] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(617), - [anon_sym_AMP_GT_GT] = ACTIONS(617), - [anon_sym_LT_AMP] = ACTIONS(617), - [anon_sym_GT_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [sym_word] = ACTIONS(617), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [anon_sym_RBRACK] = ACTIONS(623), + [anon_sym_RBRACK_RBRACK] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PIPE_AMP] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_single_quoted_argument] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_AMP_GT] = ACTIONS(623), + [anon_sym_AMP_GT_GT] = ACTIONS(623), + [anon_sym_LT_AMP] = ACTIONS(623), + [anon_sym_GT_AMP] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [sym_word] = ACTIONS(623), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), }, [536] = { [sym_quoted_argument] = STATE(556), [sym_expansion] = STATE(556), [sym_operator_expansion] = STATE(556), [sym_command_substitution] = STATE(556), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(1649), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(1651), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(1655), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(1657), + [sym_comment] = ACTIONS(73), }, [537] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_RBRACK] = ACTIONS(663), - [anon_sym_RBRACK_RBRACK] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_single_quoted_argument] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AMP_GT] = ACTIONS(663), - [anon_sym_AMP_GT_GT] = ACTIONS(663), - [anon_sym_LT_AMP] = ACTIONS(663), - [anon_sym_GT_AMP] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [sym_word] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(669), + [anon_sym_RBRACK_RBRACK] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_single_quoted_argument] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [sym_word] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [538] = { [sym_quoted_argument] = STATE(515), @@ -17217,79 +17235,79 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(422), [sym_heredoc_redirect] = STATE(422), [aux_sym_command_repeat2] = STATE(558), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_SEMI_SEMI] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_single_quoted_argument] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_word] = ACTIONS(1566), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(697), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_SEMI_SEMI] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_PIPE_AMP] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_single_quoted_argument] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_word] = ACTIONS(1572), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_LF] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), }, [539] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_SEMI_SEMI] = ACTIONS(697), - [anon_sym_PIPE] = ACTIONS(697), - [anon_sym_PIPE_AMP] = ACTIONS(697), - [anon_sym_AMP_AMP] = ACTIONS(697), - [anon_sym_PIPE_PIPE] = ACTIONS(697), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(697), - [anon_sym_LF] = ACTIONS(697), - [anon_sym_AMP] = ACTIONS(697), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_SEMI_SEMI] = ACTIONS(703), + [anon_sym_PIPE] = ACTIONS(703), + [anon_sym_PIPE_AMP] = ACTIONS(703), + [anon_sym_AMP_AMP] = ACTIONS(703), + [anon_sym_PIPE_PIPE] = ACTIONS(703), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(703), + [anon_sym_LF] = ACTIONS(703), + [anon_sym_AMP] = ACTIONS(703), }, [540] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [aux_sym_SLASH_BSLASHs_PLUS_SLASH] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [541] = { [sym_quoted_argument] = STATE(515), @@ -17299,591 +17317,591 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_file_redirect] = STATE(422), [sym_heredoc_redirect] = STATE(422), [aux_sym_command_repeat2] = STATE(559), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_DQUOTE] = ACTIONS(1438), - [sym_single_quoted_argument] = ACTIONS(1564), - [anon_sym_DOLLAR] = ACTIONS(1442), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1444), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1446), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_word] = ACTIONS(1566), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_AMP] = ACTIONS(751), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_SEMI_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_PIPE_AMP] = ACTIONS(757), + [anon_sym_AMP_AMP] = ACTIONS(757), + [anon_sym_PIPE_PIPE] = ACTIONS(757), + [anon_sym_DQUOTE] = ACTIONS(1444), + [sym_single_quoted_argument] = ACTIONS(1570), + [anon_sym_DOLLAR] = ACTIONS(1448), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1452), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_word] = ACTIONS(1572), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_LF] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(757), }, [542] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_PIPE] = ACTIONS(751), - [anon_sym_PIPE_AMP] = ACTIONS(751), - [anon_sym_AMP_AMP] = ACTIONS(751), - [anon_sym_PIPE_PIPE] = ACTIONS(751), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(751), - [anon_sym_LF] = ACTIONS(751), - [anon_sym_AMP] = ACTIONS(751), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(757), + [anon_sym_SEMI_SEMI] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_PIPE_AMP] = ACTIONS(757), + [anon_sym_AMP_AMP] = ACTIONS(757), + [anon_sym_PIPE_PIPE] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(757), + [anon_sym_LF] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(757), }, [543] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_DQUOTE] = ACTIONS(545), - [sym_single_quoted_argument] = ACTIONS(545), - [anon_sym_DOLLAR] = ACTIONS(545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(545), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_word] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_DQUOTE] = ACTIONS(549), + [sym_single_quoted_argument] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(549), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_word] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [544] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_DQUOTE] = ACTIONS(617), - [sym_single_quoted_argument] = ACTIONS(617), - [anon_sym_DOLLAR] = ACTIONS(617), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(617), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(617), - [anon_sym_AMP_GT_GT] = ACTIONS(617), - [anon_sym_LT_AMP] = ACTIONS(617), - [anon_sym_GT_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [sym_word] = ACTIONS(617), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PIPE_AMP] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_DQUOTE] = ACTIONS(623), + [sym_single_quoted_argument] = ACTIONS(623), + [anon_sym_DOLLAR] = ACTIONS(623), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(623), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_AMP_GT] = ACTIONS(623), + [anon_sym_AMP_GT_GT] = ACTIONS(623), + [anon_sym_LT_AMP] = ACTIONS(623), + [anon_sym_GT_AMP] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [sym_word] = ACTIONS(623), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), }, [545] = { [sym_quoted_argument] = STATE(560), [sym_expansion] = STATE(560), [sym_operator_expansion] = STATE(560), [sym_command_substitution] = STATE(560), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(1653), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(1655), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(1659), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(1661), + [sym_comment] = ACTIONS(73), }, [546] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_DQUOTE] = ACTIONS(663), - [sym_single_quoted_argument] = ACTIONS(663), - [anon_sym_DOLLAR] = ACTIONS(663), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(663), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AMP_GT] = ACTIONS(663), - [anon_sym_AMP_GT_GT] = ACTIONS(663), - [anon_sym_LT_AMP] = ACTIONS(663), - [anon_sym_GT_AMP] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [sym_word] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_DQUOTE] = ACTIONS(669), + [sym_single_quoted_argument] = ACTIONS(669), + [anon_sym_DOLLAR] = ACTIONS(669), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(669), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [sym_word] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [547] = { - [sym_file_descriptor] = ACTIONS(543), - [anon_sym_RPAREN] = ACTIONS(545), - [anon_sym_SEMI_SEMI] = ACTIONS(545), - [anon_sym_PIPE] = ACTIONS(545), - [anon_sym_PIPE_AMP] = ACTIONS(545), - [anon_sym_AMP_AMP] = ACTIONS(545), - [anon_sym_PIPE_PIPE] = ACTIONS(545), - [anon_sym_LT] = ACTIONS(545), - [anon_sym_GT] = ACTIONS(545), - [anon_sym_GT_GT] = ACTIONS(545), - [anon_sym_AMP_GT] = ACTIONS(545), - [anon_sym_AMP_GT_GT] = ACTIONS(545), - [anon_sym_LT_AMP] = ACTIONS(545), - [anon_sym_GT_AMP] = ACTIONS(545), - [anon_sym_LT_LT] = ACTIONS(545), - [anon_sym_LT_LT_DASH] = ACTIONS(545), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(545), - [anon_sym_LF] = ACTIONS(545), - [anon_sym_AMP] = ACTIONS(545), + [sym_file_descriptor] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(549), + [anon_sym_PIPE] = ACTIONS(549), + [anon_sym_PIPE_AMP] = ACTIONS(549), + [anon_sym_AMP_AMP] = ACTIONS(549), + [anon_sym_PIPE_PIPE] = ACTIONS(549), + [anon_sym_LT] = ACTIONS(549), + [anon_sym_GT] = ACTIONS(549), + [anon_sym_GT_GT] = ACTIONS(549), + [anon_sym_AMP_GT] = ACTIONS(549), + [anon_sym_AMP_GT_GT] = ACTIONS(549), + [anon_sym_LT_AMP] = ACTIONS(549), + [anon_sym_GT_AMP] = ACTIONS(549), + [anon_sym_LT_LT] = ACTIONS(549), + [anon_sym_LT_LT_DASH] = ACTIONS(549), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(549), + [anon_sym_LF] = ACTIONS(549), + [anon_sym_AMP] = ACTIONS(549), }, [548] = { - [sym_file_descriptor] = ACTIONS(675), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_SEMI_SEMI] = ACTIONS(617), - [anon_sym_PIPE] = ACTIONS(617), - [anon_sym_PIPE_AMP] = ACTIONS(617), - [anon_sym_AMP_AMP] = ACTIONS(617), - [anon_sym_PIPE_PIPE] = ACTIONS(617), - [anon_sym_LT] = ACTIONS(617), - [anon_sym_GT] = ACTIONS(617), - [anon_sym_GT_GT] = ACTIONS(617), - [anon_sym_AMP_GT] = ACTIONS(617), - [anon_sym_AMP_GT_GT] = ACTIONS(617), - [anon_sym_LT_AMP] = ACTIONS(617), - [anon_sym_GT_AMP] = ACTIONS(617), - [anon_sym_LT_LT] = ACTIONS(617), - [anon_sym_LT_LT_DASH] = ACTIONS(617), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(617), - [anon_sym_LF] = ACTIONS(617), - [anon_sym_AMP] = ACTIONS(617), + [sym_file_descriptor] = ACTIONS(681), + [anon_sym_RPAREN] = ACTIONS(623), + [anon_sym_SEMI_SEMI] = ACTIONS(623), + [anon_sym_PIPE] = ACTIONS(623), + [anon_sym_PIPE_AMP] = ACTIONS(623), + [anon_sym_AMP_AMP] = ACTIONS(623), + [anon_sym_PIPE_PIPE] = ACTIONS(623), + [anon_sym_LT] = ACTIONS(623), + [anon_sym_GT] = ACTIONS(623), + [anon_sym_GT_GT] = ACTIONS(623), + [anon_sym_AMP_GT] = ACTIONS(623), + [anon_sym_AMP_GT_GT] = ACTIONS(623), + [anon_sym_LT_AMP] = ACTIONS(623), + [anon_sym_GT_AMP] = ACTIONS(623), + [anon_sym_LT_LT] = ACTIONS(623), + [anon_sym_LT_LT_DASH] = ACTIONS(623), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(623), + [anon_sym_LF] = ACTIONS(623), + [anon_sym_AMP] = ACTIONS(623), }, [549] = { [sym_quoted_argument] = STATE(562), [sym_expansion] = STATE(562), [sym_operator_expansion] = STATE(562), [sym_command_substitution] = STATE(562), - [anon_sym_DQUOTE] = ACTIONS(123), - [sym_single_quoted_argument] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(127), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), - [sym_word] = ACTIONS(1659), - [sym_comment] = ACTIONS(71), + [anon_sym_DQUOTE] = ACTIONS(125), + [sym_single_quoted_argument] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(129), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(131), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(133), + [sym_word] = ACTIONS(1665), + [sym_comment] = ACTIONS(73), }, [550] = { - [sym_file_descriptor] = ACTIONS(683), - [anon_sym_RPAREN] = ACTIONS(663), - [anon_sym_SEMI_SEMI] = ACTIONS(663), - [anon_sym_PIPE] = ACTIONS(663), - [anon_sym_PIPE_AMP] = ACTIONS(663), - [anon_sym_AMP_AMP] = ACTIONS(663), - [anon_sym_PIPE_PIPE] = ACTIONS(663), - [anon_sym_LT] = ACTIONS(663), - [anon_sym_GT] = ACTIONS(663), - [anon_sym_GT_GT] = ACTIONS(663), - [anon_sym_AMP_GT] = ACTIONS(663), - [anon_sym_AMP_GT_GT] = ACTIONS(663), - [anon_sym_LT_AMP] = ACTIONS(663), - [anon_sym_GT_AMP] = ACTIONS(663), - [anon_sym_LT_LT] = ACTIONS(663), - [anon_sym_LT_LT_DASH] = ACTIONS(663), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(663), - [anon_sym_LF] = ACTIONS(663), - [anon_sym_AMP] = ACTIONS(663), + [sym_file_descriptor] = ACTIONS(689), + [anon_sym_RPAREN] = ACTIONS(669), + [anon_sym_SEMI_SEMI] = ACTIONS(669), + [anon_sym_PIPE] = ACTIONS(669), + [anon_sym_PIPE_AMP] = ACTIONS(669), + [anon_sym_AMP_AMP] = ACTIONS(669), + [anon_sym_PIPE_PIPE] = ACTIONS(669), + [anon_sym_LT] = ACTIONS(669), + [anon_sym_GT] = ACTIONS(669), + [anon_sym_GT_GT] = ACTIONS(669), + [anon_sym_AMP_GT] = ACTIONS(669), + [anon_sym_AMP_GT_GT] = ACTIONS(669), + [anon_sym_LT_AMP] = ACTIONS(669), + [anon_sym_GT_AMP] = ACTIONS(669), + [anon_sym_LT_LT] = ACTIONS(669), + [anon_sym_LT_LT_DASH] = ACTIONS(669), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(669), + [anon_sym_LF] = ACTIONS(669), + [anon_sym_AMP] = ACTIONS(669), }, [551] = { - [anon_sym_RBRACE] = ACTIONS(1661), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1667), + [sym_comment] = ACTIONS(73), }, [552] = { - [anon_sym_RBRACE] = ACTIONS(1663), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1669), + [sym_comment] = ACTIONS(73), }, [553] = { - [anon_sym_RBRACE] = ACTIONS(1665), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1671), + [sym_comment] = ACTIONS(73), }, [554] = { - [anon_sym_RBRACE] = ACTIONS(1667), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1673), + [sym_comment] = ACTIONS(73), }, [555] = { - [anon_sym_SEMI_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_PIPE_AMP] = ACTIONS(1669), - [anon_sym_AMP_AMP] = ACTIONS(1669), - [anon_sym_PIPE_PIPE] = ACTIONS(1669), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_LF] = ACTIONS(1669), - [anon_sym_AMP] = ACTIONS(1669), + [anon_sym_SEMI_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_PIPE_AMP] = ACTIONS(1675), + [anon_sym_AMP_AMP] = ACTIONS(1675), + [anon_sym_PIPE_PIPE] = ACTIONS(1675), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_LF] = ACTIONS(1675), + [anon_sym_AMP] = ACTIONS(1675), }, [556] = { - [anon_sym_RBRACE] = ACTIONS(1672), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1678), + [sym_comment] = ACTIONS(73), }, [557] = { - [anon_sym_RBRACE] = ACTIONS(1674), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1680), + [sym_comment] = ACTIONS(73), }, [558] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(865), - [anon_sym_SEMI_SEMI] = ACTIONS(865), - [anon_sym_PIPE] = ACTIONS(865), - [anon_sym_PIPE_AMP] = ACTIONS(865), - [anon_sym_AMP_AMP] = ACTIONS(865), - [anon_sym_PIPE_PIPE] = ACTIONS(865), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(865), - [anon_sym_LF] = ACTIONS(865), - [anon_sym_AMP] = ACTIONS(865), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(871), + [anon_sym_SEMI_SEMI] = ACTIONS(871), + [anon_sym_PIPE] = ACTIONS(871), + [anon_sym_PIPE_AMP] = ACTIONS(871), + [anon_sym_AMP_AMP] = ACTIONS(871), + [anon_sym_PIPE_PIPE] = ACTIONS(871), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(871), + [anon_sym_LF] = ACTIONS(871), + [anon_sym_AMP] = ACTIONS(871), }, [559] = { [sym_file_redirect] = STATE(460), [sym_heredoc_redirect] = STATE(460), - [sym_file_descriptor] = ACTIONS(1067), - [anon_sym_RPAREN] = ACTIONS(867), - [anon_sym_SEMI_SEMI] = ACTIONS(867), - [anon_sym_PIPE] = ACTIONS(867), - [anon_sym_PIPE_AMP] = ACTIONS(867), - [anon_sym_AMP_AMP] = ACTIONS(867), - [anon_sym_PIPE_PIPE] = ACTIONS(867), - [anon_sym_LT] = ACTIONS(1084), - [anon_sym_GT] = ACTIONS(1084), - [anon_sym_GT_GT] = ACTIONS(1084), - [anon_sym_AMP_GT] = ACTIONS(1084), - [anon_sym_AMP_GT_GT] = ACTIONS(1084), - [anon_sym_LT_AMP] = ACTIONS(1084), - [anon_sym_GT_AMP] = ACTIONS(1084), - [anon_sym_LT_LT] = ACTIONS(1086), - [anon_sym_LT_LT_DASH] = ACTIONS(1086), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(867), - [anon_sym_LF] = ACTIONS(867), - [anon_sym_AMP] = ACTIONS(867), + [sym_file_descriptor] = ACTIONS(1073), + [anon_sym_RPAREN] = ACTIONS(873), + [anon_sym_SEMI_SEMI] = ACTIONS(873), + [anon_sym_PIPE] = ACTIONS(873), + [anon_sym_PIPE_AMP] = ACTIONS(873), + [anon_sym_AMP_AMP] = ACTIONS(873), + [anon_sym_PIPE_PIPE] = ACTIONS(873), + [anon_sym_LT] = ACTIONS(1090), + [anon_sym_GT] = ACTIONS(1090), + [anon_sym_GT_GT] = ACTIONS(1090), + [anon_sym_AMP_GT] = ACTIONS(1090), + [anon_sym_AMP_GT_GT] = ACTIONS(1090), + [anon_sym_LT_AMP] = ACTIONS(1090), + [anon_sym_GT_AMP] = ACTIONS(1090), + [anon_sym_LT_LT] = ACTIONS(1092), + [anon_sym_LT_LT_DASH] = ACTIONS(1092), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(873), + [anon_sym_LF] = ACTIONS(873), + [anon_sym_AMP] = ACTIONS(873), }, [560] = { - [anon_sym_RBRACE] = ACTIONS(1676), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1682), + [sym_comment] = ACTIONS(73), }, [561] = { - [anon_sym_RBRACE] = ACTIONS(1678), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1684), + [sym_comment] = ACTIONS(73), }, [562] = { - [anon_sym_RBRACE] = ACTIONS(1680), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1686), + [sym_comment] = ACTIONS(73), }, [563] = { - [anon_sym_RBRACE] = ACTIONS(1682), - [sym_comment] = ACTIONS(71), + [anon_sym_RBRACE] = ACTIONS(1688), + [sym_comment] = ACTIONS(73), }, [564] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym_single_quoted_argument] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(889), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [sym_leading_word] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [anon_sym_RBRACE] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym_single_quoted_argument] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_AMP_GT] = ACTIONS(895), + [anon_sym_AMP_GT_GT] = ACTIONS(895), + [anon_sym_LT_AMP] = ACTIONS(895), + [anon_sym_GT_AMP] = ACTIONS(895), + [sym_leading_word] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [565] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_COLON] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_PIPE_AMP] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_single_quoted_argument] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_AMP_GT] = ACTIONS(891), - [anon_sym_AMP_GT_GT] = ACTIONS(891), - [anon_sym_LT_AMP] = ACTIONS(891), - [anon_sym_GT_AMP] = ACTIONS(891), - [sym_leading_word] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_RBRACE] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym_single_quoted_argument] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(897), + [anon_sym_LT_AMP] = ACTIONS(897), + [anon_sym_GT_AMP] = ACTIONS(897), + [sym_leading_word] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, [566] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [anon_sym_COLON] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym_single_quoted_argument] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(889), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(889), - [sym_leading_word] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(895), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [anon_sym_COLON] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym_single_quoted_argument] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_AMP_GT] = ACTIONS(895), + [anon_sym_AMP_GT_GT] = ACTIONS(895), + [anon_sym_LT_AMP] = ACTIONS(895), + [anon_sym_GT_AMP] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_LT_LT_DASH] = ACTIONS(895), + [sym_leading_word] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [567] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [anon_sym_COLON] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_PIPE_AMP] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_single_quoted_argument] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_AMP_GT] = ACTIONS(891), - [anon_sym_AMP_GT_GT] = ACTIONS(891), - [anon_sym_LT_AMP] = ACTIONS(891), - [anon_sym_GT_AMP] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [sym_leading_word] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym_single_quoted_argument] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(897), + [anon_sym_LT_AMP] = ACTIONS(897), + [anon_sym_GT_AMP] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_LT_LT_DASH] = ACTIONS(897), + [sym_leading_word] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, [568] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [anon_sym_RBRACK] = ACTIONS(889), - [anon_sym_RBRACK_RBRACK] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym_single_quoted_argument] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(889), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(889), - [sym_word] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(895), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [anon_sym_RBRACK] = ACTIONS(895), + [anon_sym_RBRACK_RBRACK] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym_single_quoted_argument] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_AMP_GT] = ACTIONS(895), + [anon_sym_AMP_GT_GT] = ACTIONS(895), + [anon_sym_LT_AMP] = ACTIONS(895), + [anon_sym_GT_AMP] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_LT_LT_DASH] = ACTIONS(895), + [sym_word] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [569] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [anon_sym_RBRACK] = ACTIONS(891), - [anon_sym_RBRACK_RBRACK] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_PIPE_AMP] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_single_quoted_argument] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_AMP_GT] = ACTIONS(891), - [anon_sym_AMP_GT_GT] = ACTIONS(891), - [anon_sym_LT_AMP] = ACTIONS(891), - [anon_sym_GT_AMP] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [sym_word] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_RBRACK] = ACTIONS(897), + [anon_sym_RBRACK_RBRACK] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym_single_quoted_argument] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(897), + [anon_sym_LT_AMP] = ACTIONS(897), + [anon_sym_GT_AMP] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_LT_LT_DASH] = ACTIONS(897), + [sym_word] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, [570] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_DQUOTE] = ACTIONS(889), - [sym_single_quoted_argument] = ACTIONS(889), - [anon_sym_DOLLAR] = ACTIONS(889), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(889), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(889), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(889), - [sym_word] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(895), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_DQUOTE] = ACTIONS(895), + [sym_single_quoted_argument] = ACTIONS(895), + [anon_sym_DOLLAR] = ACTIONS(895), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(895), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_AMP_GT] = ACTIONS(895), + [anon_sym_AMP_GT_GT] = ACTIONS(895), + [anon_sym_LT_AMP] = ACTIONS(895), + [anon_sym_GT_AMP] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_LT_LT_DASH] = ACTIONS(895), + [sym_word] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [571] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_PIPE_AMP] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_DQUOTE] = ACTIONS(891), - [sym_single_quoted_argument] = ACTIONS(891), - [anon_sym_DOLLAR] = ACTIONS(891), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_AMP_GT] = ACTIONS(891), - [anon_sym_AMP_GT_GT] = ACTIONS(891), - [anon_sym_LT_AMP] = ACTIONS(891), - [anon_sym_GT_AMP] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [sym_word] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_DQUOTE] = ACTIONS(897), + [sym_single_quoted_argument] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(897), + [anon_sym_LT_AMP] = ACTIONS(897), + [anon_sym_GT_AMP] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_LT_LT_DASH] = ACTIONS(897), + [sym_word] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, [572] = { - [sym_file_descriptor] = ACTIONS(917), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_SEMI_SEMI] = ACTIONS(889), - [anon_sym_PIPE] = ACTIONS(889), - [anon_sym_PIPE_AMP] = ACTIONS(889), - [anon_sym_AMP_AMP] = ACTIONS(889), - [anon_sym_PIPE_PIPE] = ACTIONS(889), - [anon_sym_LT] = ACTIONS(889), - [anon_sym_GT] = ACTIONS(889), - [anon_sym_GT_GT] = ACTIONS(889), - [anon_sym_AMP_GT] = ACTIONS(889), - [anon_sym_AMP_GT_GT] = ACTIONS(889), - [anon_sym_LT_AMP] = ACTIONS(889), - [anon_sym_GT_AMP] = ACTIONS(889), - [anon_sym_LT_LT] = ACTIONS(889), - [anon_sym_LT_LT_DASH] = ACTIONS(889), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(889), - [anon_sym_LF] = ACTIONS(889), - [anon_sym_AMP] = ACTIONS(889), + [sym_file_descriptor] = ACTIONS(923), + [anon_sym_RPAREN] = ACTIONS(895), + [anon_sym_SEMI_SEMI] = ACTIONS(895), + [anon_sym_PIPE] = ACTIONS(895), + [anon_sym_PIPE_AMP] = ACTIONS(895), + [anon_sym_AMP_AMP] = ACTIONS(895), + [anon_sym_PIPE_PIPE] = ACTIONS(895), + [anon_sym_LT] = ACTIONS(895), + [anon_sym_GT] = ACTIONS(895), + [anon_sym_GT_GT] = ACTIONS(895), + [anon_sym_AMP_GT] = ACTIONS(895), + [anon_sym_AMP_GT_GT] = ACTIONS(895), + [anon_sym_LT_AMP] = ACTIONS(895), + [anon_sym_GT_AMP] = ACTIONS(895), + [anon_sym_LT_LT] = ACTIONS(895), + [anon_sym_LT_LT_DASH] = ACTIONS(895), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(895), + [anon_sym_LF] = ACTIONS(895), + [anon_sym_AMP] = ACTIONS(895), }, [573] = { - [sym_file_descriptor] = ACTIONS(921), - [anon_sym_RPAREN] = ACTIONS(891), - [anon_sym_SEMI_SEMI] = ACTIONS(891), - [anon_sym_PIPE] = ACTIONS(891), - [anon_sym_PIPE_AMP] = ACTIONS(891), - [anon_sym_AMP_AMP] = ACTIONS(891), - [anon_sym_PIPE_PIPE] = ACTIONS(891), - [anon_sym_LT] = ACTIONS(891), - [anon_sym_GT] = ACTIONS(891), - [anon_sym_GT_GT] = ACTIONS(891), - [anon_sym_AMP_GT] = ACTIONS(891), - [anon_sym_AMP_GT_GT] = ACTIONS(891), - [anon_sym_LT_AMP] = ACTIONS(891), - [anon_sym_GT_AMP] = ACTIONS(891), - [anon_sym_LT_LT] = ACTIONS(891), - [anon_sym_LT_LT_DASH] = ACTIONS(891), - [sym_comment] = ACTIONS(145), - [anon_sym_SEMI] = ACTIONS(891), - [anon_sym_LF] = ACTIONS(891), - [anon_sym_AMP] = ACTIONS(891), + [sym_file_descriptor] = ACTIONS(927), + [anon_sym_RPAREN] = ACTIONS(897), + [anon_sym_SEMI_SEMI] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_PIPE_AMP] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(897), + [anon_sym_PIPE_PIPE] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_AMP_GT] = ACTIONS(897), + [anon_sym_AMP_GT_GT] = ACTIONS(897), + [anon_sym_LT_AMP] = ACTIONS(897), + [anon_sym_GT_AMP] = ACTIONS(897), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_LT_LT_DASH] = ACTIONS(897), + [sym_comment] = ACTIONS(147), + [anon_sym_SEMI] = ACTIONS(897), + [anon_sym_LF] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), }, }; @@ -17894,745 +17912,748 @@ static TSParseActionEntry ts_parse_actions[] = { [5] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(387), [7] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(388), [9] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(389), - [11] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(0), - [13] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(3), - [15] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(74), - [17] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(370), - [19] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(4), - [21] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(371), - [23] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(372), - [25] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(154), - [27] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(155), - [29] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(5), - [31] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(373), - [33] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(374), - [35] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(375), - [37] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(6), - [39] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(376), - [41] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(214), - [43] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(377), - [45] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(8), - [47] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(100), - [49] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(100), - [51] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(378), - [53] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(66), - [55] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(67), - [57] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(379), - [59] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(380), - [61] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(381), - [63] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(382), - [65] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(382), - [67] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(383), - [69] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(383), - [71] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), - [73] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(384), - [75] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2), - [77] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 0), - [79] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3), - [81] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4), - [83] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(5), - [85] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(6), - [87] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(7), - [89] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(8), - [91] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(9), - [93] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(10), - [95] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(11), - [97] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(10), - [99] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), - [101] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(13), - [103] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(21), - [105] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(21), - [107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(26), - [109] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(27), - [111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(28), - [113] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(29), - [115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(30), - [117] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(31), - [119] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(32), - [121] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33), - [123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(35), - [125] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(36), - [127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(37), - [129] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(38), - [131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(39), - [133] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(40), - [135] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(43), - [137] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), - [139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(44), - [141] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(45), - [143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(46), - [145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), - [147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(49), - [149] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(50), - [151] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(51), - [153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(52), - [155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(53), - [157] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(55), - [159] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), - [161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(57), - [163] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(58), - [165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(59), - [167] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(60), - [169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1, .rename_sequence_id = 1), - [171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(61), - [173] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(62), - [175] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(63), - [177] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), - [179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [181] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), - [183] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), - [185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(65), - [187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(66), - [189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(67), - [191] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), - [193] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), - [195] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1), - [197] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), - [199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(69), - [201] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(69), - [203] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(70), - [205] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(72), - [207] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(73), - [209] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(74), - [211] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(76), - [213] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(77), - [215] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(78), - [217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80), - [219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), - [221] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(82), - [223] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(83), - [225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(84), - [227] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(85), - [229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), - [231] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(85), - [233] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(87), - [235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(90), - [237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), - [239] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(92), - [241] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 2), - [243] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), - [245] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), - [247] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 1), - [249] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), - [251] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), - [253] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(96), - [255] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(97), - [257] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(98), - [259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 1, .rename_sequence_id = 2), - [261] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1, .rename_sequence_id = 2), - [263] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1, .rename_sequence_id = 2), - [265] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), - [267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), - [269] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(102), - [271] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(103), - [273] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), - [275] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(104), - [279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(105), - [281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(106), - [283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(107), - [285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(108), - [287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(109), - [289] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(112), - [291] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(113), - [293] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(114), - [295] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), - [297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), - [299] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(117), - [301] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(118), - [303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(119), - [305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [307] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), - [309] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), - [311] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), - [313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_quoted_argument_repeat1, 1), - [315] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_quoted_argument_repeat1, 1), - [317] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(122), - [319] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(123), - [321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), - [323] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(126), - [325] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(127), - [327] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(128), - [329] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [331] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), - [333] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), - [335] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), - [337] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(131), - [339] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(132), - [341] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), - [343] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), - [345] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), - [347] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(134), - [349] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2, .rename_sequence_id = 4), - [351] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), - [353] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(138), - [355] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), - [357] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(140), - [359] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(141), - [361] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(142), - [363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [365] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), - [367] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), - [369] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [371] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), - [373] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), - [375] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(147), - [377] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2, .rename_sequence_id = 5), - [379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(148), - [381] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(149), - [383] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), - [385] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), - [387] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), - [389] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [391] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), - [393] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), - [395] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), - [397] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), - [399] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), - [401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(151), - [403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), - [405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(153), - [407] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), - [409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), - [411] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(160), - [413] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(161), - [415] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), - [417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2), - [419] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2, .rename_sequence_id = 7), - [421] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), - [423] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(164), - [425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), - [427] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), - [429] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(166), - [431] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(167), - [433] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(168), - [435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(171), - [437] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(173), - [439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(175), - [441] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(176), - [443] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(176), - [445] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(177), - [447] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(178), - [449] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179), - [451] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(180), - [453] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), - [455] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_quoted_argument, 2), - [457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(181), - [459] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2), - [461] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 2), - [463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2, .rename_sequence_id = 7), - [465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 2, .rename_sequence_id = 7), - [467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(182), - [469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(183), - [471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), - [473] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), - [475] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), - [477] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2), - [479] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), - [481] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), - [483] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2, .rename_sequence_id = 3), - [485] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2, .rename_sequence_id = 3), - [487] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2, .rename_sequence_id = 3), - [489] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(185), - [491] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), - [493] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(187), - [495] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(189), - [497] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(190), - [499] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(191), - [501] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [503] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(193), - [505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(194), - [507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(196), - [509] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(198), - [511] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(199), - [513] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(200), - [515] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [517] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), - [519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(202), - [521] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(203), - [523] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(204), - [525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(205), - [527] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [529] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), - [531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), - [535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), - [537] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(208), - [539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208), - [541] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(209), - [543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 3), - [545] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 3), - [547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_quoted_argument_repeat1, 2), - [549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_quoted_argument_repeat1, 2), - [551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(210), - [553] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(211), - [555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(212), - [557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), - [559] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(213), - [561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(214), - [563] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3, .rename_sequence_id = 8), - [565] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(217), - [567] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), - [569] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), - [571] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(219), - [573] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(220), - [575] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(221), - [577] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 10), - [579] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 10), - [581] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3, .fragile = true), - [583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), - [585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3, .rename_sequence_id = 11), - [587] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(226), - [589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(227), - [591] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), - [593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(228), - [595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), - [597] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), - [599] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), - [601] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), - [603] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(231), - [605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(154), - [607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), - [609] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(235), - [611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(236), - [613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(237), - [615] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(240), - [617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), - [619] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(241), - [621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(242), - [623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(243), - [625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(243), - [627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), - [629] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), - [631] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(245), - [633] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(246), - [635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(247), - [637] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(248), - [639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167), - [641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(167), - [643] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(168), - [645] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(168), - [647] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(249), - [649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(252), - [651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), - [653] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), - [655] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), - [657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), - [659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(258), - [661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2, .rename_sequence_id = 4), - [663] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(261), - [667] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(262), - [669] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(264), - [671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(266), - [673] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_quoted_argument, 3), - [675] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), - [677] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), - [679] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(268), - [681] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(269), - [683] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), - [685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), - [687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(270), - [689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(271), - [691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(272), - [693] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(272), - [695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), - [697] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [699] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(274), - [701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), - [703] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(276), - [705] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(276), - [707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(277), - [709] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), - [711] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), - [713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [715] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), - [717] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), - [719] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(279), - [721] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(280), - [723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), - [725] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), - [727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(283), - [729] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), - [731] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(285), - [733] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(286), - [735] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), - [737] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .rename_sequence_id = 13), - [739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4, .rename_sequence_id = 13), - [741] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(289), - [743] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), - [745] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(291), - [747] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), - [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), - [751] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4, .rename_sequence_id = 14), - [753] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), - [755] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 10), - [757] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), - [759] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), - [761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), - [763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), - [765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), - [767] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), - [769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), - [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), - [773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), - [775] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), - [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [779] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), - [781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(300), - [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), - [785] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(304), - [787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(305), - [789] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(306), - [791] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(307), - [793] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(309), - [795] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), - [797] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(311), - [799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), - [801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(313), - [803] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(314), - [805] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), - [807] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), - [809] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), - [811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), - [813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3, .rename_sequence_id = 8), - [815] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3, .rename_sequence_id = 11), - [817] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .rename_sequence_id = 15), - [819] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(322), - [821] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .rename_sequence_id = 16), - [823] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(324), - [825] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(325), - [827] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(326), - [829] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(327), - [831] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(328), - [833] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), - [835] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(330), - [837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(331), - [839] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), - [841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), - [843] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), - [845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [847] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), - [849] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), - [851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), - [853] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(334), - [855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), - [857] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_command, 2), - [859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), - [861] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), - [863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(338), - [865] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 5), - [867] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 5, .rename_sequence_id = 16), - [869] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), - [871] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), - [873] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), - [875] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), - [877] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), - [879] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), - [881] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), - [883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), - [887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(345), - [889] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), - [891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), - [893] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(346), - [895] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), - [897] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(348), - [899] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), - [901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), - [903] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), - [905] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), - [907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), - [909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4, .rename_sequence_id = 13), - [911] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4, .rename_sequence_id = 14), - [913] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), - [915] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), - [917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), - [919] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), - [921] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), - [923] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), - [925] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), - [927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), - [929] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(356), - [931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), - [933] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), - [935] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(359), - [937] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_command, 3), - [939] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), - [941] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), - [943] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), - [945] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), - [947] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), - [949] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [951] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), - [953] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), - [955] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .rename_sequence_id = 20), - [957] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .rename_sequence_id = 20), - [959] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .rename_sequence_id = 20), - [961] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), - [963] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), - [965] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(364), - [967] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(365), - [969] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), - [971] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 5), - [973] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 5, .rename_sequence_id = 16), - [975] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .rename_sequence_id = 21), - [977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(366), - [979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), - [981] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), - [983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [985] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), - [987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .rename_sequence_id = 22), - [989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .rename_sequence_id = 22), - [991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .rename_sequence_id = 22), - [993] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(368), - [995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), - [997] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), REDUCE(sym_do_group, 3), - [1000] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), SHIFT(153), - [1003] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), SHIFT(154), - [1006] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), SHIFT(155), - [1009] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_if_statement, 6), REDUCE(sym_if_statement, 7), - [1014] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(413), - [1016] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), REDUCE(sym_case_statement, 5, .rename_sequence_id = 15), REDUCE(sym_case_statement, 6), REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), REDUCE(sym_case_statement, 7), REDUCE(sym_case_statement, 7, .rename_sequence_id = 21), - [1023] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(2), - [1026] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 2), REDUCE(sym_subshell, 3), REDUCE(sym_command_substitution, 3), SHIFT(414), - [1031] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(7), - [1033] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(214), - [1035] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(10), - [1038] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 2), REDUCE(sym_subshell, 3), REDUCE(sym_command_substitution, 3), - [1042] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(11), - [1045] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(12), - [1048] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(13), - [1051] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), - [1053] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), - [1057] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), - [1061] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_command, 2), REDUCE(sym_compound_command, 3), REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), - [1067] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), - [1069] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), REDUCE(sym_command, 2), - [1072] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), - [1074] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(35), - [1076] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), - [1078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(37), - [1080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(38), - [1082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(39), - [1084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(420), - [1086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(383), - [1088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), - [1090] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(424), - [1092] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(425), - [1094] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(426), - [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), - [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), - [1100] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(429), - [1102] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), - [1105] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), - [1108] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), SHIFT(430), - [1112] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(50), - [1114] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), SHIFT(51), - [1118] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), SHIFT(52), - [1122] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), SHIFT(53), - [1126] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2), SHIFT(431), - [1129] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2), SHIFT(432), - [1132] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), - [1134] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(434), - [1136] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(435), - [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), - [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), - [1142] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(438), - [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), - [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), - [1148] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), - [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(440), - [1152] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), SHIFT(35), - [1155] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), SHIFT(236), - [1158] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), - [1160] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), REDUCE(aux_sym_heredoc_repeat1, 2), - [1163] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), REDUCE(aux_sym_heredoc_repeat1, 2), - [1166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), REDUCE(sym_heredoc, 3), - [1169] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), REDUCE(sym_heredoc, 3), - [1172] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(442), - [1174] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), - [1176] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), REDUCE(aux_sym_program_repeat1, 2), - [1179] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), REDUCE(aux_sym_program_repeat1, 2), - [1182] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(74), - [1184] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(371), - [1186] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), REDUCE(aux_sym_program_repeat1, 2), - [1189] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3, .fragile = true), REDUCE(sym_list, 3, .fragile = true), SHIFT(65), - [1193] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3, .fragile = true), REDUCE(sym_list, 3, .fragile = true), SHIFT(66), - [1197] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3, .fragile = true), REDUCE(sym_list, 3, .fragile = true), SHIFT(67), - [1201] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), REDUCE(aux_sym_if_statement_repeat1, 2), - [1204] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), - [1206] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), REDUCE(aux_sym_case_statement_repeat1, 2), - [1209] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), REDUCE(aux_sym_case_statement_repeat1, 2), - [1212] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), REDUCE(aux_sym_case_statement_repeat1, 2), - [1215] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .rename_sequence_id = 13), REDUCE(sym_function_definition, 5, .rename_sequence_id = 16), - [1218] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(444), - [1220] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), REDUCE(sym_list, 3), SHIFT(65), - [1224] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), REDUCE(sym_list, 3), SHIFT(66), - [1228] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), REDUCE(sym_list, 3), SHIFT(67), - [1232] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), REDUCE(aux_sym_command_repeat1, 2), - [1235] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), REDUCE(aux_sym_command_repeat1, 2), - [1238] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), SHIFT(417), - [1245] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_command, 2), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_file_redirect, 3), SHIFT(298), - [1253] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_command, 2), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), SHIFT(81), - [1262] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(445), - [1264] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(aux_sym_bracket_command_repeat1, 2), - [1267] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), - [1271] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_command, 2), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), - [1279] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), - [1285] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), SHIFT(420), - [1292] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_file_redirect, 3), SHIFT(383), - [1298] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), - [1304] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_file_redirect, 3), SHIFT(298), - [1310] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), SHIFT(81), - [1317] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(aux_sym_quoted_argument_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(aux_sym_quoted_argument_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), - [1325] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_quoted_argument_repeat1, 1), REDUCE(aux_sym_quoted_argument_repeat1, 2), - [1328] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(aux_sym_quoted_argument_repeat1, 1), REDUCE(aux_sym_heredoc_repeat1, 1), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(aux_sym_quoted_argument_repeat1, 2), REDUCE(aux_sym_heredoc_repeat1, 2), - [1335] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(aux_sym_quoted_argument_repeat1, 1), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(aux_sym_quoted_argument_repeat1, 2), - [1340] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_file_redirect, 3), - [1345] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), REDUCE(aux_sym_command_repeat2, 1), REDUCE(aux_sym_command_repeat1, 2), REDUCE(aux_sym_command_repeat2, 2), - [1350] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), REDUCE(aux_sym_command_repeat2, 2), - [1353] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), REDUCE(aux_sym_command_repeat2, 1), REDUCE(aux_sym_command_repeat1, 2), REDUCE(aux_sym_command_repeat2, 2), - [1358] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), REDUCE(aux_sym_command_repeat2, 2), - [1361] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), REDUCE(sym_elif_clause, 4), SHIFT(231), - [1365] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), SHIFT(154), - [1368] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), SHIFT(155), - [1371] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), - [1373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), - [1375] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(449), - [1377] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), REDUCE(sym_command, 3, .rename_sequence_id = 8), REDUCE(sym_command, 4), REDUCE(sym_command, 4, .rename_sequence_id = 14), - [1382] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(100), - [1384] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(450), - [1386] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(451), - [1388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(452), - [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(453), - [1392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(454), - [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(455), - [1396] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), - [1398] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), - [1400] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(457), - [1402] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(459), - [1404] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), REDUCE(sym_command, 2, .rename_sequence_id = 4), REDUCE(sym_command, 3), REDUCE(sym_command, 3, .rename_sequence_id = 11), REDUCE(sym_command, 3, .rename_sequence_id = 8), REDUCE(sym_command, 4), REDUCE(sym_command, 4, .rename_sequence_id = 14), REDUCE(sym_command, 4, .rename_sequence_id = 13), REDUCE(sym_command, 5), REDUCE(sym_command, 5, .rename_sequence_id = 16), - [1415] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(461), - [1417] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), - [1419] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), SHIFT(231), - [1422] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), REDUCE(sym_case_item, 3, .rename_sequence_id = 20), - [1425] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), REDUCE(sym_case_item, 3, .rename_sequence_id = 20), - [1428] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), REDUCE(sym_case_item, 3, .rename_sequence_id = 20), - [1431] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(463), - [1433] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), - [1435] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), REDUCE(sym_command, 3), - [1438] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(464), - [1440] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(465), - [1442] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(466), - [1444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(467), - [1446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(468), - [1448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(469), - [1450] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), - [1452] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), - [1454] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(473), - [1456] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(474), - [1458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), - [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), - [1462] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(477), - [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), - [1466] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(479), - [1468] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), - [1470] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(482), - [1472] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(483), - [1474] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(478), - [1476] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(485), - [1478] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), REDUCE(sym_file_redirect, 3), - [1481] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), REDUCE(sym_file_redirect, 3), - [1484] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), - [1486] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(488), - [1488] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(489), - [1490] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), - [1493] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), - [1496] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(491), - [1498] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), REDUCE(sym_case_statement, 5, .rename_sequence_id = 15), REDUCE(sym_case_statement, 6), REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), - [1503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(492), - [1505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(493), - [1507] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), REDUCE(sym_if_statement, 6), REDUCE(sym_if_statement, 7), - [1511] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), REDUCE(sym_case_item, 4, .rename_sequence_id = 22), - [1514] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), REDUCE(sym_case_item, 4, .rename_sequence_id = 22), - [1517] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), REDUCE(sym_case_item, 4, .rename_sequence_id = 22), - [1520] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), REDUCE(sym_if_statement, 6), - [1523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), - [1525] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), REDUCE(sym_case_statement, 7), REDUCE(sym_case_statement, 7, .rename_sequence_id = 21), - [1530] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(495), - [1532] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), - [1534] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(498), - [1536] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), - [1538] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), REDUCE(sym_command, 4, .rename_sequence_id = 13), REDUCE(sym_command, 5), REDUCE(sym_command, 5, .rename_sequence_id = 16), - [1543] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(501), - [1545] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(503), - [1547] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(505), - [1549] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), - [1551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(508), - [1553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(509), - [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), - [1557] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(512), - [1559] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(513), - [1561] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), REDUCE(sym_command, 4), - [1564] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(515), - [1566] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(516), - [1568] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(518), - [1570] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), - [1572] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(521), - [1574] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(522), - [1576] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(524), - [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), - [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), - [1582] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), - [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), - [1586] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(528), - [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), - [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(530), - [1592] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), - [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), - [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(532), - [1598] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), REDUCE(sym_if_statement, 7), - [1601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(534), - [1603] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), - [1605] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(536), - [1607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), - [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), - [1611] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(540), - [1613] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(543), - [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), - [1617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(545), - [1619] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), - [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), - [1623] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), REDUCE(sym_command, 5), - [1626] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(547), - [1628] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), - [1630] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(549), - [1632] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), - [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), - [1636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(551), - [1638] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(552), - [1640] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), - [1642] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(554), - [1644] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), - [1647] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555), - [1649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(556), - [1651] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(557), - [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), - [1655] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(561), - [1657] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), - [1659] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(563), - [1661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), - [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), - [1665] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), - [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), - [1669] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), REDUCE(sym_case_statement, 7, .rename_sequence_id = 21), - [1672] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), - [1674] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), - [1676] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), - [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), - [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), - [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), + [11] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(137), + [13] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(0), + [15] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(3), + [17] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(74), + [19] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(370), + [21] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(4), + [23] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(371), + [25] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(372), + [27] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(154), + [29] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(155), + [31] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(5), + [33] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(373), + [35] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(374), + [37] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(375), + [39] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(6), + [41] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(376), + [43] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(214), + [45] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(377), + [47] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(8), + [49] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(100), + [51] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(100), + [53] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(378), + [55] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(66), + [57] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(67), + [59] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(379), + [61] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(380), + [63] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(381), + [65] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(382), + [67] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(382), + [69] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, RECOVER(383), + [71] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(383), + [73] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT_EXTRA(), + [75] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, RECOVER(384), + [77] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(2), + [79] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 0), + [81] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(3), + [83] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(4), + [85] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(5), + [87] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(6), + [89] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(7), + [91] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(8), + [93] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(9), + [95] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(10), + [97] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(11), + [99] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(10), + [101] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(12), + [103] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(13), + [105] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(21), + [107] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(21), + [109] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(26), + [111] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(27), + [113] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(28), + [115] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(29), + [117] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(30), + [119] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(31), + [121] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(32), + [123] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(33), + [125] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(35), + [127] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(36), + [129] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(37), + [131] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(38), + [133] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(39), + [135] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(40), + [137] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(43), + [139] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), + [141] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(44), + [143] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(45), + [145] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(46), + [147] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT_EXTRA(), + [149] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(49), + [151] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(50), + [153] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(51), + [155] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(52), + [157] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(53), + [159] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(55), + [161] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(56), + [163] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(57), + [165] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(58), + [167] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(59), + [169] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(60), + [171] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1, .rename_sequence_id = 1), + [173] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(61), + [175] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(62), + [177] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(63), + [179] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, ACCEPT_INPUT(), + [181] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [183] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), + [185] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), + [187] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(65), + [189] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(66), + [191] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(67), + [193] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), + [195] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), + [197] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 1), + [199] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_program, 1), + [201] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(69), + [203] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(69), + [205] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(70), + [207] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(72), + [209] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(73), + [211] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(74), + [213] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(76), + [215] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(77), + [217] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(78), + [219] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(80), + [221] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(81), + [223] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(82), + [225] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(83), + [227] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(84), + [229] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(85), + [231] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(86), + [233] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(85), + [235] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(87), + [237] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(90), + [239] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(91), + [241] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(92), + [243] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 2), + [245] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(93), + [247] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(94), + [249] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 1), + [251] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), + [253] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), + [255] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(96), + [257] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(97), + [259] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(98), + [261] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 1, .rename_sequence_id = 2), + [263] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1, .rename_sequence_id = 2), + [265] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1, .rename_sequence_id = 2), + [267] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(100), + [269] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(101), + [271] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(102), + [273] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(103), + [275] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(103), + [277] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [279] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(104), + [281] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(105), + [283] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(106), + [285] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(107), + [287] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(108), + [289] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(109), + [291] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(112), + [293] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(113), + [295] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(114), + [297] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(115), + [299] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(116), + [301] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(117), + [303] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(118), + [305] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(119), + [307] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [309] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), + [311] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), + [313] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), + [315] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_quoted_argument_repeat1, 1), + [317] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_quoted_argument_repeat1, 1), + [319] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(122), + [321] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(123), + [323] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(124), + [325] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(126), + [327] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(127), + [329] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(128), + [331] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [333] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2), + [335] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), + [337] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(130), + [339] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(131), + [341] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(132), + [343] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), + [345] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), + [347] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), + [349] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(134), + [351] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2, .rename_sequence_id = 4), + [353] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(137), + [355] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(138), + [357] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(137), + [359] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(139), + [361] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(140), + [363] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(141), + [365] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(142), + [367] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [369] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), + [371] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), + [373] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [375] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 2), + [377] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 2), + [379] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(147), + [381] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2, .rename_sequence_id = 5), + [383] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(148), + [385] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(149), + [387] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), + [389] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat1, 2), + [391] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 2), + [393] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [395] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3), + [397] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3), + [399] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), + [401] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), + [403] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), + [405] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(151), + [407] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_while_statement, 3), + [409] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(153), + [411] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(154), + [413] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(155), + [415] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(160), + [417] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(161), + [419] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(162), + [421] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2), + [423] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2, .rename_sequence_id = 7), + [425] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(163), + [427] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(164), + [429] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(164), + [431] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(165), + [433] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(166), + [435] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(167), + [437] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(168), + [439] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(171), + [441] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(173), + [443] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(175), + [445] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(176), + [447] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(176), + [449] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(177), + [451] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(178), + [453] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(179), + [455] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(180), + [457] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 3), + [459] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_quoted_argument, 2), + [461] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(181), + [463] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2), + [465] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 2), + [467] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2, .rename_sequence_id = 7), + [469] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_expansion, 2, .rename_sequence_id = 7), + [471] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(182), + [473] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(183), + [475] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(183), + [477] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(184), + [479] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_bracket_command, 3), + [481] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2), + [483] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), + [485] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2), + [487] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_bracket_command_repeat1, 2, .rename_sequence_id = 3), + [489] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2, .rename_sequence_id = 3), + [491] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 2, .rename_sequence_id = 3), + [493] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(185), + [495] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(186), + [497] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(187), + [499] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(189), + [501] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(190), + [503] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(191), + [505] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [507] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(193), + [509] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(194), + [511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(196), + [513] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(198), + [515] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(199), + [517] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(200), + [519] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [521] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 1), + [523] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(202), + [525] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(203), + [527] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(204), + [529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(205), + [531] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [533] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc_redirect, 2), + [535] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [537] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 2), + [539] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(207), + [541] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(208), + [543] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(208), + [545] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(209), + [547] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 3), + [549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 3), + [551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_quoted_argument_repeat1, 2), + [553] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_quoted_argument_repeat1, 2), + [555] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(210), + [557] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(211), + [559] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(212), + [561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(212), + [563] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(213), + [565] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(214), + [567] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3, .rename_sequence_id = 8), + [569] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), + [571] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), + [573] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(217), + [575] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(219), + [577] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(220), + [579] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(221), + [581] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 10), + [583] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 10), + [585] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3, .fragile = true), + [587] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_list, 3, .fragile = true), + [589] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3, .rename_sequence_id = 11), + [591] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(226), + [593] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(226), + [595] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(227), + [597] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), + [599] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(228), + [601] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), + [603] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 1), + [605] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), + [607] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(231), + [609] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(231), + [611] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(154), + [613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(155), + [615] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(235), + [617] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(236), + [619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(237), + [621] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(240), + [623] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), + [625] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(241), + [627] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(242), + [629] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(243), + [631] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(243), + [633] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2), + [635] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(244), + [637] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(245), + [639] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(246), + [641] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(247), + [643] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(248), + [645] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(167), + [647] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(167), + [649] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(168), + [651] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(168), + [653] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(249), + [655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(252), + [657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(253), + [659] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(254), + [661] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(255), + [663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 1), + [665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(258), + [667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 2, .rename_sequence_id = 4), + [669] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [671] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(261), + [673] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(262), + [675] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(264), + [677] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(266), + [679] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_quoted_argument, 3), + [681] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), + [683] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), + [685] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(268), + [687] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(269), + [689] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), + [691] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_command_substitution, 3), + [693] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(270), + [695] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(271), + [697] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(272), + [699] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(272), + [701] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(273), + [703] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [705] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(274), + [707] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(275), + [709] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(276), + [711] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(276), + [713] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(277), + [715] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), + [717] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), + [719] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [721] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), + [723] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(278), + [725] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(279), + [727] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(280), + [729] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(281), + [731] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(282), + [733] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(283), + [735] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(284), + [737] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(285), + [739] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(286), + [741] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(287), + [743] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .rename_sequence_id = 13), + [745] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4, .rename_sequence_id = 13), + [747] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(289), + [749] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(290), + [751] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(291), + [753] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(291), + [755] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(292), + [757] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4, .rename_sequence_id = 14), + [759] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), + [761] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 10), + [763] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 3), + [765] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(295), + [767] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), + [769] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), + [771] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(296), + [773] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 2), + [775] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), + [777] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(298), + [779] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(299), + [781] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), + [783] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [785] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), + [787] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(300), + [789] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(303), + [791] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(304), + [793] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(305), + [795] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(306), + [797] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(307), + [799] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(309), + [801] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(310), + [803] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(311), + [805] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3), + [807] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(313), + [809] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(314), + [811] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 1), + [813] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(316), + [815] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc_redirect, 2), + [817] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_command_repeat2, 2), + [819] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3, .rename_sequence_id = 8), + [821] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 3, .rename_sequence_id = 11), + [823] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5, .rename_sequence_id = 15), + [825] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(322), + [827] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 5, .rename_sequence_id = 16), + [829] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(324), + [831] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(325), + [833] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(326), + [835] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(327), + [837] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(328), + [839] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(329), + [841] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(330), + [843] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(331), + [845] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(331), + [847] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 2), + [849] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 2), + [851] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [853] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 3), + [855] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(332), + [857] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(333), + [859] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(334), + [861] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(335), + [863] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_command, 2), + [865] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(336), + [867] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(337), + [869] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(338), + [871] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 5), + [873] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 5, .rename_sequence_id = 16), + [875] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), + [877] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), + [879] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(340), + [881] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(341), + [883] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(343), + [885] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), + [887] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 2), + [889] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [891] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 2), + [893] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(345), + [895] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), + [897] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), + [899] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(346), + [901] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(347), + [903] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(348), + [905] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(348), + [907] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(349), + [909] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4), + [911] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 2), + [913] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(350), + [915] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4, .rename_sequence_id = 13), + [917] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 4, .rename_sequence_id = 14), + [919] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), + [921] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(353), + [923] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), + [925] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), + [927] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), + [929] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), + [931] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(354), + [933] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(355), + [935] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(356), + [937] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(357), + [939] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(358), + [941] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(359), + [943] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_command, 3), + [945] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(360), + [947] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(361), + [949] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), + [951] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 7), + [953] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), + [955] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [957] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), + [959] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(362), + [961] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3, .rename_sequence_id = 20), + [963] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .rename_sequence_id = 20), + [965] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3, .rename_sequence_id = 20), + [967] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(363), + [969] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), + [971] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(364), + [973] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(365), + [975] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_heredoc, 3), + [977] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 5), + [979] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command, 5, .rename_sequence_id = 16), + [981] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7, .rename_sequence_id = 21), + [983] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(366), + [985] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(367), + [987] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), + [989] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [991] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), + [993] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4, .rename_sequence_id = 22), + [995] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .rename_sequence_id = 22), + [997] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4, .rename_sequence_id = 22), + [999] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(368), + [1001] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(369), + [1003] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_do_group, 2), REDUCE(sym_do_group, 3), + [1006] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), SHIFT(153), + [1009] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), SHIFT(154), + [1012] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 3), SHIFT(155), + [1015] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 4), REDUCE(sym_if_statement, 5), REDUCE(sym_if_statement, 6), REDUCE(sym_if_statement, 7), + [1020] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(413), + [1022] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), REDUCE(sym_case_statement, 5, .rename_sequence_id = 15), REDUCE(sym_case_statement, 6), REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), REDUCE(sym_case_statement, 7), REDUCE(sym_case_statement, 7, .rename_sequence_id = 21), + [1029] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(2), + [1032] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 2), REDUCE(sym_subshell, 3), REDUCE(sym_command_substitution, 3), SHIFT(414), + [1037] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(7), + [1039] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(214), + [1041] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(10), + [1044] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_subshell, 2), REDUCE(sym_subshell, 3), REDUCE(sym_command_substitution, 3), + [1048] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(11), + [1051] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(12), + [1054] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command_substitution, 3), SHIFT(13), + [1057] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(416), + [1059] = {.count = 3, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), + [1063] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), + [1067] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_compound_command, 2), REDUCE(sym_compound_command, 3), REDUCE(sym_operator_expansion, 3, .rename_sequence_id = 12), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 17), REDUCE(sym_operator_expansion, 5, .rename_sequence_id = 18), + [1073] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(417), + [1075] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), REDUCE(sym_command, 2), + [1078] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(418), + [1080] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(35), + [1082] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(419), + [1084] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(37), + [1086] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(38), + [1088] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(39), + [1090] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(420), + [1092] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(383), + [1094] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(421), + [1096] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(424), + [1098] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(425), + [1100] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(426), + [1102] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(427), + [1104] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(428), + [1106] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(429), + [1108] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), + [1111] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), + [1114] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), SHIFT(430), + [1118] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(50), + [1120] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), SHIFT(51), + [1124] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), SHIFT(52), + [1128] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_quoted_argument, 2), REDUCE(sym_quoted_argument, 3), SHIFT(53), + [1132] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2), SHIFT(431), + [1135] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_expansion, 2), SHIFT(432), + [1138] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(433), + [1140] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(434), + [1142] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(435), + [1144] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(436), + [1146] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(437), + [1148] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(438), + [1150] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(385), + [1152] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(386), + [1154] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(439), + [1156] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(440), + [1158] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym__terminated_statement, 2), SHIFT(35), + [1161] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym__terminated_statement, 2), SHIFT(236), + [1164] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(441), + [1166] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_heredoc_repeat1, 1), REDUCE(aux_sym_heredoc_repeat1, 2), + [1169] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_heredoc_repeat1, 1), REDUCE(aux_sym_heredoc_repeat1, 2), + [1172] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), REDUCE(sym_heredoc, 3), + [1175] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_heredoc, 2), REDUCE(sym_heredoc, 3), + [1178] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(442), + [1180] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(442), + [1182] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), REDUCE(aux_sym_program_repeat1, 2), + [1185] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_program_repeat1, 1), REDUCE(aux_sym_program_repeat1, 2), + [1188] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(74), + [1190] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(371), + [1192] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_program_repeat1, 1), REDUCE(aux_sym_program_repeat1, 2), + [1195] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3, .fragile = true), REDUCE(sym_list, 3, .fragile = true), SHIFT(65), + [1199] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3, .fragile = true), REDUCE(sym_list, 3, .fragile = true), SHIFT(66), + [1203] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3, .fragile = true), REDUCE(sym_list, 3, .fragile = true), SHIFT(67), + [1207] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_if_statement_repeat1, 1), REDUCE(aux_sym_if_statement_repeat1, 2), + [1210] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(443), + [1212] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(aux_sym_case_statement_repeat1, 1), REDUCE(aux_sym_case_statement_repeat1, 2), + [1215] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), REDUCE(aux_sym_case_statement_repeat1, 2), + [1218] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_case_statement_repeat1, 1), REDUCE(aux_sym_case_statement_repeat1, 2), + [1221] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_function_definition, 4, .rename_sequence_id = 13), REDUCE(sym_function_definition, 5, .rename_sequence_id = 16), + [1224] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(444), + [1226] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), REDUCE(sym_list, 3), SHIFT(65), + [1230] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), REDUCE(sym_list, 3), SHIFT(66), + [1234] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_pipeline, 3), REDUCE(sym_list, 3), SHIFT(67), + [1238] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), REDUCE(aux_sym_command_repeat1, 2), + [1241] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), REDUCE(aux_sym_command_repeat1, 2), + [1244] = {.count = 6, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), SHIFT(417), + [1251] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_command, 2), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_file_redirect, 3), SHIFT(298), + [1259] = {.count = 8, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_command, 2), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), SHIFT(81), + [1268] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(445), + [1270] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(aux_sym_bracket_command_repeat1, 2), + [1273] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), + [1277] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 1), REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_command, 2), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), + [1285] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), + [1291] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), SHIFT(420), + [1298] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_file_redirect, 3), SHIFT(383), + [1304] = {.count = 5, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), + [1310] = {.count = 5, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_file_redirect, 3), SHIFT(298), + [1316] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), SHIFT(81), + [1323] = {.count = 7, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(aux_sym_quoted_argument_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(aux_sym_quoted_argument_repeat1, 2), REDUCE(sym_environment_variable_assignment, 3, .rename_sequence_id = 9), REDUCE(sym_file_redirect, 3), + [1331] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_quoted_argument_repeat1, 1), REDUCE(aux_sym_quoted_argument_repeat1, 2), + [1334] = {.count = 6, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(aux_sym_quoted_argument_repeat1, 1), REDUCE(aux_sym_heredoc_repeat1, 1), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(aux_sym_quoted_argument_repeat1, 2), REDUCE(aux_sym_heredoc_repeat1, 2), + [1341] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(aux_sym_quoted_argument_repeat1, 1), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(aux_sym_quoted_argument_repeat1, 2), + [1346] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_bracket_command_repeat1, 1), REDUCE(sym_file_redirect, 2), REDUCE(aux_sym_bracket_command_repeat1, 2), REDUCE(sym_file_redirect, 3), + [1351] = {.count = 4, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), REDUCE(aux_sym_command_repeat2, 1), REDUCE(aux_sym_command_repeat1, 2), REDUCE(aux_sym_command_repeat2, 2), + [1356] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), REDUCE(aux_sym_command_repeat2, 2), + [1359] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat1, 1), REDUCE(aux_sym_command_repeat2, 1), REDUCE(aux_sym_command_repeat1, 2), REDUCE(aux_sym_command_repeat2, 2), + [1364] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(aux_sym_command_repeat2, 1), REDUCE(aux_sym_command_repeat2, 2), + [1367] = {.count = 3, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_else_clause, 2), REDUCE(sym_elif_clause, 4), SHIFT(231), + [1371] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), SHIFT(154), + [1374] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), SHIFT(155), + [1377] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(446), + [1379] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(447), + [1381] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(449), + [1383] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), REDUCE(sym_command, 3, .rename_sequence_id = 8), REDUCE(sym_command, 4), REDUCE(sym_command, 4, .rename_sequence_id = 14), + [1388] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(100), + [1390] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(450), + [1392] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(451), + [1394] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(452), + [1396] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(453), + [1398] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(454), + [1400] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(455), + [1402] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(457), + [1404] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(458), + [1406] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(457), + [1408] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(459), + [1410] = {.count = 10, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), REDUCE(sym_command, 2, .rename_sequence_id = 4), REDUCE(sym_command, 3), REDUCE(sym_command, 3, .rename_sequence_id = 11), REDUCE(sym_command, 3, .rename_sequence_id = 8), REDUCE(sym_command, 4), REDUCE(sym_command, 4, .rename_sequence_id = 14), REDUCE(sym_command, 4, .rename_sequence_id = 13), REDUCE(sym_command, 5), REDUCE(sym_command, 5, .rename_sequence_id = 16), + [1421] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(461), + [1423] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(462), + [1425] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_elif_clause, 4), SHIFT(231), + [1428] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 3), REDUCE(sym_case_item, 3, .rename_sequence_id = 20), + [1431] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), REDUCE(sym_case_item, 3, .rename_sequence_id = 20), + [1434] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 3), REDUCE(sym_case_item, 3, .rename_sequence_id = 20), + [1437] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(463), + [1439] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(463), + [1441] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 2), REDUCE(sym_command, 3), + [1444] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(464), + [1446] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(465), + [1448] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(466), + [1450] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(467), + [1452] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(468), + [1454] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(469), + [1456] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(445), + [1458] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(472), + [1460] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(473), + [1462] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(474), + [1464] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(475), + [1466] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(476), + [1468] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(477), + [1470] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(478), + [1472] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(479), + [1474] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(481), + [1476] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(482), + [1478] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(483), + [1480] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(478), + [1482] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(485), + [1484] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), REDUCE(sym_file_redirect, 3), + [1487] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2), REDUCE(sym_file_redirect, 3), + [1490] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(487), + [1492] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(488), + [1494] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(489), + [1496] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), + [1499] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_file_redirect, 2, .rename_sequence_id = 3), REDUCE(sym_file_redirect, 3, .rename_sequence_id = 6), + [1502] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(491), + [1504] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 5), REDUCE(sym_case_statement, 5, .rename_sequence_id = 15), REDUCE(sym_case_statement, 6), REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), + [1509] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(492), + [1511] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(493), + [1513] = {.count = 3, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), REDUCE(sym_if_statement, 6), REDUCE(sym_if_statement, 7), + [1517] = {.count = 2, .reusable = true, .depends_on_lookahead = true}, REDUCE(sym_case_item, 4), REDUCE(sym_case_item, 4, .rename_sequence_id = 22), + [1520] = {.count = 2, .reusable = true, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), REDUCE(sym_case_item, 4, .rename_sequence_id = 22), + [1523] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_item, 4), REDUCE(sym_case_item, 4, .rename_sequence_id = 22), + [1526] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 5), REDUCE(sym_if_statement, 6), + [1529] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(494), + [1531] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), REDUCE(sym_case_statement, 7), REDUCE(sym_case_statement, 7, .rename_sequence_id = 21), + [1536] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(495), + [1538] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(497), + [1540] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(498), + [1542] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(499), + [1544] = {.count = 4, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), REDUCE(sym_command, 4, .rename_sequence_id = 13), REDUCE(sym_command, 5), REDUCE(sym_command, 5, .rename_sequence_id = 16), + [1549] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(501), + [1551] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(503), + [1553] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(505), + [1555] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(507), + [1557] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(508), + [1559] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(509), + [1561] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(511), + [1563] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(512), + [1565] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(513), + [1567] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 3), REDUCE(sym_command, 4), + [1570] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(515), + [1572] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(516), + [1574] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(518), + [1576] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(520), + [1578] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(521), + [1580] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(522), + [1582] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(524), + [1584] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(525), + [1586] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(526), + [1588] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(526), + [1590] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(527), + [1592] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(528), + [1594] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(529), + [1596] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(530), + [1598] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(530), + [1600] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(531), + [1602] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(532), + [1604] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_if_statement, 6), REDUCE(sym_if_statement, 7), + [1607] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(534), + [1609] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(535), + [1611] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(536), + [1613] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(536), + [1615] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(537), + [1617] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(540), + [1619] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(543), + [1621] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(544), + [1623] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(545), + [1625] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(545), + [1627] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(546), + [1629] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_command, 4), REDUCE(sym_command, 5), + [1632] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(547), + [1634] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(548), + [1636] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(549), + [1638] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(549), + [1640] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(550), + [1642] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(551), + [1644] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(552), + [1646] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(553), + [1648] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(554), + [1650] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 6), REDUCE(sym_case_statement, 6, .rename_sequence_id = 19), + [1653] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(555), + [1655] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(556), + [1657] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(557), + [1659] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(560), + [1661] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(561), + [1663] = {.count = 1, .reusable = true, .depends_on_lookahead = true}, SHIFT(562), + [1665] = {.count = 1, .reusable = false, .depends_on_lookahead = false}, SHIFT(563), + [1667] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(564), + [1669] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(565), + [1671] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(566), + [1673] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(567), + [1675] = {.count = 2, .reusable = false, .depends_on_lookahead = false}, REDUCE(sym_case_statement, 7), REDUCE(sym_case_statement, 7, .rename_sequence_id = 21), + [1678] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(568), + [1680] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(569), + [1682] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(570), + [1684] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(571), + [1686] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(572), + [1688] = {.count = 1, .reusable = true, .depends_on_lookahead = false}, SHIFT(573), }; void *tree_sitter_bash_external_scanner_create(); diff --git a/src/scanner.cc b/src/scanner.cc index 86187c7..68657fa 100644 --- a/src/scanner.cc +++ b/src/scanner.cc @@ -12,6 +12,7 @@ enum TokenType { HEREDOC_MIDDLE, HEREDOC_END, FILE_DESCRIPTOR, + EMPTY_VALUE, }; struct Scanner { @@ -75,7 +76,9 @@ struct Scanner { bool scan(TSLexer *lexer, const bool *valid_symbols) { if (valid_symbols[HEREDOC_MIDDLE]) { return scan_heredoc_content(lexer, HEREDOC_MIDDLE, HEREDOC_END); - } else if (valid_symbols[HEREDOC_BEGINNING]) { + } + + if (valid_symbols[HEREDOC_BEGINNING]) { heredoc_identifier.clear(); while (iswalpha(lexer->lookahead)) { heredoc_identifier += lexer->lookahead; @@ -91,7 +94,9 @@ struct Scanner { } return scan_heredoc_content(lexer, HEREDOC_BEGINNING, SIMPLE_HEREDOC); - } else if (valid_symbols[FILE_DESCRIPTOR]) { + } + + if (valid_symbols[FILE_DESCRIPTOR]) { while (lexer->lookahead == ' ' || lexer->lookahead == '\t') skip(lexer); if (iswdigit(lexer->lookahead)) { advance(lexer); @@ -103,6 +108,13 @@ struct Scanner { } } + if (valid_symbols[EMPTY_VALUE]) { + if (iswspace(lexer->lookahead)) { + lexer->result_symbol = EMPTY_VALUE; + return true; + } + } + return false; }